├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── .reuse └── dep5 ├── CMakeLists.txt ├── LICENSES ├── Apache-2.0.txt ├── CC0-1.0.txt ├── GPL-2.0-only.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-only.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.0-or-later.txt ├── LGPL-2.1-only.txt ├── LGPL-2.1-or-later.txt ├── LGPL-3.0-only.txt ├── LicenseRef-KDE-Accepted-GPL.txt ├── LicenseRef-KDE-Accepted-LGPL.txt └── MIT.txt ├── README.md ├── bin ├── CMakeLists.txt ├── install-sessions.sh.cmake ├── plasma-mobile-dev.desktop.cmake ├── plasma-mobile.desktop.cmake ├── startplasmamobile-dev.sh.cmake └── startplasmamobile.in ├── components ├── CMakeLists.txt ├── dpmsplugin │ ├── CMakeLists.txt │ ├── dpmsutil.cpp │ └── dpmsutil.h ├── hapticsplugin │ ├── CMakeLists.txt │ ├── dbus │ │ ├── org.sigxcpu.Feedback.Haptic.xml │ │ └── org.sigxcpu.Feedback.xml │ ├── vibrationevent.h │ ├── vibrationmanager.cpp │ └── vibrationmanager.h ├── mmplugin │ ├── CMakeLists.txt │ ├── profilesettings.cpp │ ├── profilesettings.h │ ├── signalindicator.cpp │ └── signalindicator.h ├── mobileshell │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── components │ │ ├── direction.cpp │ │ ├── direction.h │ │ ├── swipearea.cpp │ │ └── swipearea.h │ ├── notifications │ │ ├── notificationfileinfo.cpp │ │ ├── notificationfileinfo.h │ │ ├── notificationfilemenu.cpp │ │ ├── notificationfilemenu.h │ │ ├── notificationthumbnailer.cpp │ │ └── notificationthumbnailer.h │ ├── qml │ │ ├── actiondrawer │ │ │ ├── ActionDrawer.qml │ │ │ ├── ActionDrawerOpenSurface.qml │ │ │ ├── ActionDrawerWindow.qml │ │ │ ├── ContentContainer.qml │ │ │ ├── LandscapeContentContainer.qml │ │ │ ├── NotificationDrawer.qml │ │ │ ├── PortraitContentContainer.qml │ │ │ └── quicksettings │ │ │ │ ├── BrightnessItem.qml │ │ │ │ ├── Handle.qml │ │ │ │ ├── QuickSettings.qml │ │ │ │ ├── QuickSettingsDelegate.qml │ │ │ │ ├── QuickSettingsDrawer.qml │ │ │ │ ├── QuickSettingsFullDelegate.qml │ │ │ │ ├── QuickSettingsMinimizedDelegate.qml │ │ │ │ └── QuickSettingsPanel.qml │ │ ├── components │ │ │ ├── AppLaunch.qml │ │ │ ├── BaseItem.qml │ │ │ ├── Constants.qml │ │ │ ├── ExtendedAbstractButton.qml │ │ │ ├── Flickable.qml │ │ │ ├── FlickableOpacityGradient.qml │ │ │ ├── GridView.qml │ │ │ ├── HapticsEffect.qml │ │ │ ├── ListView.qml │ │ │ ├── MarqueeLabel.qml │ │ │ ├── PopupMenu.qml │ │ │ ├── ScreenEdgeDragEffect.qml │ │ │ ├── StartupFeedbackPanelFill.qml │ │ │ ├── StartupFeedbackWindows.qml │ │ │ ├── TextDropShadow.qml │ │ │ └── VelocityCalculator.qml │ │ ├── dataproviders │ │ │ ├── AudioInfo.qml │ │ │ ├── BatteryInfo.qml │ │ │ ├── BluetoothInfo.qml │ │ │ ├── NetworkInfo.qml │ │ │ └── SignalStrengthInfo.qml │ │ ├── homescreen │ │ │ ├── HomeScreen.qml │ │ │ └── WallpaperSelector.qml │ │ ├── navigationpanel │ │ │ ├── NavigationPanel.qml │ │ │ ├── NavigationPanelAction.qml │ │ │ └── NavigationPanelButton.qml │ │ ├── popups │ │ │ ├── PopupProviderLoader.qml │ │ │ ├── actionbuttons │ │ │ │ ├── ActionButton.qml │ │ │ │ ├── ActionButtonsProvider.qml │ │ │ │ └── RotationButton.qml │ │ │ ├── notifications │ │ │ │ ├── NotificationPopup.qml │ │ │ │ ├── NotificationPopupManager.qml │ │ │ │ └── NotificationPopupProvider.qml │ │ │ └── volumeosd │ │ │ │ ├── AudioApplet.qml │ │ │ │ ├── DeviceListItem.qml │ │ │ │ ├── ListItemBase.qml │ │ │ │ ├── PopupCard.qml │ │ │ │ ├── StreamListItem.qml │ │ │ │ ├── VolumeChangedPopup.qml │ │ │ │ ├── VolumeOSD.qml │ │ │ │ ├── VolumeOSDProvider.qml │ │ │ │ └── icon.js │ │ ├── statusbar │ │ │ ├── ClockText.qml │ │ │ ├── StatusBar.qml │ │ │ ├── TaskWidget.qml │ │ │ └── indicators │ │ │ │ ├── BatteryIndicator.qml │ │ │ │ ├── BluetoothIndicator.qml │ │ │ │ ├── InternetIndicator.qml │ │ │ │ ├── SignalStrengthIndicator.qml │ │ │ │ └── VolumeIndicator.qml │ │ └── widgets │ │ │ ├── krunner │ │ │ ├── KRunnerScreen.qml │ │ │ └── KRunnerWidget.qml │ │ │ ├── mediacontrols │ │ │ ├── BlurredBackground.qml │ │ │ ├── MediaControlsSource.qml │ │ │ └── MediaControlsWidget.qml │ │ │ └── notifications │ │ │ ├── BaseNotificationItem.qml │ │ │ ├── NotificationBodyLabel.qml │ │ │ ├── NotificationCard.qml │ │ │ ├── NotificationEditContextMenu.qml │ │ │ ├── NotificationFooterActions.qml │ │ │ ├── NotificationGroupHeader.qml │ │ │ ├── NotificationItem.qml │ │ │ ├── NotificationJobDetails.qml │ │ │ ├── NotificationJobItem.qml │ │ │ ├── NotificationPopupItem.qml │ │ │ ├── NotificationReplyField.qml │ │ │ ├── NotificationTimeText.qml │ │ │ ├── NotificationsModelType.qml │ │ │ ├── NotificationsUtils.js │ │ │ ├── NotificationsWidget.qml │ │ │ └── ThumbnailStrip.qml │ ├── shellutil.cpp │ └── shellutil.h ├── mobileshellstate │ ├── CMakeLists.txt │ ├── lockscreendbusclient.cpp │ ├── lockscreendbusclient.h │ ├── shelldbusclient.cpp │ ├── shelldbusclient.h │ ├── shelldbusobject.cpp │ ├── shelldbusobject.h │ ├── startupfeedbackmodel.cpp │ ├── startupfeedbackmodel.h │ ├── windowlistener.cpp │ └── windowlistener.h ├── quicksettingsplugin │ ├── CMakeLists.txt │ ├── paginatemodel.cpp │ ├── paginatemodel.h │ ├── quicksetting.cpp │ ├── quicksetting.h │ ├── quicksettingsconfig.cpp │ ├── quicksettingsconfig.h │ ├── quicksettingsmodel.cpp │ ├── quicksettingsmodel.h │ ├── savedquicksettings.cpp │ ├── savedquicksettings.h │ ├── savedquicksettingsmodel.cpp │ └── savedquicksettingsmodel.h ├── rotationplugin │ ├── CMakeLists.txt │ ├── rotationutil.cpp │ └── rotationutil.h ├── screenbrightnessplugin │ ├── CMakeLists.txt │ ├── dbus │ │ └── org.kde.Solid.PowerManagement.Actions.BrightnessControl.xml │ ├── screenbrightnessutil.cpp │ └── screenbrightnessutil.h ├── shellsettingsplugin │ ├── CMakeLists.txt │ ├── mobileshellsettings.cpp │ └── mobileshellsettings.h ├── wallpaperimageplugin │ ├── CMakeLists.txt │ ├── qml │ │ └── WallpaperPluginConfigLoader.qml │ ├── wallpaperplugin.cpp │ └── wallpaperplugin.h └── windowplugin │ ├── CMakeLists.txt │ ├── qml │ └── WindowMaximizedTracker.qml │ ├── windowutil.cpp │ └── windowutil.h ├── containments ├── CMakeLists.txt ├── homescreens │ ├── CMakeLists.txt │ ├── folio │ │ ├── CMakeLists.txt │ │ ├── Messages.sh │ │ ├── README.md │ │ ├── applicationlistmodel.cpp │ │ ├── applicationlistmodel.h │ │ ├── delegatetoucharea.cpp │ │ ├── delegatetoucharea.h │ │ ├── dragstate.cpp │ │ ├── dragstate.h │ │ ├── favouritesmodel.cpp │ │ ├── favouritesmodel.h │ │ ├── folioapplication.cpp │ │ ├── folioapplication.h │ │ ├── folioapplicationfolder.cpp │ │ ├── folioapplicationfolder.h │ │ ├── foliodelegate.cpp │ │ ├── foliodelegate.h │ │ ├── foliosettings.cpp │ │ ├── foliosettings.h │ │ ├── foliowidget.cpp │ │ ├── foliowidget.h │ │ ├── homescreen.cpp │ │ ├── homescreen.h │ │ ├── homescreenstate.cpp │ │ ├── homescreenstate.h │ │ ├── package │ │ │ ├── contents │ │ │ │ └── ui │ │ │ │ │ ├── AppDrawer.qml │ │ │ │ │ ├── AppDrawerGrid.qml │ │ │ │ │ ├── AppDrawerHeader.qml │ │ │ │ │ ├── DelegateDragItem.qml │ │ │ │ │ ├── FavouritesBar.qml │ │ │ │ │ ├── FolderView.qml │ │ │ │ │ ├── FolderViewTitle.qml │ │ │ │ │ ├── HomeScreen.qml │ │ │ │ │ ├── HomeScreenPage.qml │ │ │ │ │ ├── HomeScreenPages.qml │ │ │ │ │ ├── PlaceholderDelegate.qml │ │ │ │ │ ├── WidgetDragItem.qml │ │ │ │ │ ├── delegate │ │ │ │ │ ├── AbstractDelegate.qml │ │ │ │ │ ├── AppDelegate.qml │ │ │ │ │ ├── AppFolderDelegate.qml │ │ │ │ │ ├── DelegateAppIcon.qml │ │ │ │ │ ├── DelegateFolderIcon.qml │ │ │ │ │ ├── DelegateIconLoader.qml │ │ │ │ │ ├── DelegateLabel.qml │ │ │ │ │ ├── DelegateShadow.qml │ │ │ │ │ ├── WidgetDelegate.qml │ │ │ │ │ └── WidgetDelegateConfig.qml │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── private │ │ │ │ │ ├── ConfirmDeleteFolderDialogLoader.qml │ │ │ │ │ ├── ContextMenuLoader.qml │ │ │ │ │ ├── DarkenEffect.qml │ │ │ │ │ ├── Orientation.qml │ │ │ │ │ ├── WidgetHandlePosition.qml │ │ │ │ │ ├── WidgetResizeHandle.qml │ │ │ │ │ └── WidgetResizeHandleFrame.qml │ │ │ │ │ └── settings │ │ │ │ │ ├── AppletListViewer.qml │ │ │ │ │ ├── SettingsComponent.qml │ │ │ │ │ └── SettingsWindow.qml │ │ │ └── metadata.json │ │ ├── pagelistmodel.cpp │ │ ├── pagelistmodel.h │ │ ├── pagemodel.cpp │ │ ├── pagemodel.h │ │ ├── widgetcontainer.cpp │ │ ├── widgetcontainer.h │ │ ├── widgetsmanager.cpp │ │ ├── widgetsmanager.h │ │ ├── windowlistener.cpp │ │ └── windowlistener.h │ └── halcyon │ │ ├── CMakeLists.txt │ │ ├── Messages.sh │ │ ├── homescreen.cpp │ │ ├── homescreen.h │ │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ ├── Clock.qml │ │ │ │ ├── FavoritesAppDelegate.qml │ │ │ │ ├── FavoritesGrid.qml │ │ │ │ ├── FavoritesView.qml │ │ │ │ ├── FolderGrid.qml │ │ │ │ ├── GridAppDelegate.qml │ │ │ │ ├── GridAppList.qml │ │ │ │ ├── HomeScreen.qml │ │ │ │ ├── SettingsScreen.qml │ │ │ │ └── main.qml │ │ └── metadata.json │ │ └── plugin │ │ ├── CMakeLists.txt │ │ ├── application.cpp │ │ ├── application.h │ │ ├── applicationfolder.cpp │ │ ├── applicationfolder.h │ │ ├── applicationlistmodel.cpp │ │ ├── applicationlistmodel.h │ │ ├── halcyonplugin.cpp │ │ ├── halcyonplugin.h │ │ ├── pinnedmodel.cpp │ │ ├── pinnedmodel.h │ │ ├── qmldir │ │ ├── windowlistener.cpp │ │ └── windowlistener.h ├── panel │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── phonepanel.cpp │ └── phonepanel.h └── taskpanel │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── package │ ├── contents │ │ └── ui │ │ │ ├── NavigationPanelComponent.qml │ │ │ └── main.qml │ └── metadata.json │ ├── taskpanel.cpp │ └── taskpanel.h ├── envmanager ├── CMakeLists.txt ├── config.h ├── main.cpp ├── settings.cpp ├── settings.h └── utils.h ├── initialstart ├── CMakeLists.txt ├── Messages.sh ├── initialstartmodule.cpp ├── initialstartmodule.h ├── initialstartutil.cpp ├── initialstartutil.h ├── main.cpp ├── modules │ ├── CMakeLists.txt │ ├── cellular │ │ ├── CMakeLists.txt │ │ ├── cellularplugin.cpp │ │ ├── cellularplugin.h │ │ ├── package │ │ │ ├── contents │ │ │ │ └── ui │ │ │ │ │ ├── EditProfileDialog.qml │ │ │ │ │ └── main.qml │ │ │ └── metadata.json │ │ └── qmldir │ ├── finished │ │ ├── contents │ │ │ └── ui │ │ │ │ ├── konqi-calling.png │ │ │ │ ├── konqi-calling.png.license │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── prepare │ │ ├── CMakeLists.txt │ │ ├── colorssettings.kcfg │ │ ├── colorssettings.kcfgc │ │ ├── package │ │ │ ├── contents │ │ │ │ └── ui │ │ │ │ │ └── main.qml │ │ │ └── metadata.json │ │ ├── prepareplugin.cpp │ │ ├── prepareplugin.h │ │ ├── prepareutil.cpp │ │ ├── prepareutil.h │ │ └── qmldir │ ├── systemnavigation │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── time │ │ ├── CMakeLists.txt │ │ ├── package │ │ │ ├── contents │ │ │ │ └── ui │ │ │ │ │ └── main.qml │ │ │ └── metadata.json │ │ ├── qmldir │ │ ├── timeplugin.cpp │ │ ├── timeplugin.h │ │ ├── timeutil.cpp │ │ ├── timeutil.h │ │ ├── timezonemodel.cpp │ │ └── timezonemodel.h │ └── wifi │ │ ├── CMakeLists.txt │ │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ ├── ConnectDialog.qml │ │ │ │ ├── ConnectionItemDelegate.qml │ │ │ │ ├── PasswordField.qml │ │ │ │ └── main.qml │ │ └── metadata.json │ │ ├── qmldir │ │ ├── wifiplugin.cpp │ │ ├── wifiplugin.h │ │ ├── wifiutil.cpp │ │ └── wifiutil.h ├── qml │ ├── LandingComponent.qml │ ├── Main.qml │ └── Wizard.qml ├── settings.cpp ├── settings.h ├── utils.h ├── wizard.cpp └── wizard.h ├── kcms ├── CMakeLists.txt ├── info │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── distroinfo.cpp │ ├── distroinfo.h │ ├── hardwareinfo.cpp │ ├── hardwareinfo.h │ ├── info.cpp │ ├── info.h │ ├── kcm_mobile_info.json │ ├── softwareinfo.cpp │ ├── softwareinfo.h │ └── ui │ │ └── main.qml ├── mobileshell │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── kcm.cpp │ ├── kcm_mobileshell.json │ └── ui │ │ ├── QuickSettingsForm.qml │ │ ├── VibrationForm.qml │ │ └── main.qml ├── time │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── clockconfig_actions.actions │ ├── config.h.cmake │ ├── kcm_mobile_time.json │ ├── timedated1.xml │ ├── timesettings.cpp │ ├── timesettings.h │ ├── timezonedata.h │ ├── timezonemodel.cpp │ ├── timezonemodel.h │ ├── timezonesi18n.cpp │ ├── timezonesi18n.h │ └── ui │ │ ├── TimePicker.qml │ │ ├── TimePickerSpinBox.qml │ │ ├── TimePickerSpinBoxButton.qml │ │ └── main.qml └── virtualkeyboard │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── gsettingsitem.cpp │ ├── gsettingsitem.h │ ├── kcm_mobile_onscreenkeyboard.json │ ├── languagemodel.cpp │ ├── languagemodel.h │ ├── ui │ ├── languages.qml │ └── main.qml │ ├── virtualkeyboard.cpp │ └── virtualkeyboard.h ├── kded ├── CMakeLists.txt ├── autodetectapn │ ├── CMakeLists.txt │ ├── android │ │ ├── README.md │ │ └── apns-full-conf.xml │ ├── autodetectapn.cpp │ ├── autodetectapn.h │ └── kded_plasma_mobile_autodetectapn.json └── start │ ├── CMakeLists.txt │ ├── kded_plasma_mobile_start.json │ ├── start.cpp │ └── start.h ├── kwin ├── CMakeLists.txt ├── mobiletaskswitcher │ ├── CMakeLists.txt │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ ├── FlickContainer.qml │ │ │ │ ├── Task.qml │ │ │ │ ├── TaskList.qml │ │ │ │ ├── TaskSwitcher.qml │ │ │ │ ├── TaskSwitcherHelpers.qml │ │ │ │ └── main.qml │ │ └── metadata.json │ └── plugin │ │ ├── CMakeLists.txt │ │ ├── effecttouchborder.cpp │ │ ├── effecttouchborder.h │ │ ├── mobiletaskswitchereffect.cpp │ │ ├── mobiletaskswitchereffect.h │ │ ├── taskfiltermodel.cpp │ │ ├── taskfiltermodel.h │ │ ├── taskmodel.cpp │ │ └── taskmodel.h └── scripts │ ├── CMakeLists.txt │ └── convergentwindows │ ├── contents │ └── ui │ │ └── main.qml │ └── metadata.json ├── layout-templates ├── CMakeLists.txt ├── org.kde.plasma.mobile.defaultNavigationPanel │ ├── contents │ │ └── layout.js │ └── metadata.json └── org.kde.plasma.mobile.defaultStatusBar │ ├── contents │ └── layout.js │ └── metadata.json ├── logo.png ├── logo.png.license ├── lookandfeel ├── Messages.sh ├── contents │ ├── defaults │ ├── layouts │ │ └── layout.js │ ├── logout │ │ ├── ActionButton.qml │ │ └── Logout.qml │ └── systemdialog │ │ └── SystemDialog.qml └── metadata.json ├── plasma-mobile.service ├── plasma-mobile.service.license ├── po ├── ar │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ast │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── az │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ca │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ca@valencia │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── cs │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── da │ ├── kcm_mobile_info.po │ └── kcm_mobile_time.po ├── de │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── en_GB │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── eo │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── es │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── et │ ├── kcm_mobile_info.po │ └── kcm_mobile_time.po ├── eu │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── fi │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── fr │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── gl │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── he │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── hi │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── hu │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ia │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── id │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ └── plasma_org.kde.plasma.quicksetting.settingsapp.po ├── is │ ├── kcm_mobile_info.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ └── plasma_shell_org.kde.plasma.phone.po ├── it │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ja │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ka │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ko │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── lt │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── lv │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── nl │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── nn │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── pa │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── pl │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── pt │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── pt_BR │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ro │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ru │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── sa │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── sk │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── sl │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── sv │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── ta │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── tr │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── uk │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── vi │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ └── kcm_mobile_virtualkeyboard.po ├── zh_CN │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po └── zh_TW │ ├── kcm_mobile_info.po │ ├── kcm_mobile_time.po │ ├── kcm_mobile_virtualkeyboard.po │ ├── kcm_mobileshell.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.folio.po │ ├── plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.po │ ├── plasma_lookandfeel_org.kde.breeze.mobile.po │ ├── plasma_org.kde.plasma.mobileinitialstart.po │ ├── plasma_org.kde.plasma.private.mobileshell.po │ ├── plasma_org.kde.plasma.quicksetting.airplanemode.po │ ├── plasma_org.kde.plasma.quicksetting.audio.po │ ├── plasma_org.kde.plasma.quicksetting.autohidepanels.po │ ├── plasma_org.kde.plasma.quicksetting.battery.po │ ├── plasma_org.kde.plasma.quicksetting.bluetooth.po │ ├── plasma_org.kde.plasma.quicksetting.caffeine.po │ ├── plasma_org.kde.plasma.quicksetting.docked.po │ ├── plasma_org.kde.plasma.quicksetting.donotdisturb.po │ ├── plasma_org.kde.plasma.quicksetting.flashlight.po │ ├── plasma_org.kde.plasma.quicksetting.keyboardtoggle.po │ ├── plasma_org.kde.plasma.quicksetting.mobiledata.po │ ├── plasma_org.kde.plasma.quicksetting.nightcolor.po │ ├── plasma_org.kde.plasma.quicksetting.powermenu.po │ ├── plasma_org.kde.plasma.quicksetting.record.po │ ├── plasma_org.kde.plasma.quicksetting.screenrotation.po │ ├── plasma_org.kde.plasma.quicksetting.screenshot.po │ ├── plasma_org.kde.plasma.quicksetting.settingsapp.po │ ├── plasma_org.kde.plasma.quicksetting.wifi.po │ └── plasma_shell_org.kde.plasma.phone.po ├── quicksettings ├── CMakeLists.txt ├── airplanemode │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── audio │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── autohidepanels │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── battery │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── bluetooth │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── caffeine │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── docked │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── donotdisturb │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── flashlight │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── flashlightutil.cpp │ ├── flashlightutil.h │ └── package │ │ ├── contents │ │ └── ui │ │ │ └── main.qml │ │ └── metadata.json ├── hotspot │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── keyboardtoggle │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── mobiledata │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json ├── nightcolor │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── enum.h │ ├── nightcolorsettings.kcfg │ ├── nightcolorsettings.kcfgc │ ├── nightcolorutil.cpp │ ├── nightcolorutil.h │ └── package │ │ ├── contents │ │ └── ui │ │ │ └── main.qml │ │ └── metadata.json ├── powermenu │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── powermenuutil.cpp │ └── powermenuutil.h ├── record │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── plasma_mobile_quicksetting_record.notifyrc │ ├── recordutil.cpp │ └── recordutil.h ├── screenrotation │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── qmldir │ ├── screenrotationplugin.cpp │ ├── screenrotationplugin.h │ ├── screenrotationutil.cpp │ └── screenrotationutil.h ├── screenshot │ ├── CMakeLists.txt │ ├── Messages.sh │ ├── dbus │ │ └── org.kde.KWin.ScreenShot2.xml │ ├── package │ │ ├── contents │ │ │ └── ui │ │ │ │ └── main.qml │ │ └── metadata.json │ ├── plasma_mobile_quicksetting_screenshot.notifyrc │ ├── qmldir │ ├── screenshotplugin.cpp │ ├── screenshotplugin.h │ ├── screenshotutil.cpp │ └── screenshotutil.h ├── settingsapp │ ├── Messages.sh │ ├── contents │ │ └── ui │ │ │ └── main.qml │ └── metadata.json └── wifi │ ├── Messages.sh │ ├── contents │ └── ui │ │ └── main.qml │ └── metadata.json ├── screenshots ├── homescreen-folio.png ├── homescreen-folio.png.license ├── homescreen-halcyon.png └── homescreen-halcyon.png.license ├── shell ├── Messages.sh ├── contents │ ├── applet │ │ ├── AppletError.qml │ │ ├── CompactApplet.qml │ │ └── DefaultCompactRepresentation.qml │ ├── configuration │ │ ├── AppletConfiguration.qml │ │ ├── ConfigurationAppletPage.qml │ │ ├── ConfigurationContainmentAppearance.qml │ │ ├── ConfigurationKcmPage.qml │ │ └── ContainmentConfiguration.qml │ ├── defaults │ ├── layout.js │ ├── lockscreen │ │ ├── BottomIconIndicator.qml │ │ ├── Clock.qml │ │ ├── FlickContainer.qml │ │ ├── HeaderComponent.qml │ │ ├── Keypad.qml │ │ ├── LockScreen.qml │ │ ├── LockScreenContent.qml │ │ ├── LockScreenState.qml │ │ ├── NotificationsComponent.qml │ │ ├── PasswordBar.qml │ │ ├── QuickActionButton.qml │ │ └── WallpaperBlur.qml │ ├── updates │ │ ├── 5_24_update.js │ │ ├── 6_3_update.js │ │ └── panelsfix.js │ └── views │ │ ├── Desktop.qml │ │ └── Panel.qml ├── metadata.json └── metadata.json.license └── tests ├── ActionDrawerTest.qml ├── CMakeLists.txt ├── LockScreenTest.qml ├── README.md ├── assets ├── background.jpg └── background.jpg.license └── notificationtest ├── CMakeLists.txt ├── main.cpp ├── plasma_mobile_notificationtest.notifyrc ├── tests.cpp ├── tests.h └── utils.h /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: None 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | # clang-format 5 | 854742efcc08c15fd4335bebb15c84c8e11465c6 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: None 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | build 5 | *.config 6 | *.creator 7 | *.files 8 | *.includes 9 | *.user 10 | 11 | /.clang-format 12 | /.clangd 13 | /compile_commands.json 14 | .idea 15 | /cmake-build* 16 | .cache 17 | .vscode/ 18 | 19 | .kdev4/ 20 | *.kdev4 21 | /build* 22 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: None 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | include: 5 | - project: sysadmin/ci-utilities 6 | file: 7 | - /gitlab-templates/reuse-lint.yml 8 | - /gitlab-templates/linux-qt6.yml 9 | - /gitlab-templates/linux-qt6-next.yml 10 | - /gitlab-templates/alpine-qt6.yml 11 | - /gitlab-templates/xml-lint.yml 12 | - /gitlab-templates/yaml-lint.yml 13 | 14 | posix-script-compliance: 15 | image: 16 | name: debian:latest 17 | entrypoint: [""] 18 | tags: 19 | - Linux 20 | stage: build 21 | script: 22 | - apt-get update 23 | - apt-get -y install shellcheck 24 | - shellcheck -x -s sh bin/startplasmamobile.in 25 | - shellcheck -x -s sh bin/startplasmamobile.in 26 | - shellcheck -x --exclude=1091 -s sh bin/startplasmamobile-dev.sh.cmake # ignore error from file not existing (given by cmake) 27 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: plasma-mobile 3 | Upstream-Contact: Alexander Lohnau 4 | Source: https://invent.kde.org/plasma/plasma-mobile! 5 | 6 | Files: *.json 7 | Copyright: Plasma-Mobile contributors 8 | License: GPL-2.0-or-later 9 | 10 | -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-GPL.txt: -------------------------------------------------------------------------------- 1 | This library is free software; you can redistribute it and/or 2 | modify it under the terms of the GNU General Public License as 3 | published by the Free Software Foundation; either version 3 of 4 | the license or (at your option) at any later version that is 5 | accepted by the membership of KDE e.V. (or its successor 6 | approved by the membership of KDE e.V.), which shall act as a 7 | proxy as defined in Section 14 of version 3 of the license. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | GNU General Public License for more details. 13 | -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-LGPL.txt: -------------------------------------------------------------------------------- 1 | This library is free software; you can redistribute it and/or 2 | modify it under the terms of the GNU Lesser General Public 3 | License as published by the Free Software Foundation; either 4 | version 3 of the license or (at your option) any later version 5 | that is accepted by the membership of KDE e.V. (or its successor 6 | approved by the membership of KDE e.V.), which shall act as a 7 | proxy as defined in Section 6 of version 3 of the license. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | GNU General Public License for more details. 13 | -------------------------------------------------------------------------------- /bin/startplasmamobile-dev.sh.cmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # SPDX-FileCopyrightText: 2019 Aleix Pol Gonzalez 3 | # 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | . "@CMAKE_INSTALL_FULL_LIBEXECDIR@/plasma-dev-prefix.sh" 7 | 8 | # This is a bit of a hack done because systemd starts in pam, and we only set our dev paths after all that is complete 9 | # This copies everything into a transient runtime directory that systemd reads and reloads the units 10 | 11 | if [ -n "$XDG_RUNTIME_DIR" ]; then 12 | mkdir -p "$XDG_RUNTIME_DIR/systemd/user.control" 13 | cp -r @KDE_INSTALL_FULL_SYSTEMDUSERUNITDIR@/* "$XDG_RUNTIME_DIR"/systemd/user.control 14 | systemctl --user daemon-reload 15 | fi 16 | 17 | 18 | startplasmamobile "$@" 19 | 20 | -------------------------------------------------------------------------------- /components/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2021 Devin Lin 2 | # SPDX-FileCopyrightText: 2017-2021 Marco Martin 3 | # SPDX-License-Identifier: GPL-2.0-or-later 4 | 5 | add_subdirectory(hapticsplugin) 6 | add_subdirectory(mmplugin) 7 | add_subdirectory(mobileshell) 8 | add_subdirectory(mobileshellstate) 9 | add_subdirectory(quicksettingsplugin) 10 | add_subdirectory(rotationplugin) 11 | add_subdirectory(windowplugin) 12 | add_subdirectory(shellsettingsplugin) 13 | add_subdirectory(wallpaperimageplugin) 14 | add_subdirectory(dpmsplugin) 15 | add_subdirectory(screenbrightnessplugin) 16 | -------------------------------------------------------------------------------- /components/dpmsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(dpmsplugin URI org.kde.plasma.private.mobileshell.dpmsplugin GENERATE_PLUGIN_SOURCE) 5 | 6 | target_sources(dpmsplugin PRIVATE dpmsutil.cpp) 7 | 8 | target_link_libraries(dpmsplugin PRIVATE 9 | Qt::Qml 10 | Qt::DBus 11 | Qt::Gui 12 | Qt::Quick 13 | KF6::ScreenDpms 14 | ) 15 | 16 | ecm_finalize_qml_module(dpmsplugin) 17 | -------------------------------------------------------------------------------- /components/hapticsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | set_source_files_properties(dbus/org.sigxcpu.Feedback.Haptic.xml PROPERTIES INCLUDE vibrationevent.h) 5 | qt_add_dbus_interfaces(dbusinterface_SRCS 6 | dbus/org.sigxcpu.Feedback.Haptic.xml) 7 | 8 | ecm_add_qml_module(hapticsplugin URI org.kde.plasma.private.mobileshell.hapticsplugin GENERATE_PLUGIN_SOURCE) 9 | target_sources(hapticsplugin PRIVATE 10 | vibrationevent.h 11 | vibrationmanager.cpp 12 | ${dbusinterface_SRCS} 13 | ) 14 | 15 | target_link_libraries(hapticsplugin PRIVATE 16 | Qt::Qml 17 | Qt::DBus 18 | KF6::CoreAddons 19 | KF6::I18n 20 | QCoro::DBus 21 | ) 22 | 23 | ecm_finalize_qml_module(hapticsplugin) 24 | -------------------------------------------------------------------------------- /components/hapticsplugin/vibrationmanager.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | #include 8 | #include 9 | 10 | #include "hapticinterface.h" 11 | #include "vibrationevent.h" 12 | 13 | #include 14 | 15 | class VibrationManager : public QObject 16 | { 17 | Q_OBJECT 18 | QML_ELEMENT 19 | QML_SINGLETON 20 | 21 | public: 22 | VibrationManager(QObject *parent = nullptr); 23 | 24 | Q_INVOKABLE QCoro::Task vibrate(int durationMs); 25 | 26 | private: 27 | OrgSigxcpuFeedbackHapticInterface *m_interface{nullptr}; 28 | }; 29 | -------------------------------------------------------------------------------- /components/mmplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2021 Tobias Fella 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(ppc-mmqmlplugin URI org.kde.plasma.mm GENERATE_PLUGIN_SOURCE) 5 | target_sources(ppc-mmqmlplugin PRIVATE 6 | signalindicator.cpp 7 | profilesettings.cpp 8 | ) 9 | 10 | 11 | target_link_libraries(ppc-mmqmlplugin PRIVATE 12 | Qt::Qml 13 | KF6::ModemManagerQt 14 | KF6::NetworkManagerQt 15 | KF6::CoreAddons 16 | KF6::I18n 17 | QCoro::DBus 18 | ) 19 | 20 | 21 | ecm_finalize_qml_module(ppc-mmqmlplugin) 22 | -------------------------------------------------------------------------------- /components/mobileshell/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.private.mobileshell.pot 7 | 8 | 9 | -------------------------------------------------------------------------------- /components/mobileshell/components/direction.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #include "direction.h" 8 | -------------------------------------------------------------------------------- /components/mobileshell/components/direction.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | #include 11 | 12 | class Direction : public QObject 13 | { 14 | Q_OBJECT 15 | QML_ELEMENT 16 | 17 | public: 18 | enum Type { None = 0, Up, Down, Left, Right }; 19 | Q_ENUM(Type) 20 | }; 21 | -------------------------------------------------------------------------------- /components/mobileshell/qml/actiondrawer/quicksettings/Handle.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2021 Devin Lin 3 | * 4 | * SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | import org.kde.kirigami 2.20 as Kirigami 10 | 11 | Rectangle { 12 | id: handle 13 | 14 | signal tapped() 15 | 16 | implicitWidth: Kirigami.Units.gridUnit * 3 17 | implicitHeight: 3 18 | radius: height 19 | color: Qt.rgba(Kirigami.Theme.textColor.r, Kirigami.Theme.textColor.g, Kirigami.Theme.textColor.b, 0.5) 20 | 21 | TapHandler { 22 | cursorShape: pressed ? Qt.ClosedHandCursor : Qt.PointingHandCursor 23 | onTapped: handle.tapped() 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /components/mobileshell/qml/components/Flickable.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | Flickable { 7 | flickDeceleration: 1500 8 | maximumFlickVelocity: 5000 9 | } 10 | -------------------------------------------------------------------------------- /components/mobileshell/qml/components/HapticsEffect.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings 7 | import org.kde.plasma.private.mobileshell.hapticsplugin as HapticsPlugin 8 | 9 | QtObject { 10 | function buttonVibrate() { 11 | if (ShellSettings.Settings.vibrationsEnabled) { 12 | HapticsPlugin.VibrationManager.vibrate(ShellSettings.Settings.vibrationDuration); 13 | } 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /components/mobileshell/qml/components/ListView.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | import QtQuick.Controls 2.15 6 | 7 | ListView { 8 | flickDeceleration: 1500 9 | maximumFlickVelocity: 5000 10 | } 11 | -------------------------------------------------------------------------------- /components/mobileshell/qml/components/TextDropShadow.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick.Effects 5 | 6 | // Standard drop shadow for text in the shell. 7 | // Use a drop shadow when text needs to be contrasted over a background. 8 | 9 | MultiEffect { 10 | shadowEnabled: true 11 | shadowVerticalOffset: 1 12 | blurMax: 8 13 | shadowOpacity: 0.6 14 | } 15 | -------------------------------------------------------------------------------- /components/mobileshell/qml/dataproviders/BatteryInfo.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2024 Sebastian Kügler 3 | * SPDX-FileCopyrightText: 2021 Devin Lin 4 | * SPDX-FileCopyrightText: 2019 Marco Martin 5 | * 6 | * SPDX-License-Identifier: GPL-2.0-or-later 7 | */ 8 | 9 | pragma Singleton 10 | 11 | import QtQuick 12 | 13 | import org.kde.plasma.private.battery 14 | 15 | Item { 16 | 17 | BatteryControlModel { 18 | id: batteryControl 19 | } 20 | 21 | property bool isVisible: batteryControl.hasInternalBatteries 22 | property int percent: batteryControl.percent 23 | property bool pluggedIn: batteryControl.pluggedIn 24 | property alias batteries: batteryControl 25 | } 26 | -------------------------------------------------------------------------------- /components/mobileshell/qml/dataproviders/NetworkInfo.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2025 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | pragma Singleton 5 | 6 | import QtQuick 7 | 8 | import org.kde.plasma.networkmanagement as PlasmaNM 9 | 10 | QtObject { 11 | // Initialization of PlasmaNM.Handler is quite heavy, initialize it once for the shell as a singleton. 12 | readonly property PlasmaNM.Handler handler: PlasmaNM.Handler {} 13 | 14 | readonly property PlasmaNM.WirelessStatus wirelessStatus: PlasmaNM.WirelessStatus {} 15 | } -------------------------------------------------------------------------------- /components/mobileshell/qml/dataproviders/SignalStrengthInfo.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2021 Devin Lin 3 | * SPDX-FileCopyrightText: 2015 Marco Martin 4 | * SPDX-FileCopyrightText: 2021 Tobias Fella 5 | * 6 | * SPDX-License-Identifier: GPL-2.0-or-later 7 | */ 8 | 9 | pragma Singleton 10 | 11 | import QtQuick 2.1 12 | import org.kde.plasma.mm 13 | 14 | QtObject { 15 | readonly property string icon: "network-mobile-" + Math.floor(SignalIndicator.strength / 20) * 20 16 | 17 | readonly property string label: SignalIndicator.simLocked ? i18n("SIM Locked") : SignalIndicator.name 18 | 19 | readonly property bool showIndicator: SignalIndicator.modemAvailable 20 | } 21 | 22 | -------------------------------------------------------------------------------- /components/mobileshell/qml/navigationpanel/NavigationPanelAction.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2021 Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | QtObject { 10 | property bool enabled 11 | property bool visible: true 12 | property string iconSource 13 | property real iconSizeFactor 14 | 15 | signal triggered() 16 | } 17 | -------------------------------------------------------------------------------- /components/mobileshell/qml/popups/actionbuttons/ActionButtonsProvider.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2025 Micah Stanley 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 8 | import QtQuick.Layouts 9 | 10 | import org.kde.plasma.private.mobileshell.state as MobileShellState 11 | import org.kde.plasma.private.mobileshell as MobileShell 12 | 13 | /** 14 | * This sets up the popup action buttons. 15 | */ 16 | QtObject { 17 | id: component 18 | 19 | property var rotationButton: RotationButton {} 20 | } 21 | 22 | -------------------------------------------------------------------------------- /components/mobileshell/qml/popups/volumeosd/icon.js: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014-2015 Harald Sitter 3 | 4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 5 | */ 6 | 7 | // from https://invent.kde.org/plasma/plasma-pa/-/blob/master/applet/contents/code/icon.js 8 | function name(volume, muted, prefix) { 9 | if (!prefix) { 10 | prefix = "audio-volume"; 11 | } 12 | var icon = null; 13 | var percent = volume / 100; 14 | if (percent <= 0.0 || muted) { 15 | icon = prefix + "-muted"; 16 | } else if (percent <= 0.25) { 17 | icon = prefix + "-low"; 18 | } else if (percent <= 0.75) { 19 | icon = prefix + "-medium"; 20 | } else { 21 | icon = prefix + "-high"; 22 | } 23 | return icon; 24 | } 25 | 26 | -------------------------------------------------------------------------------- /components/mobileshell/qml/statusbar/indicators/BluetoothIndicator.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2021 Devin Lin 4 | SPDX-FileCopyrightText: 2013-2017 Jan Grulich 5 | 6 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 7 | */ 8 | 9 | import QtQuick 10 | import QtQuick.Layouts 11 | 12 | import org.kde.kirigami 2.20 as Kirigami 13 | import org.kde.plasma.private.mobileshell as MobileShell 14 | 15 | Kirigami.Icon { 16 | id: connectionIcon 17 | 18 | source: MobileShell.BluetoothInfo.icon 19 | 20 | visible: MobileShell.BluetoothInfo.isVisible 21 | } 22 | -------------------------------------------------------------------------------- /components/mobileshell/qml/statusbar/indicators/VolumeIndicator.qml: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2021 Devin Lin 3 | SPDX-FileCopyrightText: 2019 Aditya Mehra 4 | SPDX-FileCopyrightText: 2014-2015 Harald Sitter 5 | 6 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 7 | */ 8 | 9 | import QtQuick 10 | import QtQuick.Layouts 11 | 12 | import org.kde.plasma.private.volume 0.1 13 | import org.kde.kirigami as Kirigami 14 | 15 | import org.kde.plasma.private.mobileshell as MobileShell 16 | 17 | Kirigami.Icon { 18 | id: paIcon 19 | 20 | source: MobileShell.AudioInfo.icon 21 | 22 | visible: MobileShell.AudioInfo.isVisible 23 | } 24 | -------------------------------------------------------------------------------- /components/mobileshell/qml/widgets/notifications/NotificationsModelType.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 5 | */ 6 | 7 | import QtQuick 2.15 8 | 9 | QtObject { 10 | enum ModelType { 11 | NotificationsModel, // used on the shell 12 | WatchedNotificationsModel // used on the lockscreen 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /components/quicksettingsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(quicksettingsplugin URI org.kde.plasma.private.mobileshell.quicksettingsplugin GENERATE_PLUGIN_SOURCE) 5 | target_sources(quicksettingsplugin PRIVATE 6 | paginatemodel.cpp 7 | quicksetting.cpp 8 | quicksettingsmodel.cpp 9 | quicksettingsconfig.cpp 10 | savedquicksettings.cpp 11 | savedquicksettingsmodel.cpp 12 | ) 13 | 14 | target_link_libraries(quicksettingsplugin PRIVATE 15 | Qt::Qml 16 | Qt::DBus 17 | Qt::Gui 18 | Qt::Quick 19 | KF6::Service 20 | KF6::Package 21 | KF6::I18n 22 | KF6::ConfigCore 23 | ) 24 | 25 | ecm_finalize_qml_module(quicksettingsplugin) 26 | 27 | 28 | -------------------------------------------------------------------------------- /components/rotationplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2025 Micah Stanley 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(rotationplugin URI org.kde.plasma.private.mobileshell.rotationplugin GENERATE_PLUGIN_SOURCE) 5 | target_sources(rotationplugin PRIVATE rotationutil.cpp) 6 | 7 | target_link_libraries(rotationplugin PRIVATE 8 | Qt::Gui 9 | Qt::DBus 10 | Qt::Qml 11 | Qt::Quick 12 | Qt::Sensors 13 | Plasma::Plasma 14 | KF6::Screen 15 | Qt::Qml 16 | ) 17 | 18 | ecm_finalize_qml_module(rotationplugin) -------------------------------------------------------------------------------- /components/screenbrightnessplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(screenbrightnessplugin URI org.kde.plasma.private.mobileshell.screenbrightnessplugin GENERATE_PLUGIN_SOURCE) 5 | 6 | qt_add_dbus_interfaces(DBUS_SRCS dbus/org.kde.Solid.PowerManagement.Actions.BrightnessControl.xml) 7 | 8 | target_sources(screenbrightnessplugin PRIVATE 9 | screenbrightnessutil.cpp 10 | ${DBUS_SRCS} 11 | ) 12 | 13 | target_link_libraries(screenbrightnessplugin PRIVATE 14 | Qt::Qml 15 | Qt::DBus 16 | Qt::Gui 17 | Qt::Quick 18 | KF6::CoreAddons 19 | KF6::ConfigCore 20 | KF6::ConfigGui 21 | KF6::I18n 22 | KF6::Screen 23 | ) 24 | 25 | ecm_finalize_qml_module(screenbrightnessplugin) 26 | -------------------------------------------------------------------------------- /components/shellsettingsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(shellsettingsplugin URI org.kde.plasma.private.mobileshell.shellsettingsplugin GENERATE_PLUGIN_SOURCE) 5 | target_sources(shellsettingsplugin PRIVATE mobileshellsettings.cpp) 6 | 7 | target_link_libraries(shellsettingsplugin PRIVATE 8 | Qt::Qml 9 | Qt::DBus 10 | Qt::Gui 11 | Qt::Quick 12 | Plasma::KWaylandClient 13 | KF6::Service 14 | KF6::Package 15 | KF6::KIOGui 16 | KF6::JobWidgets 17 | ) 18 | 19 | ecm_finalize_qml_module(shellsettingsplugin) 20 | -------------------------------------------------------------------------------- /components/windowplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(windowplugin URI org.kde.plasma.private.mobileshell.windowplugin GENERATE_PLUGIN_SOURCE) 5 | 6 | target_sources(windowplugin PRIVATE windowutil.cpp) 7 | 8 | ecm_target_qml_sources(windowplugin SOURCES qml/WindowMaximizedTracker.qml) 9 | 10 | target_link_libraries(windowplugin PRIVATE 11 | Qt::Qml 12 | Qt::DBus 13 | Qt::Gui 14 | Qt::Quick 15 | Plasma::KWaylandClient 16 | KF6::Service 17 | KF6::ConfigCore 18 | ) 19 | 20 | ecm_finalize_qml_module(windowplugin) 21 | -------------------------------------------------------------------------------- /containments/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2015-2019 Marco Martin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | add_subdirectory(panel) 5 | add_subdirectory(homescreens) 6 | add_subdirectory(taskpanel) 7 | -------------------------------------------------------------------------------- /containments/homescreens/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | add_subdirectory(folio) 5 | add_subdirectory(halcyon) 6 | -------------------------------------------------------------------------------- /containments/homescreens/folio/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2015 Marco Martin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 7 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.mobile.homescreen.folio.pot 8 | rm -f rc.cpp 9 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/delegate/AppFolderDelegate.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | import QtQuick.Layouts 6 | import QtQuick.Controls as Controls 7 | import QtQuick.Effects 8 | 9 | import org.kde.private.mobile.homescreen.folio 1.0 as Folio 10 | 11 | AbstractDelegate { 12 | id: root 13 | name: folder.name 14 | shadow: true 15 | 16 | property Folio.FolioApplicationFolder folder 17 | 18 | property bool appHoveredOver: false 19 | 20 | contentItem: DelegateFolderIcon { 21 | folio: root.folio 22 | folder: root.folder 23 | expandBackground: root.appHoveredOver 24 | } 25 | } 26 | 27 | 28 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/delegate/DelegateAppIcon.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | import QtQuick.Layouts 6 | import QtQuick.Controls as Controls 7 | import QtQuick.Effects 8 | 9 | import org.kde.kirigami 2.20 as Kirigami 10 | 11 | import org.kde.private.mobile.homescreen.folio 1.0 as Folio 12 | 13 | Kirigami.Icon { 14 | id: root 15 | property Folio.HomeScreen folio 16 | 17 | height: folio.FolioSettings.delegateIconSize 18 | width: folio.FolioSettings.delegateIconSize 19 | 20 | roundToIconSize: false 21 | animated: false 22 | } 23 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/delegate/DelegateLabel.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | import QtQuick.Layouts 6 | 7 | import org.kde.kirigami 2.20 as Kirigami 8 | 9 | import org.kde.plasma.components 3.0 as PC3 10 | import org.kde.private.mobile.homescreen.folio 1.0 as Folio 11 | 12 | PC3.Label { 13 | id: label 14 | wrapMode: Text.WordWrap 15 | maximumLineCount: 2 16 | horizontalAlignment: Text.AlignHCenter 17 | verticalAlignment: Text.AlignTop 18 | elide: Text.ElideRight 19 | 20 | font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.8 21 | font.weight: Font.Bold 22 | } 23 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/delegate/DelegateShadow.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | import QtQuick.Effects 6 | 7 | MultiEffect { 8 | shadowEnabled: true 9 | shadowVerticalOffset: 1 10 | blurMax: 16 11 | shadowOpacity: 0.5 12 | } 13 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/private/DarkenEffect.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | import QtQuick.Effects 6 | 7 | MultiEffect { 8 | colorization: 0.3 9 | colorizationColor: 'black' 10 | } -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/private/Orientation.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | 6 | QtObject { 7 | enum Orientation { 8 | Above, 9 | Below, 10 | Left, 11 | Right 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /containments/homescreens/folio/package/contents/ui/private/WidgetHandlePosition.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | 6 | QtObject { 7 | enum Position { 8 | TopCenter, 9 | LeftCenter, 10 | RightCenter, 11 | BottomCenter 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /containments/homescreens/halcyon/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 7 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.mobile.homescreen.halcyon.pot 8 | rm -f rc.cpp 9 | 10 | -------------------------------------------------------------------------------- /containments/homescreens/halcyon/homescreen.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "homescreen.h" 5 | 6 | #include 7 | #include 8 | 9 | #include 10 | #include 11 | 12 | HomeScreen::HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args) 13 | : Plasma::Containment{parent, data, args} 14 | { 15 | setHasConfigurationInterface(true); 16 | } 17 | 18 | HomeScreen::~HomeScreen() = default; 19 | 20 | K_PLUGIN_CLASS(HomeScreen) 21 | 22 | #include "homescreen.moc" 23 | -------------------------------------------------------------------------------- /containments/homescreens/halcyon/homescreen.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | class HomeScreen : public Plasma::Containment 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args); 14 | ~HomeScreen() override; 15 | 16 | Q_SIGNALS: 17 | void showingDesktopChanged(bool showingDesktop); 18 | }; 19 | -------------------------------------------------------------------------------- /containments/homescreens/halcyon/plugin/halcyonplugin.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | #include 8 | 9 | class HalcyonPlugin : public QQmlExtensionPlugin 10 | { 11 | Q_OBJECT 12 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 13 | 14 | public: 15 | void registerTypes(const char *uri) override; 16 | }; 17 | -------------------------------------------------------------------------------- /containments/homescreens/halcyon/plugin/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.private.mobile.homescreen.halcyon 5 | plugin halcyonplugin 6 | -------------------------------------------------------------------------------- /containments/panel/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2015 Marco Martin 4 | # SPDX-FileCopyrightText: 2019 Bhushan Shah 5 | # SPDX-License-Identifier: GPL-2.0-or-later 6 | 7 | $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 8 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.mobile.panel.pot 9 | rm -f rc.cpp 10 | -------------------------------------------------------------------------------- /containments/panel/phonepanel.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2015 Marco Martin 3 | * SPDX-FileCopyrightText: 2018 Bhushan Shah 4 | * 5 | * SPDX-License-Identifier: GPL-2.0-or-later 6 | */ 7 | 8 | #include "phonepanel.h" 9 | 10 | PhonePanel::PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args) 11 | : Plasma::Containment(parent, data, args) 12 | { 13 | } 14 | 15 | PhonePanel::~PhonePanel() = default; 16 | 17 | K_PLUGIN_CLASS(PhonePanel) 18 | 19 | #include "phonepanel.moc" 20 | -------------------------------------------------------------------------------- /containments/panel/phonepanel.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2015 Marco Martin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #ifndef PHONEPANEL_H 8 | #define PHONEPANEL_H 9 | 10 | #include 11 | 12 | class PhonePanel : public Plasma::Containment 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args); 18 | ~PhonePanel() override; 19 | }; 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /containments/taskpanel/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2015 Marco Martin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 7 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.mobile.taskpanel.pot 8 | rm -f rc.cpp 9 | -------------------------------------------------------------------------------- /containments/taskpanel/taskpanel.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2015 Marco Martin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | 11 | class TaskPanel : public Plasma::Containment 12 | { 13 | Q_OBJECT 14 | 15 | public: 16 | TaskPanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args); 17 | Q_INVOKABLE void triggerTaskSwitcher() const; 18 | }; 19 | -------------------------------------------------------------------------------- /envmanager/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | set(plasma-mobile-envmanager_SRCS 5 | main.cpp 6 | settings.cpp 7 | utils.h 8 | config.h 9 | ) 10 | 11 | add_executable(plasma-mobile-envmanager ${plasma-mobile-envmanager_SRCS} ${RESOURCES}) 12 | target_link_libraries(plasma-mobile-envmanager 13 | Qt::Qml 14 | Qt::Gui 15 | Qt::Widgets 16 | Qt::Quick 17 | KF6::I18n 18 | KF6::ConfigCore 19 | KF6::ConfigGui 20 | KF6::CoreAddons 21 | KF6::DBusAddons 22 | KF6::Package 23 | ) 24 | 25 | target_include_directories(plasma-mobile-envmanager PRIVATE ${CMAKE_BINARY_DIR}) 26 | install(TARGETS plasma-mobile-envmanager ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) 27 | 28 | -------------------------------------------------------------------------------- /envmanager/utils.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | static const QLoggingCategory &LOGGING_CATEGORY() 9 | { 10 | static const QLoggingCategory category("plasma-mobile-envmanager"); 11 | return category; 12 | } 13 | -------------------------------------------------------------------------------- /initialstart/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2023 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.mobileinitialstart.pot 7 | -------------------------------------------------------------------------------- /initialstart/initialstartutil.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "initialstartutil.h" 5 | 6 | InitialStartUtil::InitialStartUtil(QObject *parent) 7 | : QObject{parent} 8 | { 9 | } 10 | 11 | QString InitialStartUtil::distroName() const 12 | { 13 | return m_osrelease.name(); 14 | } -------------------------------------------------------------------------------- /initialstart/initialstartutil.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | #include 8 | #include 9 | 10 | class InitialStartUtil : public QObject 11 | { 12 | Q_OBJECT 13 | QML_ELEMENT 14 | QML_SINGLETON 15 | Q_PROPERTY(QString distroName READ distroName CONSTANT); 16 | 17 | public: 18 | InitialStartUtil(QObject *parent = nullptr); 19 | 20 | QString distroName() const; 21 | 22 | private: 23 | KOSRelease m_osrelease; 24 | }; 25 | -------------------------------------------------------------------------------- /initialstart/modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | plasma_install_package(finished org.kde.plasma.mobileinitialstart.finished mobileinitialstart) 5 | plasma_install_package(systemnavigation org.kde.plasma.mobileinitialstart.systemnavigation mobileinitialstart) 6 | add_subdirectory(cellular) 7 | add_subdirectory(prepare) 8 | add_subdirectory(time) 9 | add_subdirectory(wifi) 10 | -------------------------------------------------------------------------------- /initialstart/modules/cellular/cellularplugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "cellularplugin.h" 5 | 6 | #include 7 | #include 8 | 9 | void CellularPlugin::registerTypes(const char *uri) 10 | { 11 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.mobileinitialstart.cellular")); 12 | } 13 | -------------------------------------------------------------------------------- /initialstart/modules/cellular/cellularplugin.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | #include 9 | #include 10 | 11 | class CellularPlugin : public QQmlExtensionPlugin 12 | { 13 | Q_OBJECT 14 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 15 | 16 | public: 17 | void registerTypes(const char *uri) override; 18 | }; 19 | -------------------------------------------------------------------------------- /initialstart/modules/cellular/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.mobileinitialstart.cellular 5 | plugin cellularplugin 6 | classname CellularPlugin 7 | 8 | -------------------------------------------------------------------------------- /initialstart/modules/finished/contents/ui/konqi-calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/plasma-mobile/89c6075dad2b21f8be5ad7b4e10232362acb4a0b/initialstart/modules/finished/contents/ui/konqi-calling.png -------------------------------------------------------------------------------- /initialstart/modules/finished/contents/ui/konqi-calling.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: None 2 | SPDX-License-Identifier: CC0-1.0 3 | 4 | -------------------------------------------------------------------------------- /initialstart/modules/prepare/colorssettings.kcfgc: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: LGPL-2.0-or-later 3 | File=colorssettings.kcfg 4 | ClassName=ColorsSettings 5 | Mutators=true 6 | DefaultValueGetters=true 7 | GenerateProperties=true 8 | ParentInConstructor=true 9 | Notifiers=true 10 | -------------------------------------------------------------------------------- /initialstart/modules/prepare/prepareplugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "prepareplugin.h" 5 | 6 | #include 7 | #include 8 | 9 | #include "prepareutil.h" 10 | 11 | void PreparePlugin::registerTypes(const char *uri) 12 | { 13 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.mobileinitialstart.prepare")); 14 | 15 | qmlRegisterSingletonType(uri, 1, 0, "PrepareUtil", [](QQmlEngine *, QJSEngine *) { 16 | return new PrepareUtil; 17 | }); 18 | } 19 | -------------------------------------------------------------------------------- /initialstart/modules/prepare/prepareplugin.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | #include 9 | #include 10 | 11 | class PreparePlugin : public QQmlExtensionPlugin 12 | { 13 | Q_OBJECT 14 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 15 | 16 | public: 17 | void registerTypes(const char *uri) override; 18 | }; 19 | -------------------------------------------------------------------------------- /initialstart/modules/prepare/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.mobileinitialstart.prepare 5 | plugin prepareplugin 6 | classname PreparePlugin 7 | -------------------------------------------------------------------------------- /initialstart/modules/time/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.mobileinitialstart.time 5 | plugin timeplugin 6 | classname TimePlugin 7 | 8 | -------------------------------------------------------------------------------- /initialstart/modules/time/timeplugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "timeplugin.h" 5 | 6 | #include 7 | #include 8 | 9 | #include "timeutil.h" 10 | 11 | void TimePlugin::registerTypes(const char *uri) 12 | { 13 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.mobileinitialstart.time")); 14 | 15 | qmlRegisterSingletonType(uri, 1, 0, "TimeUtil", [](QQmlEngine *, QJSEngine *) { 16 | return new TimeUtil; 17 | }); 18 | } 19 | 20 | // #include "moc_flashlightplugin.cpp" 21 | -------------------------------------------------------------------------------- /initialstart/modules/time/timeplugin.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | #include 9 | #include 10 | 11 | class TimePlugin : public QQmlExtensionPlugin 12 | { 13 | Q_OBJECT 14 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 15 | 16 | public: 17 | void registerTypes(const char *uri) override; 18 | }; 19 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/package/contents/ui/PasswordField.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2013-2017 Jan Grulich 2 | // SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 3 | 4 | import QtQuick 2.15 5 | import org.kde.kirigami 2.10 as Kirigami 6 | import org.kde.plasma.networkmanagement as PlasmaNM 7 | 8 | Kirigami.PasswordField { 9 | property int securityType 10 | placeholderText: i18n("Password…") 11 | validator: RegularExpressionValidator { 12 | regularExpression: if (securityType == PlasmaNM.Enums.StaticWep) { 13 | /^(?:.{5}|[0-9a-fA-F]{10}|.{13}|[0-9a-fA-F]{26}){1}$/ 14 | } else { 15 | /^(?:.{8,64}){1}$/ 16 | } 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.mobileinitialstart.wifi 5 | plugin wifiplugin 6 | classname WiFiPlugin 7 | 8 | 9 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/wifiplugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "wifiplugin.h" 5 | 6 | #include 7 | #include 8 | 9 | #include "wifiutil.h" 10 | 11 | void WiFiPlugin::registerTypes(const char *uri) 12 | { 13 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.mobileinitialstart.wifi")); 14 | 15 | qmlRegisterSingletonType(uri, 1, 0, "WiFiUtil", [](QQmlEngine *, QJSEngine *) { 16 | return new WiFiUtil; 17 | }); 18 | } 19 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/wifiplugin.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | #include 9 | #include 10 | 11 | class WiFiPlugin : public QQmlExtensionPlugin 12 | { 13 | Q_OBJECT 14 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 15 | 16 | public: 17 | void registerTypes(const char *uri) override; 18 | }; 19 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/wifiutil.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "wifiutil.h" 5 | 6 | #include 7 | #include 8 | #include 9 | 10 | #include 11 | #include 12 | 13 | WiFiUtil::WiFiUtil(QObject *parent) 14 | : QObject{parent} 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /initialstart/modules/wifi/wifiutil.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 by Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | #include 8 | 9 | class WiFiUtil : public QObject 10 | { 11 | Q_OBJECT 12 | 13 | public: 14 | WiFiUtil(QObject *parent = nullptr); 15 | }; 16 | -------------------------------------------------------------------------------- /initialstart/qml/Main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | import QtQuick.Controls 2.15 6 | import QtQuick.Layouts 1.15 7 | 8 | import org.kde.kirigami 2.20 as Kirigami 9 | 10 | import initialstart 1.0 as InitialStart 11 | 12 | Kirigami.ApplicationWindow { 13 | id: root 14 | 15 | width: 360 16 | height: 720 17 | visibility: "Windowed" 18 | 19 | title: i18n("Initial Start") 20 | 21 | pageStack.globalToolBar.style: Kirigami.ApplicationHeaderStyle.None 22 | pageStack.columnView.columnResizeMode: Kirigami.ColumnView.SingleColumn 23 | 24 | pageStack.initialPage: Wizard {} 25 | } 26 | -------------------------------------------------------------------------------- /initialstart/settings.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | class Settings : public QObject 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | Settings(QObject *parent = nullptr); 14 | static Settings *self(); 15 | 16 | bool shouldStartWizard(); 17 | void setWizardFinished(); 18 | 19 | private: 20 | KSharedConfig::Ptr m_mobileConfig; 21 | bool m_isMobilePlatform; 22 | }; 23 | -------------------------------------------------------------------------------- /initialstart/utils.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | static const QLoggingCategory &LOGGING_CATEGORY() 9 | { 10 | static const QLoggingCategory category("plasma-mobile-initial-start"); 11 | return category; 12 | } 13 | -------------------------------------------------------------------------------- /kcms/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | add_subdirectory(mobileshell) 5 | add_subdirectory(info) 6 | add_subdirectory(time) 7 | add_subdirectory(virtualkeyboard) 8 | -------------------------------------------------------------------------------- /kcms/info/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2019 Jonah Brüchert 2 | # SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 3 | 4 | kcmutils_add_qml_kcm(kcm_mobile_info) 5 | 6 | target_sources(kcm_mobile_info PRIVATE 7 | info.cpp 8 | distroinfo.cpp 9 | softwareinfo.cpp 10 | hardwareinfo.cpp 11 | ) 12 | target_link_libraries(kcm_mobile_info PRIVATE 13 | Qt::Core 14 | Qt::Gui 15 | KF6::CoreAddons 16 | KF6::I18n 17 | KF6::KCMUtilsQuick 18 | KF6::ConfigCore 19 | KF6::Solid 20 | ) 21 | 22 | -------------------------------------------------------------------------------- /kcms/info/Messages.sh: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2019 Jonah Brüchert 2 | # SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 3 | 4 | $XGETTEXT $(find . -name \*.cpp -o -name \*.h -o -name \*.qml) -o $podir/kcm_mobile_info.pot 5 | -------------------------------------------------------------------------------- /kcms/info/distroinfo.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2019 Jonah Brüchert 3 | 4 | SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 5 | */ 6 | 7 | #include "distroinfo.h" 8 | 9 | DistroInfo::DistroInfo(QObject *parent) 10 | : QObject(parent) 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /kcms/info/hardwareinfo.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2019 Jonah Brüchert 3 | 4 | SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 5 | */ 6 | 7 | #include 8 | 9 | #ifndef HARDWAREINFO_H 10 | #define HARDWAREINFO_H 11 | 12 | class HardwareInfo : public QObject 13 | { 14 | Q_OBJECT 15 | 16 | Q_PROPERTY(QString processors READ processors CONSTANT) 17 | Q_PROPERTY(int processorCount READ processorCount CONSTANT) 18 | Q_PROPERTY(QString memory READ memory CONSTANT) 19 | 20 | public: 21 | HardwareInfo(QObject *parent = nullptr); 22 | 23 | QString processors() const; 24 | int processorCount() const; 25 | QString memory() const; 26 | }; 27 | 28 | #endif // HARDWAREINFO_H 29 | -------------------------------------------------------------------------------- /kcms/mobileshell/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | kcmutils_add_qml_kcm(kcm_mobileshell SOURCES kcm.cpp) 5 | 6 | target_link_libraries(kcm_mobileshell PRIVATE 7 | Qt::Core 8 | KF6::CoreAddons 9 | KF6::KCMUtils 10 | KF6::I18n 11 | KF6::KCMUtilsQuick 12 | ) 13 | 14 | -------------------------------------------------------------------------------- /kcms/mobileshell/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/kcm_mobileshell.pot 7 | 8 | 9 | -------------------------------------------------------------------------------- /kcms/mobileshell/kcm.cpp: -------------------------------------------------------------------------------- 1 | /** 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * SPDX-License-Identifier: GPL-2.0-or-later 4 | */ 5 | 6 | #include 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | class KCMMobileShell : public KQuickManagedConfigModule 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | KCMMobileShell(QObject *parent, const KPluginMetaData &data) 18 | : KQuickManagedConfigModule(parent, data) 19 | { 20 | setButtons({}); 21 | } 22 | 23 | Q_SIGNALS: 24 | void navigationPanelEnabledChanged(); 25 | 26 | private: 27 | KSharedConfig::Ptr m_config; 28 | }; 29 | 30 | K_PLUGIN_CLASS_WITH_JSON(KCMMobileShell, "kcm_mobileshell.json") 31 | 32 | #include "kcm.moc" 33 | -------------------------------------------------------------------------------- /kcms/time/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2014 Kai Uwe Broulik 2 | # SPDX-FileCopyrightText: 2014 Martin Klapetek 3 | # SPDX-License-Identifier: GPL-2.0-or-later 4 | 5 | set(timesettings_SRCS 6 | timesettings.cpp 7 | timezonemodel.cpp 8 | timezonesi18n.cpp 9 | ) 10 | 11 | qt_add_dbus_interface(timesettings_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/timedated1.xml timedated_interface) 12 | 13 | kcmutils_add_qml_kcm(kcm_mobile_time SOURCES ${timesettings_SRCS}) 14 | 15 | target_link_libraries(kcm_mobile_time PRIVATE 16 | Qt::Quick 17 | Qt::Qml 18 | Qt::DBus 19 | KF6::KCMUtilsQuick 20 | KF6::ConfigCore 21 | KF6::I18n 22 | QCoro6::Core 23 | QCoro6::DBus 24 | ) 25 | 26 | -------------------------------------------------------------------------------- /kcms/time/Messages.sh: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2014 Kai Uwe Broulik 2 | # SPDX-FileCopyrightText: 2014 Martin Klapetek 3 | # SPDX-License-Identifier: GPL-2.0-or-later 4 | 5 | $XGETTEXT $(find . -name \*.cpp -o -name \*.h -o -name \*.qml) -o $podir/kcm_mobile_time.pot 6 | -------------------------------------------------------------------------------- /kcms/time/config.h.cmake: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2011 Marco Martin 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | /* KDE's configuration directory */ 8 | #define KDE_CONFDIR "${CONFIG_INSTALL_DIR}" 9 | 10 | -------------------------------------------------------------------------------- /kcms/time/timezonedata.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Kai Uwe Broulik 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #ifndef TIMEZONEDATA_H 8 | #define TIMEZONEDATA_H 9 | 10 | #include 11 | 12 | class TimeZoneData 13 | { 14 | public: 15 | QByteArray id; 16 | QString region; 17 | QString city; 18 | QString comment; 19 | bool checked; 20 | int offsetFromUtc; 21 | }; 22 | 23 | #endif // TIMEZONEDATA_H 24 | -------------------------------------------------------------------------------- /kcms/virtualkeyboard/Messages.sh: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Bhushan Shah 2 | # SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 3 | $XGETTEXT $(find . -name \*.cpp -o -name \*.h -o -name \*.qml) -o $podir/kcm_mobile_virtualkeyboard.pot 4 | -------------------------------------------------------------------------------- /kded/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDE-Accepted-GPL 3 | 4 | add_subdirectory(autodetectapn) 5 | add_subdirectory(start) -------------------------------------------------------------------------------- /kded/autodetectapn/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDE-Accepted-GPL 3 | 4 | set(kded_plasma_mobile_autodetect_apn_SRCS 5 | autodetectapn.cpp 6 | ) 7 | 8 | kcoreaddons_add_plugin(kded_plasma_mobile_autodetect_apn SOURCES ${kded_plasma_mobile_autodetect_apn_SRCS} INSTALL_NAMESPACE "kf6/kded") 9 | 10 | install(FILES android/apns-full-conf.xml DESTINATION ${KDE_INSTALL_DATADIR}/plasma-mobile-apn-info) 11 | 12 | target_link_libraries(kded_plasma_mobile_autodetect_apn PRIVATE 13 | Qt::Core 14 | Qt::Xml 15 | KF6::DBusAddons 16 | KF6::KIOGui 17 | KF6::JobWidgets 18 | KF6::Package 19 | KF6::NetworkManagerQt 20 | KF6::ModemManagerQt 21 | QCoro::DBus 22 | ) 23 | -------------------------------------------------------------------------------- /kded/autodetectapn/android/README.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | # APN Autodetection list 7 | 8 | `apns-full-conf.xml` is taken straight from the Android source code [here](https://android.googlesource.com/device/sample/+/master/etc/apns-full-conf.xml), which is where carriers add their APN information for Android to autodetect it. 9 | 10 | # Steps to sync with upstream 11 | 12 | Download the file: 13 | ``` 14 | curl "https://android.googlesource.com/device/sample/+/master/etc/apns-full-conf.xml?format=TEXT" | base64 --decode > apns-full-conf.xml 15 | ``` 16 | 17 | Then ensure the SPDX license headers are added appropriately. 18 | -------------------------------------------------------------------------------- /kded/start/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | set(kded_plasma_mobile_start_SRCS 5 | start.cpp 6 | ) 7 | 8 | kcoreaddons_add_plugin(kded_plasma_mobile_start SOURCES ${kded_plasma_mobile_start_SRCS} INSTALL_NAMESPACE "kf6/kded") 9 | 10 | target_link_libraries(kded_plasma_mobile_start PRIVATE 11 | Qt::Core 12 | KF6::DBusAddons 13 | KF6::KIOGui 14 | KF6::JobWidgets 15 | KF6::Package 16 | ) 17 | 18 | -------------------------------------------------------------------------------- /kded/start/start.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | class Start : public KDEDModule 9 | { 10 | Q_OBJECT 11 | 12 | public: 13 | Start(QObject *parent, const QList &); 14 | }; 15 | -------------------------------------------------------------------------------- /kwin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: LGPL-2.1-or-later 3 | 4 | add_subdirectory(scripts) 5 | add_subdirectory(mobiletaskswitcher) -------------------------------------------------------------------------------- /kwin/mobiletaskswitcher/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | kpackage_install_package(package mobiletaskswitcher effects kwin) 5 | 6 | # Copy the script to the build directory so one can run tests without prior 7 | # make install. 8 | file(COPY package/contents package/metadata.json DESTINATION ${CMAKE_BINARY_DIR}/bin/kwin/effects/mobiletaskswitcher) 9 | 10 | add_subdirectory(plugin) -------------------------------------------------------------------------------- /kwin/mobiletaskswitcher/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2025 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(mobiletaskswitcherplugin URI org.kde.plasma.private.mobileshell.taskswitcherplugin GENERATE_PLUGIN_SOURCE) 5 | 6 | target_sources(mobiletaskswitcherplugin PRIVATE 7 | mobiletaskswitchereffect.cpp 8 | effecttouchborder.cpp 9 | taskfiltermodel.cpp 10 | taskmodel.cpp) 11 | 12 | target_link_libraries(mobiletaskswitcherplugin PRIVATE 13 | KF6::ConfigGui 14 | KF6::GlobalAccel 15 | KF6::I18n 16 | KF6::CoreAddons 17 | KF6::WindowSystem 18 | 19 | Qt::Quick 20 | Qt::Core 21 | 22 | KWin::kwin 23 | Plasma::Activities 24 | ) 25 | 26 | ecm_finalize_qml_module(mobiletaskswitcherplugin) 27 | -------------------------------------------------------------------------------- /kwin/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 Devin Lin 2 | # SPDX-License-Identifier: LGPL-2.1-or-later 3 | 4 | function(add_kwin_script name source) 5 | kpackage_install_package(${source} ${name} scripts kwin) 6 | 7 | # Copy the script to the build directory so one can run tests without prior 8 | # make install. 9 | file(COPY ${source}/contents ${source}/metadata.json DESTINATION ${CMAKE_BINARY_DIR}/bin/kwin/scripts/${name}) 10 | endfunction() 11 | 12 | add_kwin_script(convergentwindows convergentwindows) 13 | 14 | -------------------------------------------------------------------------------- /layout-templates/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | plasma_install_package(org.kde.plasma.mobile.defaultNavigationPanel org.kde.plasma.mobile.defaultNavigationPanel layout-templates layout-template) 4 | plasma_install_package(org.kde.plasma.mobile.defaultStatusBar org.kde.plasma.mobile.defaultStatusBar layout-templates layout-template) 5 | -------------------------------------------------------------------------------- /layout-templates/org.kde.plasma.mobile.defaultNavigationPanel/contents/layout.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | const bottomPanel = new Panel("org.kde.plasma.mobile.taskpanel") 5 | bottomPanel.location = "bottom"; 6 | bottomPanel.height = 2 * gridUnit; 7 | -------------------------------------------------------------------------------- /layout-templates/org.kde.plasma.mobile.defaultStatusBar/contents/layout.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | const panel = new Panel("org.kde.plasma.mobile.panel"); 5 | panel.location = "top"; 6 | panel.height = 1.25 * gridUnit; // HACK: supposed to be gridUnit + smallSpacing, but it doesn't seem to give the correct number 7 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/plasma-mobile/89c6075dad2b21f8be5ad7b4e10232362acb4a0b/logo.png -------------------------------------------------------------------------------- /logo.png.license: -------------------------------------------------------------------------------- 1 | Copyright None 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /lookandfeel/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2023 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_lookandfeel_org.kde.breeze.mobile.pot 7 | -------------------------------------------------------------------------------- /lookandfeel/contents/defaults: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2021 Aleix Pol 2 | # SPDX-FileCopyrightText: 2016 Marco Martin 3 | # SPDX-FileCopyrightText: 2014 Pier Luigi Fiorini 4 | # SPDX-FileCopyrightText: 2014 Aaron J. Seigo 5 | # SPDX-License-Identifier: GPL-2.0-or-later 6 | 7 | [kdeglobals][KDE] 8 | widgetStyle=Breeze 9 | 10 | [kdeglobals][General] 11 | ColorScheme=BreezeLight 12 | Name=Breeze 13 | 14 | [kdeglobals][Icons] 15 | Theme=breeze 16 | 17 | [plasmarc][Theme] 18 | name=default 19 | 20 | [Wallpaper] 21 | Image=Next 22 | 23 | # Set default cursor theme 24 | [kcminputrc][Mouse] 25 | cursorTheme=breeze_cursors 26 | 27 | [kwinrc][org.kde.kdecoration2] 28 | library=org.kde.breeze 29 | 30 | [KSplash] 31 | Theme=org.kde.Breeze 32 | -------------------------------------------------------------------------------- /lookandfeel/contents/layouts/layout.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | // no default layout, needed to have lookandfeelmanager in plasma-workspace recognize the LnF as affecting desktop layout. 5 | -------------------------------------------------------------------------------- /plasma-mobile.service.license: -------------------------------------------------------------------------------- 1 | Copyright None 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:32+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:32+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:32+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:32+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:33+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "Llinterna" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:33+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:33+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ast/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:34+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/cs/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Vit Pelcak , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-01-24 15:37+0100\n" 11 | "Last-Translator: Vit Pelcak \n" 12 | "Language-Team: Czech \n" 13 | "Language: cs\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | "X-Generator: Lokalize 22.12.1\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/en_GB/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Steve Allewell , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-01 17:47+0100\n" 11 | "Last-Translator: Steve Allewell \n" 12 | "Language-Team: British English\n" 13 | "Language: en_GB\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.03.70\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "Docked Mode" 24 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-01-18 16:42+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: contents/ui/main.qml:13 20 | #, kde-format 21 | msgid "Airplane Mode" 22 | msgstr "Lentokonetila" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-01-18 16:41+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: contents/ui/main.qml:16 20 | #, kde-format 21 | msgid "Bluetooth" 22 | msgstr "Bluetooth" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-02 17:07+0300\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: contents/ui/main.qml:11 20 | #, kde-format 21 | msgid "Docked Mode" 22 | msgstr "Telakointitila" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-01-18 16:41+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: contents/ui/main.qml:12 20 | #, kde-format 21 | msgid "Do Not Disturb" 22 | msgstr "Älä häiritse" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-01-18 16:40+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: package/contents/ui/main.qml:10 20 | #, kde-format 21 | msgid "Flashlight" 22 | msgstr "Taskulamppu" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-01-18 16:39+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: package/contents/ui/main.qml:13 20 | #, kde-format 21 | msgid "Night Color" 22 | msgstr "Yöväri" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-01-17 13:41+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: package/contents/ui/main.qml:10 20 | #, kde-format 21 | msgid "Auto-rotate" 22 | msgstr "Kierrä automaattisesti" 23 | -------------------------------------------------------------------------------- /po/fi/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Tommi Nieminen , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-01-17 13:40+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: contents/ui/main.qml:15 20 | #, kde-format 21 | msgid "Wi-Fi" 22 | msgstr "Langaton verkko" 23 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:13+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:13 18 | #, kde-format 19 | msgid "Airplane Mode" 20 | msgstr "Mode Avion" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.audio.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2023-03-18 02:34+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:15+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:11 18 | #, kde-format 19 | msgid "Sound" 20 | msgstr "Son" 21 | 22 | #: contents/ui/main.qml:13 23 | #, kde-format 24 | msgid "%1%" 25 | msgstr "%1 %" 26 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.autohidepanels.po: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-FileCopyrightText: 2025 Xavier Besnard 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma-mobile\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-04-22 00:42+0000\n" 8 | "PO-Revision-Date: 2025-04-23 11:44+0200\n" 9 | "Last-Translator: Xavier Besnard \n" 10 | "Language-Team: French >\n" 11 | "Language: fr\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 16 | "X-Generator: Lokalize 24.12.3\n" 17 | 18 | #: contents/ui/main.qml:10 19 | #, kde-format 20 | msgid "Auto Hide Panels" 21 | msgstr "Masquer automatiquement les panneaux" 22 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.battery.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2023-10-22 02:06+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:16+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Battery" 20 | msgstr "Batterie" 21 | 22 | #: contents/ui/main.qml:11 23 | #, kde-format 24 | msgid "%1%" 25 | msgstr "%1 %" 26 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:13+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:16 18 | #, kde-format 19 | msgid "Bluetooth" 20 | msgstr "Bluetooth" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2023. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 7 | "PO-Revision-Date: 2023-04-01 08:43+0200\n" 8 | "Last-Translator: Xavier BESNARD \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | 17 | #: contents/ui/main.qml:11 18 | #, kde-format 19 | msgid "Docked Mode" 20 | msgstr "Mode en dock" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:13+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:12 18 | #, kde-format 19 | msgid "Do Not Disturb" 20 | msgstr "Ne pas déranger" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:14+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: package/contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Flashlight" 20 | msgstr "Flashlight" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:14+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: package/contents/ui/main.qml:13 18 | #, kde-format 19 | msgid "Night Color" 20 | msgstr "Couleur de nuit" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:14+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: package/contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Auto-rotate" 20 | msgstr "Faire pivoter automatiquement" 21 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.settingsapp.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:18+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:9 18 | #, kde-format 19 | msgid "Settings" 20 | msgstr "Configuration" 21 | 22 | #: contents/ui/main.qml:10 23 | #, kde-format 24 | msgid "Tap to open" 25 | msgstr "Tapoter pour ouvrir" 26 | -------------------------------------------------------------------------------- /po/fr/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Xavier Besnard , 2022. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plasma-mobile\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 7 | "PO-Revision-Date: 2022-12-27 10:14+0100\n" 8 | "Last-Translator: Xavier Besnard \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 22.12.0\n" 16 | 17 | #: contents/ui/main.qml:15 18 | #, kde-format 19 | msgid "Wi-Fi" 20 | msgstr "Wifi" 21 | -------------------------------------------------------------------------------- /po/gl/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Adrián Chaves (Gallaecio) , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-06-18 13:05+0200\n" 11 | "Last-Translator: Adrián Chaves (Gallaecio) \n" 12 | "Language-Team: Galician \n" 13 | "Language: gl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.2\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/hi/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 11 | "PO-Revision-Date: 2024-12-15 15:58+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:27+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "Modo aeroplano" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:27+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-01 23:59+0200\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.03.80\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "Modo inn bassino (Docked)" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:27+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "Non disturba" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:28+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "Color de Nocte" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:29+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "Auto-rotar" 24 | -------------------------------------------------------------------------------- /po/ia/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # giovanni , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-01-27 12:29+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.1\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/it/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Paolo Zamponi , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-21 07:47+0100\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "Modalità aereo" 24 | -------------------------------------------------------------------------------- /po/it/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Paolo Zamponi , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2022-12-21 07:46+0100\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/it/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Paolo Zamponi , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-21 07:46+0100\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:13 18 | #, kde-format 19 | msgid "Airplane Mode" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.audio.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-18 02:34+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:11 18 | #, kde-format 19 | msgid "Sound" 20 | msgstr "" 21 | 22 | #: contents/ui/main.qml:13 23 | #, kde-format 24 | msgid "%1%" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.battery.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-10-22 02:06+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Battery" 20 | msgstr "" 21 | 22 | #: contents/ui/main.qml:11 23 | #, kde-format 24 | msgid "%1%" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:16 18 | #, kde-format 19 | msgid "Bluetooth" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 6 | "PO-Revision-Date: 2023-04-01 16:14-0700\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:11 18 | #, kde-format 19 | msgid "Docked Mode" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:12 18 | #, kde-format 19 | msgid "Do Not Disturb" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: package/contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Flashlight" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: package/contents/ui/main.qml:13 18 | #, kde-format 19 | msgid "Night Color" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.powermenu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-07-25 02:00+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: package/contents/ui/main.qml:11 18 | #, kde-format 19 | msgid "Shut Down" 20 | msgstr "" 21 | 22 | #: package/contents/ui/main.qml:13 23 | #, kde-format 24 | msgid "Open power menu" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: package/contents/ui/main.qml:10 18 | #, kde-format 19 | msgid "Auto-rotate" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.settingsapp.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:9 18 | #, kde-format 19 | msgid "Settings" 20 | msgstr "" 21 | 22 | #: contents/ui/main.qml:10 23 | #, kde-format 24 | msgid "Tap to open" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 6 | "PO-Revision-Date: 2022-12-20 22:48-0800\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: contents/ui/main.qml:15 18 | #, kde-format 19 | msgid "Wi-Fi" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:13+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "비행기 모드" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:13+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "블루투스" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:14+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "독 모드" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:14+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "방해 금지 모드" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:15+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "플래시" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:15+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "야간 색상" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:16+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "자동 회전" 24 | -------------------------------------------------------------------------------- /po/ko/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # Shinjo Park , 2023. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-07-26 00:16+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:43+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "Vliegtuigmodus" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:44+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-03-31 11:34+0200\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "Modus vastgezet" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:46+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "Niet storen" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:47+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "Zaklamp" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:48+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "Nachtkleur" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:50+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "Automatisch draaien" 24 | -------------------------------------------------------------------------------- /po/nl/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Freek de Kruijf , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-20 10:52+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:26-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "ਏਅਰਪਲੇਨ ਮੋਡ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:26-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "ਬਲੂਟੁੱਥ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:25-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "ਡੌਕ ਕੀਤਾ ਢੰਗ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:24-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "ਤੰਗ ਨਾ ਕਰੋ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:24-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "ਫਲੈਸ਼-ਲਾਈਟ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:23-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "ਰਾਤ ਦੇ ਰੰਗ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:22-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "ਆਪੇ-ਘੁੰਮਾਓ" 24 | -------------------------------------------------------------------------------- /po/pa/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-04-01 19:21-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "ਵਾਈ-ਫਾਈ" 24 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 6 | "PO-Revision-Date: 2022-12-23 15:12+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: contents/ui/main.qml:13 16 | #, kde-format 17 | msgid "Airplane Mode" 18 | msgstr "Modo de Avião" 19 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 11 | "PO-Revision-Date: 2022-12-23 14:58+0000\n" 12 | "Last-Translator: José Nuno Coelho Pires \n" 13 | "Language-Team: Portuguese \n" 14 | "Language: pt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 11 | "PO-Revision-Date: 2022-12-23 14:58+0000\n" 12 | "Last-Translator: José Nuno Coelho Pires \n" 13 | "Language-Team: Portuguese \n" 14 | "Language: pt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "Não Incomodar" 24 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 6 | "PO-Revision-Date: 2022-12-23 20:41+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: package/contents/ui/main.qml:10 16 | #, kde-format 17 | msgid "Flashlight" 18 | msgstr "Lanterna" 19 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 6 | "PO-Revision-Date: 2022-12-23 20:41+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: package/contents/ui/main.qml:13 16 | #, kde-format 17 | msgid "Night Color" 18 | msgstr "Cor Nocturna" 19 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2022-12-23 15:19+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: package/contents/ui/main.qml:10 16 | #, kde-format 17 | msgid "Auto-rotate" 18 | msgstr "Rotação automática" 19 | -------------------------------------------------------------------------------- /po/pt/plasma_org.kde.plasma.quicksetting.settingsapp.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plasma-mobile\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2022-12-23 15:12+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: contents/ui/main.qml:9 16 | #, kde-format 17 | msgid "Settings" 18 | msgstr "Configuração" 19 | 20 | #: contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Tap to open" 23 | msgstr "Toque para abrir" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "विमान मोड" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "ब्लूटूथ" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "डॉक्ड् मोड्" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "मा बाधतु" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "टॉर्च" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "रात्रिवर्णः" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "स्वतः घुमाव" 24 | -------------------------------------------------------------------------------- /po/sa/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for plasma-mobile package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the plasma-mobile package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: plasma-mobile\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:10+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "वाई-फाई" 24 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.airplanemode.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.airplanemode\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:40+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: contents/ui/main.qml:13 19 | #, kde-format 20 | msgid "Airplane Mode" 21 | msgstr "Režim lietadlo" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.bluetooth.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.bluetooth\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:41+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: contents/ui/main.qml:16 19 | #, kde-format 20 | msgid "Bluetooth" 21 | msgstr "Bluetooth" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.docked.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.docked\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 8 | "PO-Revision-Date: 2023-04-03 18:25+0200\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: contents/ui/main.qml:11 19 | #, kde-format 20 | msgid "Docked Mode" 21 | msgstr "Dokovaný režim" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.donotdisturb.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.donotdisturb\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:40+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: contents/ui/main.qml:12 19 | #, kde-format 20 | msgid "Do Not Disturb" 21 | msgstr "Nevyrušovať" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.flashlight.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.flashlight\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:41+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: package/contents/ui/main.qml:10 19 | #, kde-format 20 | msgid "Flashlight" 21 | msgstr "Baterka" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.nightcolor.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.nightcolor\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:41+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: package/contents/ui/main.qml:13 19 | #, kde-format 20 | msgid "Night Color" 21 | msgstr "Nočná farba" 22 | -------------------------------------------------------------------------------- /po/sk/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # translation of plasma_org.kde.plasma.quicksetting.wifi.po to Slovak 2 | # Roman Paholik , 2023. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: plasma_org.kde.plasma.quicksetting.wifi\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 8 | "PO-Revision-Date: 2023-03-12 08:41+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 22.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: contents/ui/main.qml:15 19 | #, kde-format 20 | msgid "Wi-Fi" 21 | msgstr "Wi-Fi" 22 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:08+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "விமான பயன்முறை" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:11+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "ஊடலை" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:08+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "தொந்தரவு செய்யாதே" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:07+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "கைவிளக்கு" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:04+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "இரவு நிறமாற்றம்" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:04+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Auto-rotate" 23 | msgstr "தானாக சுழற்று" 24 | -------------------------------------------------------------------------------- /po/ta/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kishore G , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-04-23 17:03+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "அருகலை" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:15+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Airplane Mode" 23 | msgstr "Uçak Kipi" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:15+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:16 21 | #, kde-format 22 | msgid "Bluetooth" 23 | msgstr "Bluetooth" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2023-03-31 12:36+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: contents/ui/main.qml:11 21 | #, kde-format 22 | msgid "Docked Mode" 23 | msgstr "Rıhtımlanmış Kip" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:15+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:12 21 | #, kde-format 22 | msgid "Do Not Disturb" 23 | msgstr "Rahatsız Etme" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:15+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: package/contents/ui/main.qml:10 21 | #, kde-format 22 | msgid "Flashlight" 23 | msgstr "El Feneri" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:14+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: package/contents/ui/main.qml:13 21 | #, kde-format 22 | msgid "Night Color" 23 | msgstr "Gece Rengi" 24 | -------------------------------------------------------------------------------- /po/tr/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2022-12-23 21:14+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 22.12.0\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.airplanemode.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.airplanemode.pot\n" 19 | "X-Crowdin-File-ID: 42575\n" 20 | 21 | #: contents/ui/main.qml:13 22 | #, kde-format 23 | msgid "Airplane Mode" 24 | msgstr "飞行模式" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.autohidepanels.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-22 00:42+0000\n" 6 | "PO-Revision-Date: 2025-05-12 14:57\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.autohidepanels.pot\n" 19 | "X-Crowdin-File-ID: 57378\n" 20 | 21 | #: contents/ui/main.qml:10 22 | #, kde-format 23 | msgid "Auto Hide Panels" 24 | msgstr "自动隐藏面板" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.bluetooth.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2024-07-02 00:40+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.bluetooth.pot\n" 19 | "X-Crowdin-File-ID: 43259\n" 20 | 21 | #: contents/ui/main.qml:16 22 | #, kde-format 23 | msgid "Bluetooth" 24 | msgstr "蓝牙" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.docked.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.docked.pot\n" 19 | "X-Crowdin-File-ID: 43351\n" 20 | 21 | #: contents/ui/main.qml:11 22 | #, kde-format 23 | msgid "Docked Mode" 24 | msgstr "底座对接模式" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.donotdisturb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.donotdisturb.pot\n" 19 | "X-Crowdin-File-ID: 43751\n" 20 | 21 | #: contents/ui/main.qml:12 22 | #, kde-format 23 | msgid "Do Not Disturb" 24 | msgstr "勿扰模式" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.flashlight.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-03-31 02:17+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.flashlight.pot\n" 19 | "X-Crowdin-File-ID: 42485\n" 20 | 21 | #: package/contents/ui/main.qml:10 22 | #, kde-format 23 | msgid "Flashlight" 24 | msgstr "手电筒" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.nightcolor.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2023-09-28 01:41+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.nightcolor.pot\n" 19 | "X-Crowdin-File-ID: 43569\n" 20 | 21 | #: package/contents/ui/main.qml:13 22 | #, kde-format 23 | msgid "Night Color" 24 | msgstr "夜间颜色" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.screenrotation.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2022-12-20 00:48+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.screenrotation.pot\n" 19 | "X-Crowdin-File-ID: 43731\n" 20 | 21 | #: package/contents/ui/main.qml:10 22 | #, kde-format 23 | msgid "Auto-rotate" 24 | msgstr "自动旋转" 25 | -------------------------------------------------------------------------------- /po/zh_CN/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/plasma-mobile/plasma_org.kde.plasma." 18 | "quicksetting.wifi.pot\n" 19 | "X-Crowdin-File-ID: 42623\n" 20 | 21 | #: contents/ui/main.qml:15 22 | #, kde-format 23 | msgid "Wi-Fi" 24 | msgstr "Wi-Fi" 25 | -------------------------------------------------------------------------------- /po/zh_TW/plasma_org.kde.plasma.quicksetting.wifi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the plasma-mobile package. 3 | # 4 | # Kisaragi Hiu , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: plasma-mobile\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-04-26 00:44+0000\n" 10 | "PO-Revision-Date: 2023-12-22 05:43+0900\n" 11 | "Last-Translator: Kisaragi Hiu \n" 12 | "Language-Team: Traditional Chinese \n" 13 | "Language: zh_TW\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 24.01.80\n" 19 | 20 | #: contents/ui/main.qml:15 21 | #, kde-format 22 | msgid "Wi-Fi" 23 | msgstr "Wi-Fi" 24 | -------------------------------------------------------------------------------- /quicksettings/airplanemode/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.airplanemode.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/audio/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.audio.pot 7 | 8 | 9 | -------------------------------------------------------------------------------- /quicksettings/audio/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | 6 | import org.kde.plasma.private.mobileshell as MobileShell 7 | import org.kde.plasma.private.mobileshell.state as MobileShellState 8 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 9 | 10 | QS.QuickSetting { 11 | text: i18n("Sound") 12 | icon: MobileShell.AudioInfo.icon 13 | status: i18n("%1%", MobileShell.AudioInfo.volumeValue) 14 | enabled: false 15 | settingsCommand: "plasma-open-settings kcm_pulseaudio" 16 | 17 | function toggle() { 18 | MobileShellState.ShellDBusClient.closeActionDrawer(); 19 | MobileShellState.ShellDBusClient.showVolumeOSD(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /quicksettings/autohidepanels/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2025 Micah Stanley 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.autohidepanels.pot 7 | -------------------------------------------------------------------------------- /quicksettings/autohidepanels/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2025 Micah Stanley 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 5 | 6 | import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings 7 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 8 | 9 | QS.QuickSetting { 10 | text: i18n("Auto Hide Panels") 11 | icon: "view-fullscreen" 12 | enabled: ShellSettings.Settings.autoHidePanelsEnabled 13 | 14 | function toggle() { 15 | ShellSettings.Settings.autoHidePanelsEnabled = !ShellSettings.Settings.autoHidePanelsEnabled; 16 | } 17 | } -------------------------------------------------------------------------------- /quicksettings/battery/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.battery.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/battery/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 7 | import org.kde.plasma.private.mobileshell as MobileShell 8 | 9 | QS.QuickSetting { 10 | text: i18n("Battery") 11 | status: i18n("%1%", MobileShell.BatteryInfo.percent) 12 | icon: "battery-full" + (MobileShell.BatteryInfo.pluggedIn ? "-charging" : "") 13 | enabled: false 14 | settingsCommand: "plasma-open-settings kcm_mobile_power" 15 | } 16 | -------------------------------------------------------------------------------- /quicksettings/bluetooth/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.bluetooth.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/caffeine/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.caffeine.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/docked/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2023 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.docked.pot 7 | -------------------------------------------------------------------------------- /quicksettings/docked/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.quicksetting.flashlight 7 | import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings 8 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 9 | 10 | QS.QuickSetting { 11 | text: i18n("Docked Mode") 12 | icon: "preferences-desktop-display-randr" 13 | enabled: ShellSettings.Settings.convergenceModeEnabled 14 | 15 | function toggle() { 16 | ShellSettings.Settings.convergenceModeEnabled = !ShellSettings.Settings.convergenceModeEnabled; 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /quicksettings/donotdisturb/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.donotdisturb.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/donotdisturb/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * 4 | * SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import QtQuick 8 | import org.kde.plasma.private.mobileshell.state as MobileShellState 9 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 10 | 11 | QS.QuickSetting { 12 | text: i18n("Do Not Disturb") 13 | icon: enabled ? "notifications-disabled" : "notifications" 14 | status: "" 15 | enabled: MobileShellState.ShellDBusClient.doNotDisturb 16 | 17 | function toggle() { 18 | MobileShellState.ShellDBusClient.doNotDisturb = !MobileShellState.ShellDBusClient.doNotDisturb; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /quicksettings/flashlight/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(flashlightplugin 5 | URI "org.kde.plasma.quicksetting.flashlight" 6 | GENERATE_PLUGIN_SOURCE 7 | ) 8 | 9 | target_sources(flashlightplugin PRIVATE flashlightutil.cpp) 10 | 11 | target_link_libraries(flashlightplugin PRIVATE 12 | Qt::Core 13 | Qt::Qml 14 | Qt::Quick 15 | Qt::DBus 16 | KF6::CoreAddons 17 | KF6::ConfigCore 18 | KF6::ConfigGui 19 | KF6::I18n 20 | KF6::Notifications 21 | udev 22 | ) 23 | 24 | ecm_finalize_qml_module(flashlightplugin) 25 | 26 | plasma_install_package(package org.kde.plasma.quicksetting.flashlight quicksettings) 27 | -------------------------------------------------------------------------------- /quicksettings/flashlight/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.flashlight.pot 7 | 8 | 9 | -------------------------------------------------------------------------------- /quicksettings/flashlight/package/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.quicksetting.flashlight 7 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 8 | 9 | QS.QuickSetting { 10 | text: i18n("Flashlight") 11 | icon: FlashlightUtil.torchEnabled ? "flashlight-on" : "flashlight-off" 12 | enabled: FlashlightUtil.torchEnabled 13 | available: FlashlightUtil.available 14 | function toggle() { 15 | FlashlightUtil.toggleTorch() 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /quicksettings/keyboardtoggle/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.keyboardtoggle.pot 7 | 8 | 9 | -------------------------------------------------------------------------------- /quicksettings/mobiledata/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.mobiledata.pot 7 | -------------------------------------------------------------------------------- /quicksettings/nightcolor/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.nightcolor.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/nightcolor/nightcolorsettings.kcfgc: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Vlad Zahorodnii 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | File=nightcolorsettings.kcfg 5 | Namespace=ColorCorrect 6 | ClassName=NightColorSettings 7 | Mutators=true 8 | # nightcolormanager.h is needed for NightColorMode 9 | IncludeFiles=enum.h 10 | UseEnumTypes=true 11 | DefaultValueGetters=true 12 | GenerateProperties=true 13 | ParentInConstructor=true 14 | Notifiers=true 15 | -------------------------------------------------------------------------------- /quicksettings/nightcolor/package/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2015 Marco Martin 3 | * SPDX-FileCopyrightText: 2021 Devin Lin 4 | * SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez 5 | * 6 | * SPDX-License-Identifier: LGPL-2.0-or-later 7 | */ 8 | 9 | import org.kde.plasma.quicksetting.nightcolor as NightColor 10 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 11 | 12 | QS.QuickSetting { 13 | text: i18n("Night Color") 14 | icon: "redshift-status-on" 15 | enabled: NightColor.NightColorUtil.enabled 16 | status: "" 17 | settingsCommand: "plasma-open-settings kcm_nightcolor" 18 | 19 | function toggle() { 20 | NightColor.NightColorUtil.enabled = !enabled; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /quicksettings/powermenu/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | find_package(LibKWorkspace) 5 | 6 | ecm_add_qml_module(powermenuplugin URI "org.kde.plasma.quicksetting.powermenu" GENERATE_PLUGIN_SOURCE) 7 | 8 | target_sources(powermenuplugin PRIVATE powermenuutil.cpp) 9 | 10 | target_link_libraries(powermenuplugin PRIVATE 11 | Qt::Core 12 | Qt::Qml 13 | Qt::Quick 14 | KF6::CoreAddons 15 | PW::KWorkspace 16 | ) 17 | 18 | ecm_finalize_qml_module(powermenuplugin) 19 | 20 | plasma_install_package(package org.kde.plasma.quicksetting.powermenu quicksettings) 21 | 22 | -------------------------------------------------------------------------------- /quicksettings/powermenu/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.powermenu.pot 7 | -------------------------------------------------------------------------------- /quicksettings/powermenu/package/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Devin Lin 3 | * 4 | * SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | import org.kde.plasma.quicksetting.powermenu as PowerMenu 8 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 9 | 10 | QS.QuickSetting { 11 | text: i18n("Shut Down") 12 | icon: "system-shutdown-symbolic" 13 | status: i18n("Open power menu") 14 | enabled: false 15 | 16 | function toggle() { 17 | PowerMenu.PowerMenuUtil.openShutdownScreen(); 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /quicksettings/powermenu/powermenuutil.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #include "powermenuutil.h" 8 | 9 | #include 10 | 11 | PowerMenuUtil::PowerMenuUtil(QObject *parent) 12 | : QObject{parent} 13 | { 14 | } 15 | 16 | void PowerMenuUtil::openShutdownScreen() 17 | { 18 | SessionManagement sessionManagement; 19 | sessionManagement.requestShutdown(); 20 | } 21 | -------------------------------------------------------------------------------- /quicksettings/powermenu/powermenuutil.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | #include 11 | 12 | class PowerMenuUtil : public QObject 13 | { 14 | Q_OBJECT 15 | QML_ELEMENT 16 | QML_SINGLETON 17 | 18 | public: 19 | PowerMenuUtil(QObject *parent = nullptr); 20 | 21 | Q_INVOKABLE void openShutdownScreen(); 22 | }; 23 | -------------------------------------------------------------------------------- /quicksettings/record/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | ecm_add_qml_module(recordplugin URI "org.kde.plasma.quicksetting.record" GENERATE_PLUGIN_SOURCE) 5 | 6 | target_sources(recordplugin PRIVATE recordutil.cpp) 7 | 8 | target_link_libraries(recordplugin PRIVATE 9 | Qt::Core 10 | Qt::DBus 11 | Qt::Qml 12 | Qt::Quick 13 | KF6::CoreAddons 14 | KF6::ConfigCore 15 | KF6::ConfigGui 16 | KF6::I18n 17 | KF6::Notifications 18 | ) 19 | 20 | ecm_finalize_qml_module(recordplugin) 21 | 22 | install(FILES plasma_mobile_quicksetting_record.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR}) 23 | 24 | plasma_install_package(package org.kde.plasma.quicksetting.record quicksettings) 25 | -------------------------------------------------------------------------------- /quicksettings/record/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.record.pot 7 | -------------------------------------------------------------------------------- /quicksettings/screenrotation/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.screenrotation.pot 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/screenrotation/package/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.quicksetting.screenrotation 1.0 7 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 8 | 9 | QS.QuickSetting { 10 | text: i18n("Auto-rotate") 11 | icon: "rotation-allowed" 12 | settingsCommand: "plasma-open-settings kcm_kscreen" 13 | enabled: ScreenRotationUtil.autoScreenRotationEnabled 14 | available: ScreenRotationUtil.available 15 | 16 | function toggle() { 17 | ScreenRotationUtil.autoScreenRotationEnabled = !enabled 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /quicksettings/screenrotation/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.quicksetting.screenrotation 5 | plugin screenrotationplugin 6 | classname ScreenRotationPlugin 7 | 8 | -------------------------------------------------------------------------------- /quicksettings/screenrotation/screenrotationplugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022-2023 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #include "screenrotationplugin.h" 5 | 6 | #include 7 | #include 8 | 9 | #include "screenrotationutil.h" 10 | 11 | void ScreenRotationPlugin::registerTypes(const char *uri) 12 | { 13 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.quicksetting.screenrotation")); 14 | 15 | qmlRegisterSingletonType(uri, 1, 0, "ScreenRotationUtil", [](QQmlEngine *, QJSEngine *) { 16 | return new ScreenRotationUtil; 17 | }); 18 | } 19 | 20 | //#include "moc_screenrotationplugin.cpp" 21 | -------------------------------------------------------------------------------- /quicksettings/screenrotation/screenrotationplugin.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | 11 | #include 12 | #include 13 | 14 | class ScreenRotationPlugin : public QQmlExtensionPlugin 15 | { 16 | Q_OBJECT 17 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 18 | 19 | public: 20 | void registerTypes(const char *uri) override; 21 | }; 22 | -------------------------------------------------------------------------------- /quicksettings/screenshot/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.screenshot.pot 7 | -------------------------------------------------------------------------------- /quicksettings/screenshot/qmldir: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | module org.kde.plasma.quicksetting.screenshot 5 | plugin screenshotplugin 6 | classname ScreenShotPlugin 7 | -------------------------------------------------------------------------------- /quicksettings/screenshot/screenshotplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #include "screenshotplugin.h" 8 | 9 | #include 10 | #include 11 | 12 | #include "screenshotutil.h" 13 | 14 | void ScreenShotPlugin::registerTypes(const char *uri) 15 | { 16 | Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.quicksetting.screenshot")); 17 | 18 | qmlRegisterSingletonType(uri, 1, 0, "ScreenShotUtil", [](QQmlEngine *, QJSEngine *) { 19 | return new ScreenShotUtil; 20 | }); 21 | } 22 | 23 | //#include "moc_screenshotplugin.cpp" 24 | -------------------------------------------------------------------------------- /quicksettings/screenshot/screenshotplugin.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | 11 | #include 12 | #include 13 | 14 | class ScreenShotPlugin : public QQmlExtensionPlugin 15 | { 16 | Q_OBJECT 17 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 18 | 19 | public: 20 | void registerTypes(const char *uri) override; 21 | }; 22 | -------------------------------------------------------------------------------- /quicksettings/screenshot/screenshotutil.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 by Devin Lin 3 | * 4 | * SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #pragma once 8 | 9 | #include 10 | #include 11 | 12 | #include "screenshot2interface.h" 13 | 14 | class ScreenShotUtil : public QObject 15 | { 16 | Q_OBJECT 17 | 18 | public: 19 | ScreenShotUtil(QObject *parent = nullptr); 20 | 21 | Q_INVOKABLE void takeScreenShot(); 22 | void handleMetaDataReceived(const QVariantMap &metadata, int fd); 23 | 24 | private: 25 | OrgKdeKWinScreenShot2Interface *m_screenshotInterface; 26 | }; 27 | -------------------------------------------------------------------------------- /quicksettings/settingsapp/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.settingsapp.pot 7 | -------------------------------------------------------------------------------- /quicksettings/settingsapp/contents/ui/main.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 Devin Lin 2 | // SPDX-License-Identifier: LGPL-2.0-or-later 3 | 4 | import QtQuick 2.15 5 | 6 | import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS 7 | 8 | QS.QuickSetting { 9 | text: i18n("Settings") 10 | status: i18n("Tap to open") 11 | icon: "configure" 12 | enabled: false 13 | settingsCommand: "plasma-open-settings" 14 | } 15 | -------------------------------------------------------------------------------- /quicksettings/wifi/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2022 Devin Lin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_org.kde.plasma.quicksetting.wifi.pot 7 | -------------------------------------------------------------------------------- /screenshots/homescreen-folio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/plasma-mobile/89c6075dad2b21f8be5ad7b4e10232362acb4a0b/screenshots/homescreen-folio.png -------------------------------------------------------------------------------- /screenshots/homescreen-folio.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: None 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /screenshots/homescreen-halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/plasma-mobile/89c6075dad2b21f8be5ad7b4e10232362acb4a0b/screenshots/homescreen-halcyon.png -------------------------------------------------------------------------------- /screenshots/homescreen-halcyon.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: None 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /shell/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # SPDX-FileCopyrightText: 2019 Bhushan Shah 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | $XGETTEXT `find . -name \*.qml` -L Java -o $podir/plasma_shell_org.kde.plasma.phone.pot 7 | rm -f rc.cpp 8 | -------------------------------------------------------------------------------- /shell/contents/defaults: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2014 Aaron J. Seigo 2 | # SPDX-FileCopyrightText: 2014 Pier Luigi Fiorini 3 | # SPDX-FileCopyrightText: 2014-2019 Marco Martin 4 | # SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | [kdeglobals][KDE] 7 | LookAndFeelPackage=org.kde.breeze.mobile 8 | 9 | [Desktop] 10 | Containment=org.kde.plasma.mobile.homescreen.folio 11 | ToolBox=org.kde.plasma.nano.desktoptoolbox 12 | 13 | [Desktop][ContainmentActions] 14 | 15 | [plasmarc][Theme] 16 | name=breeze 17 | -------------------------------------------------------------------------------- /shell/contents/lockscreen/WallpaperBlur.qml: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2021-2022 Devin Lin 3 | * SPDX-License-Identifier: GPL-2.0-or-later 4 | */ 5 | 6 | import QtQuick 7 | import QtQuick.Effects 8 | 9 | MultiEffect { 10 | autoPaddingEnabled: false 11 | blurEnabled: true 12 | blurMax: 50 13 | blur: 1.0 14 | } 15 | -------------------------------------------------------------------------------- /shell/contents/updates/5_24_update.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2021 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | /** 5 | * Configuration updates for Plasma 5.24 6 | * - Panel heights were changed, ensure those are updated 7 | */ 8 | 9 | print("Applying shell updates for 5.24...") 10 | for (let i in panels()) { 11 | print("Found panel of type: " + panels()[i].type); 12 | if (panels()[i].type === "org.kde.phone.panel") { 13 | panels()[i].height = 1.25 * gridUnit; 14 | } else if (panels()[i].type === "org.kde.phone.taskpanel") { 15 | panels()[i].height = 2 * gridUnit; 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /shell/contents/updates/6_3_update.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Micah 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | /** 5 | * Configuration updates for Plasma 6.3 6 | * - Mobile popup notifications were added, remove the old ones. 7 | */ 8 | 9 | let allPanels = panels(); 10 | for (var i = 0; i < allPanels.length; i++) { 11 | if (allPanels[i].type === "org.kde.plasma.mobile.panel") { 12 | let allWidgetIds = allPanels[i].widgetIds; 13 | for (var w = 0; w < allWidgetIds.length; w++) { 14 | let widget = allPanels[i].widgetById(allWidgetIds[w]); 15 | if (widget.type === "org.kde.plasma.notifications") { 16 | widget.remove(); 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /shell/contents/updates/panelsfix.js: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2014-2019 Marco Martin 2 | // SPDX-FileCopyrightText: 2015-2021 Bhushan Shah 3 | // SPDX-FileCopyrightText: 2021 Devin Lin 4 | // SPDX-License-Identifier: GPL-2.0-or-later 5 | 6 | let topFound = false 7 | let bottomFound = false 8 | 9 | for (let i in panels()) { 10 | print(panels()[i].type) 11 | if (panels()[i].type === "org.kde.plasma.mobile.panel") { 12 | topFound = true; 13 | } else if (panels()[i].type === "org.kde.plasma.mobile.taskpanel") { 14 | bottomFound = true; 15 | } 16 | } 17 | 18 | if (!topFound) { 19 | // keep widget list synced with the layout.js 20 | loadTemplate("org.kde.plasma.mobile.defaultStatusBar"); 21 | } 22 | if (!bottomFound) { 23 | loadTemplate("org.kde.plasma.mobile.defaultNavigationPanel"); 24 | } 25 | -------------------------------------------------------------------------------- /shell/metadata.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Aaron J. Seigo 2 | SPDX-FileCopyrightText: 2019-2020 Marco Martin 3 | SPDX-License-Identifier: GPL-2.0-or-later 4 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | add_subdirectory(notificationtest) -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | # Tests 7 | Run any of the example files in this folder with `qmlscene` to test different components. 8 | 9 | Be sure to have the project installed on the system. 10 | 11 | ### Power Menu 12 | To test the power menu, the following command can be used to invoke `ksmserver-logout-greeter` with the mobile look and feel in a window: 13 | 14 | ```shell 15 | ~/kde/usr/lib/libexec/ksmserver-logout-greeter --windowed --lookandfeel org.kde.breeze.mobile 16 | ``` 17 | -------------------------------------------------------------------------------- /tests/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/plasma-mobile/89c6075dad2b21f8be5ad7b4e10232362acb4a0b/tests/assets/background.jpg -------------------------------------------------------------------------------- /tests/assets/background.jpg.license: -------------------------------------------------------------------------------- 1 | Copyright None 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /tests/notificationtest/plasma_mobile_notificationtest.notifyrc: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Devin Lin 2 | # SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | [Global] 5 | IconName=notifications 6 | Name=Notification Test 7 | 8 | [Event/notificationTest] 9 | Name=Notification Test 10 | Comment=A test notification 11 | Action=Popup 12 | -------------------------------------------------------------------------------- /tests/notificationtest/utils.h: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Devin Lin 2 | // SPDX-License-Identifier: GPL-2.0-or-later 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | static const QLoggingCategory &LOGGING_CATEGORY() 9 | { 10 | static const QLoggingCategory category("plasma-mobile-notificationtest"); 11 | return category; 12 | } 13 | --------------------------------------------------------------------------------