├── .tag ├── src ├── modules │ ├── mouse │ │ └── mouse.json │ ├── info │ │ ├── contents │ │ │ └── logo.png │ │ ├── CMakeLists.txt │ │ └── metadata.desktop.in │ ├── appearance │ │ ├── CMakeLists.txt │ │ └── metadata.desktop.in │ ├── background │ │ ├── metadata.desktop.in │ │ ├── CMakeLists.txt │ │ └── metadata.desktop │ ├── updates │ │ ├── metadata.desktop │ │ ├── metadata.desktop.in │ │ ├── contents │ │ │ ├── DetailsPage.qml │ │ │ └── UpdatesAvailable.qml │ │ └── plugin.cpp │ ├── locale │ │ ├── metadata.desktop.in │ │ └── CMakeLists.txt │ ├── keyboard │ │ ├── metadata.desktop.in │ │ └── CMakeLists.txt │ ├── users │ │ ├── metadata.desktop.in │ │ └── CMakeLists.txt │ ├── display │ │ ├── metadata.desktop.in │ │ ├── data │ │ │ └── io.liri.Shell.OutputManagement1.xml │ │ ├── CMakeLists.txt │ │ └── metadata.desktop │ └── desktop │ │ └── metadata.json ├── app │ ├── io.liri.Settings.service.in │ └── io.liri.Settings.desktop.in └── imports │ └── settings │ └── CMakeLists.txt ├── cmake ├── FindPolkit.cmake └── FindLibcrypt.cmake ├── .reuse └── dep5 ├── translations ├── modules │ ├── info │ │ ├── info_ar.ts │ │ ├── info_ast.ts │ │ ├── info_bg.ts │ │ ├── info_cy.ts │ │ ├── info_he.ts │ │ ├── info_hu.ts │ │ ├── info_ja.ts │ │ ├── info_kk.ts │ │ ├── info_ko.ts │ │ ├── info_no.ts │ │ ├── info_pam.ts │ │ ├── info_pt.ts │ │ ├── info_sk.ts │ │ ├── info_sv.ts │ │ ├── info_ca_ES.ts │ │ ├── info_cs_CZ.ts │ │ ├── info_da_DK.ts │ │ ├── info_hr_HR.ts │ │ ├── info_ja_JP.ts │ │ ├── info_ast_ES.ts │ │ ├── info_id.ts │ │ ├── info_pl.ts │ │ ├── info_nl.ts │ │ ├── info_es.ts │ │ ├── info_pt_PT.ts │ │ ├── info_ca.ts │ │ ├── info_el.ts │ │ ├── info_es_MX.ts │ │ ├── info_zh_CN.ts │ │ └── info_zh_TW.ts │ ├── appearance │ │ ├── appearance_ast.ts │ │ ├── appearance_bg.ts │ │ ├── appearance_cy.ts │ │ ├── appearance_he.ts │ │ ├── appearance_hu.ts │ │ ├── appearance_kk.ts │ │ ├── appearance_ko.ts │ │ ├── appearance_no.ts │ │ ├── appearance_pam.ts │ │ ├── appearance_pt.ts │ │ ├── appearance_sk.ts │ │ ├── appearance_sv.ts │ │ ├── appearance_ca_ES.ts │ │ ├── appearance_cs_CZ.ts │ │ ├── appearance_da_DK.ts │ │ ├── appearance_hr_HR.ts │ │ ├── appearance_ja.ts │ │ ├── appearance_ja_JP.ts │ │ ├── appearance_ast_ES.ts │ │ ├── appearance_id.ts │ │ ├── appearance_pt_PT.ts │ │ ├── appearance_ar.ts │ │ ├── appearance_es.ts │ │ ├── appearance_el.ts │ │ ├── appearance_es_MX.ts │ │ ├── appearance_nl.ts │ │ ├── appearance_zh_CN.ts │ │ ├── appearance_zh_TW.ts │ │ ├── appearance_ru.ts │ │ ├── appearance_fr.ts │ │ ├── appearance_tr.ts │ │ ├── appearance_da.ts │ │ ├── appearance_de.ts │ │ ├── appearance_it.ts │ │ ├── appearance_pl.ts │ │ ├── appearance_lt.ts │ │ ├── appearance.ts │ │ ├── appearance_ca.ts │ │ ├── appearance_es_419.ts │ │ ├── appearance_pt_BR.ts │ │ └── metadata.pot │ ├── display │ │ ├── metadata.pot │ │ ├── metadata_ja.po │ │ ├── metadata_ko.po │ │ ├── metadata_ca.po │ │ ├── metadata_el.po │ │ ├── metadata_es.po │ │ ├── metadata_fr.po │ │ ├── metadata_id.po │ │ ├── metadata_kk.po │ │ ├── metadata_nl.po │ │ ├── metadata_sv.po │ │ ├── metadata_ast.po │ │ ├── metadata_bg.po │ │ ├── metadata_hu.po │ │ ├── metadata_no.po │ │ ├── metadata_pt.po │ │ ├── metadata_pam.po │ │ ├── metadata_ja_JP.po │ │ ├── metadata_zh_TW.po │ │ ├── metadata_ca_ES.po │ │ ├── metadata_da_DK.po │ │ ├── metadata_es_MX.po │ │ ├── metadata_ast_ES.po │ │ ├── metadata_pt_PT.po │ │ ├── metadata_es_419.po │ │ ├── metadata_cy.po │ │ ├── display_ja.ts │ │ ├── metadata_sk.po │ │ ├── display_ar.ts │ │ ├── display_bg.ts │ │ ├── display_cy.ts │ │ ├── display_he.ts │ │ ├── display_hu.ts │ │ ├── display_kk.ts │ │ ├── display_ko.ts │ │ ├── display_no.ts │ │ ├── display_pt.ts │ │ ├── display_sk.ts │ │ ├── display_sv.ts │ │ ├── display_ast.ts │ │ ├── display_ca_ES.ts │ │ ├── display_cs_CZ.ts │ │ ├── display_da_DK.ts │ │ ├── display_hr_HR.ts │ │ ├── display_ja_JP.ts │ │ ├── display_pam.ts │ │ ├── metadata_ar.po │ │ ├── display_ast_ES.ts │ │ ├── metadata_he.po │ │ ├── metadata_hr_HR.po │ │ ├── display_id.ts │ │ ├── metadata_cs_CZ.po │ │ ├── display_el.ts │ │ ├── display_es.ts │ │ ├── display_pt_PT.ts │ │ ├── display_es_MX.ts │ │ ├── metadata_da.po │ │ ├── metadata_it.po │ │ ├── metadata_zh_CN.po │ │ └── metadata_pl.po │ ├── background │ │ ├── metadata.pot │ │ ├── metadata_id.po │ │ ├── metadata_ja.po │ │ ├── metadata_ko.po │ │ ├── metadata_ca.po │ │ ├── metadata_el.po │ │ ├── metadata_es.po │ │ ├── metadata_fr.po │ │ ├── metadata_kk.po │ │ ├── metadata_nl.po │ │ ├── metadata_sv.po │ │ ├── metadata_ast.po │ │ ├── metadata_bg.po │ │ ├── metadata_hu.po │ │ ├── metadata_no.po │ │ ├── metadata_pt.po │ │ ├── metadata_ja_JP.po │ │ ├── metadata_pam.po │ │ ├── metadata_zh_TW.po │ │ ├── metadata_ast_ES.po │ │ ├── metadata_ca_ES.po │ │ ├── metadata_da_DK.po │ │ ├── metadata_es_MX.po │ │ ├── metadata_pt_PT.po │ │ ├── metadata_es_419.po │ │ ├── metadata_cy.po │ │ ├── metadata_sk.po │ │ ├── metadata_ar.po │ │ ├── metadata_he.po │ │ ├── metadata_hr_HR.po │ │ ├── metadata_cs_CZ.po │ │ ├── metadata_it.po │ │ └── metadata_zh_CN.po │ ├── locale │ │ └── metadata.pot │ ├── users │ │ └── metadata.pot │ └── keyboard │ │ └── metadata.pot └── app │ ├── app_zh_CN.ts │ ├── app_zh_TW.ts │ ├── app_ca.ts │ ├── app_pl.ts │ ├── app_tr.ts │ ├── app_de.ts │ ├── app_fr.ts │ ├── app_ru.ts │ ├── app_es_419.ts │ ├── app_lt.ts │ ├── app_da.ts │ ├── app_it.ts │ ├── app_nl.ts │ ├── app_pt_BR.ts │ ├── app.ts │ ├── app_bg.ts │ ├── app_cy.ts │ ├── app_he.ts │ ├── app_hu.ts │ ├── app_kk.ts │ ├── app_no.ts │ ├── app_pt.ts │ └── app_sk.ts └── AUTHORS.md /.tag: -------------------------------------------------------------------------------- 1 | 45460a5126dd9683758a2323ce5fc6c69437876f 2 | -------------------------------------------------------------------------------- /src/modules/mouse/mouse.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "mouse" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/info/contents/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lirios/settings/HEAD/src/modules/info/contents/logo.png -------------------------------------------------------------------------------- /cmake/FindPolkit.cmake: -------------------------------------------------------------------------------- 1 | find_package(PkgConfig) 2 | 3 | pkg_check_modules(Polkit polkit-gobject-1 REQUIRED IMPORTED_TARGET) 4 | -------------------------------------------------------------------------------- /src/app/io.liri.Settings.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=io.liri.Settings 3 | Exec=@BINDIR@/liri-settings --xdg-application 4 | -------------------------------------------------------------------------------- /src/modules/appearance/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | liri_add_settings_module(Appearance 2 | CONTENTS 3 | contents/main.qml 4 | ) 5 | -------------------------------------------------------------------------------- /src/modules/info/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | liri_add_settings_module(Info 2 | CONTENTS 3 | contents/logo.png 4 | contents/main.qml 5 | ) 6 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: Settings 3 | Source: https://github.com/lirios/settings 4 | 5 | Files: translations/* 6 | Copyright: 2020 Liri Translators 7 | License: CC0-1.0 8 | -------------------------------------------------------------------------------- /src/modules/background/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Background 4 | _Comment=Change your background image to a wallpaper, photo or solid color 5 | Icon=preferences-desktop-wallpaper 6 | Categories=Qt;X-Liri;Settings; 7 | OnlyShowIn=X-Liri; 8 | X-Liri-Settings-Category=personal 9 | X-Liri-Settings-SymbolicIcon=image/color_lens 10 | -------------------------------------------------------------------------------- /src/modules/updates/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=System Updates 4 | Comment=Update the operating system 5 | Keywords=System;Online;Update;Software; 6 | Icon=system-software-update 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=system 10 | X-Liri-Settings-SymbolicIcon=notification/system_update 11 | -------------------------------------------------------------------------------- /src/modules/locale/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Region & Language 4 | _Comment=Select your display language and formats 5 | _Keywords=Language;Region;Format; 6 | Icon=applications-system 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=personal 10 | X-Liri-Settings-SymbolicIcon=action/language 11 | -------------------------------------------------------------------------------- /src/modules/updates/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=System Updates 4 | _Comment=Update the operating system 5 | _Keywords=System;Online;Update;Software; 6 | Icon=system-software-update 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=system 10 | X-Liri-Settings-SymbolicIcon=notification/system_update 11 | -------------------------------------------------------------------------------- /src/modules/keyboard/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Keyboard 4 | _Comment=View and change keyboard shortcuts and set your typing preferences 5 | _Keywords=shortcut;repeat;blink; 6 | Icon=input-keyboard 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=hardware 10 | X-Liri-Settings-SymbolicIcon=hardware/keyboard 11 | -------------------------------------------------------------------------------- /src/modules/users/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Users 4 | _Comment=Manage user accounts 5 | _Keywords=User;Users;Me;Account;People;Person;Guest;Admin;Create;Delete;Password 6 | Icon=preferences-system-users 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=system 10 | X-Liri-Settings-SymbolicIcon=social/people 11 | -------------------------------------------------------------------------------- /src/app/io.liri.Settings.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Settings 4 | _GenericName=Settings 5 | _Comment=Manages system settings 6 | Icon=preferences-system 7 | Exec=liri-settings 8 | TryExec=liri-settings 9 | Terminal=false 10 | StartupNotify=true 11 | Categories=Qt;X-Liri;Settings;Core; 12 | OnlyShowIn=X-Liri; 13 | _Keywords=Preferences;Settings; 14 | DBusActivatable=true 15 | -------------------------------------------------------------------------------- /src/modules/appearance/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Appearance 4 | _Comment=Change the appearance of your desktop 5 | _Keywords=Appearance;Style;Background;Wallpaper;Color;Theme;Desktop;Personalize; 6 | Icon=applications-system 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=personal 10 | X-Liri-Settings-SymbolicIcon=image/style 11 | -------------------------------------------------------------------------------- /src/modules/display/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Displays 4 | _Comment=Choose how to use connected monitors and projectors 5 | Icon=preferences-desktop-display 6 | TryExec=liri-settings 7 | Exec=liri-settings display 8 | Categories=Qt;X-Liri;Settings;HardwareSettings; 9 | OnlyShowIn=X-Liri; 10 | X-Liri-Settings-Category=hardware 11 | X-Liri-Settings-SymbolicIcon=hardware/desktop_windows 12 | -------------------------------------------------------------------------------- /src/modules/info/metadata.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | _Name=Details 4 | _Comment=View information about your system 5 | _Keywords=Device;System;Information;Memory;Processor;Version;Default;Application;Preferred;CD;DVD;USB;Audio;Video;Disc;Removable;Media;Autorun; 6 | Icon=applications-system 7 | Categories=Qt;X-Liri;Settings; 8 | OnlyShowIn=X-Liri; 9 | X-Liri-Settings-Category=system 10 | X-Liri-Settings-SymbolicIcon=action/info 11 | -------------------------------------------------------------------------------- /translations/modules/info/info_ar.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ast.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_bg.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_cy.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_he.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_hu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ja.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_kk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ko.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_no.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_pam.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_pt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_sk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_sv.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_cs_CZ.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_da_DK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_hr_HR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ja_JP.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ast_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | 7 | 8 | 9 | Website 10 | 11 | 12 | 13 | Report a bug 14 | 15 | 16 | 17 | Credits 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_id.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versi %1 7 | 8 | 9 | Website 10 | Situs 11 | 12 | 13 | Report a bug 14 | Laporkan kutu 15 | 16 | 17 | Credits 18 | Kredit 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_pl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Wersja %1 7 | 8 | 9 | Website 10 | WWW 11 | 12 | 13 | Report a bug 14 | Zgłoś problem 15 | 16 | 17 | Credits 18 | Autorzy 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_nl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versie %1 7 | 8 | 9 | Website 10 | Website 11 | 12 | 13 | Report a bug 14 | Rapporteer een bug 15 | 16 | 17 | Credits 18 | Credits 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_es.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versión %1 7 | 8 | 9 | Website 10 | Sitio Web 11 | 12 | 13 | Report a bug 14 | Reporta un fallo 15 | 16 | 17 | Credits 18 | Creditos 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versão %1 7 | 8 | 9 | Website 10 | Website 11 | 12 | 13 | Report a bug 14 | Reporte um bug 15 | 16 | 17 | Credits 18 | Créditos 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_ca.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versió %1 7 | 8 | 9 | Website 10 | Pàgina web 11 | 12 | 13 | Report a bug 14 | Informar d'un error 15 | 16 | 17 | Credits 18 | Crèdits 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_el.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Έκδοση %1 7 | 8 | 9 | Website 10 | Ιστοσελίδα 11 | 12 | 13 | Report a bug 14 | Αναφέρετε ένα σφάλμα 15 | 16 | 17 | Credits 18 | Πιστώσεις 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/info/info_es_MX.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | Version %1 6 | Versión %1 7 | 8 | 9 | Website 10 | Sitio web 11 | 12 | 13 | Report a bug 14 | Reportar un error 15 | 16 | 17 | Credits 18 | Creditos 19 | 20 | 21 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ast.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_bg.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_cy.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_he.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_hu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_kk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ko.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_no.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_pam.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_pt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_sk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_sv.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_cs_CZ.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_da_DK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_hr_HR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ja.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | デスクトップ 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | アクセントカラー 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ja_JP.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ast_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_id.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | Desktop 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | Warna aksen 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | Área de trabalho 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ar.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | سطح المكتب 8 | 9 | 10 | 11 | Transparent app shelf 12 | رفوف التطبيق شفافة 13 | 14 | 15 | 16 | Accent color 17 | اللون العام 18 | 19 | 20 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | Settings 2 | ======== 3 | 4 | # Core Developers 5 | 6 | * Pier Luigi Fiorini 7 | * Michael Spencer 8 | 9 | # Contributors 10 | 11 | This is the list of contributors to this code base. 12 | 13 | Names are sorted by number of commits at the time of this writing. 14 | Commit data has been generated with: 15 | 16 | ```sh 17 | git shortlog -s -e -n 18 | ``` 19 | 20 | Commit counts have been removed, since they change pretty frequently. 21 | 22 | Remember to update this file before any release is made, also make sure 23 | a .mailmap file is maintained if committer names and email addresses 24 | change over time. 25 | 26 | * Pier Luigi Fiorini 27 | * Michael Spencer 28 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_es.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | Escritorio 8 | 9 | 10 | 11 | Transparent app shelf 12 | Lista de apps transparente 13 | 14 | 15 | 16 | Accent color 17 | Color de enfasis 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_el.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | Επιφάνεια εργασίας 8 | 9 | 10 | 11 | Transparent app shelf 12 | Διαφανές ράφι εφαρμογής 13 | 14 | 15 | 16 | Accent color 17 | Χρώμα έμφασης 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_es_MX.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Desktop 7 | Escritorio 8 | 9 | 10 | 11 | Transparent app shelf 12 | Plataforma transparente para aplicaciones 13 | 14 | 15 | 16 | Accent color 17 | Acentuar el color 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/modules/users/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | find_package(Libcrypt REQUIRED) 2 | 3 | ecm_add_qml_module(SettingsUsersQmlPlugin 4 | URI Liri.Settings.Users 5 | VERSION 1.0 6 | CLASS_NAME UsersPlugin 7 | NO_GENERATE_PLUGIN_SOURCE 8 | ) 9 | 10 | target_sources(SettingsUsersQmlPlugin 11 | PRIVATE 12 | password.cpp password.h 13 | plugin.cpp 14 | ) 15 | 16 | target_link_libraries(SettingsUsersQmlPlugin 17 | PRIVATE 18 | Qt6::Qml 19 | Qt6::Quick 20 | Libcrypt::Libcrypt 21 | ) 22 | 23 | ecm_finalize_qml_module(SettingsUsersQmlPlugin) 24 | 25 | liri_add_settings_module(Users 26 | CONTENTS 27 | contents/main.qml 28 | contents/PhotoPicker.qml 29 | contents/UserAddDialog.qml 30 | contents/UserListItem.qml 31 | contents/UserPage.qml 32 | ) 33 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_nl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Bureaublad 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | 桌面 8 | 9 | 10 | 11 | Transparent app shelf 12 | 透明APP框架 13 | 14 | 15 | 16 | Accent color 17 | 强调色 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_zh_TW.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | 桌面 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ru.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Рабочий стол 8 | 9 | 10 | 11 | Transparent app shelf 12 | 13 | 14 | 15 | 16 | Accent color 17 | Акцентный цвет 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_fr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Bureau 8 | 9 | 10 | 11 | Transparent app shelf 12 | Transparence 13 | 14 | 15 | 16 | Accent color 17 | Couleur accentuée 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_tr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Masaüstü 8 | 9 | 10 | 11 | Transparent app shelf 12 | Saydam uygulama sergeni 13 | 14 | 15 | 16 | Accent color 17 | Ara renk 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_da.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Skrivebord 8 | 9 | 10 | 11 | Transparent app shelf 12 | Transparent programhylde 13 | 14 | 15 | 16 | Accent color 17 | Accentfarve 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_de.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Schreibtisch 8 | 9 | 10 | 11 | Transparent app shelf 12 | Transparentes App-Regal 13 | 14 | 15 | 16 | Accent color 17 | Akzentfarbe 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_it.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Desktop 8 | 9 | 10 | 11 | Transparent app shelf 12 | Trasparenza barra degli strumenti 13 | 14 | 15 | 16 | Accent color 17 | Tinte unite 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_pl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Pulpit 8 | 9 | 10 | 11 | Transparent app shelf 12 | Przezroczysta półka aplikacji 13 | 14 | 15 | 16 | Accent color 17 | Kolor akcentujący 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_lt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Darbalaukis 8 | 9 | 10 | 11 | Transparent app shelf 12 | Permatoma programų lentyna 13 | 14 | 15 | 16 | Accent color 17 | Akcentuojama spalva 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | main 6 | 7 | 8 | Desktop 9 | 10 | 11 | 12 | 13 | Transparent app shelf 14 | 15 | 16 | 17 | 18 | Accent color 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_ca.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Escriptori 8 | 9 | 10 | 11 | Transparent app shelf 12 | Plataforma d'aplicació transparent 13 | 14 | 15 | 16 | Accent color 17 | Color de l'accent 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_es_419.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Escritorio 8 | 9 | 10 | 11 | Transparent app shelf 12 | Estante de aplicación transparente 13 | 14 | 15 | 16 | Accent color 17 | Acentuar el color 18 | 19 | 20 | -------------------------------------------------------------------------------- /translations/modules/appearance/appearance_pt_BR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | 6 | Desktop 7 | Área de trabalho 8 | 9 | 10 | 11 | Transparent app shelf 12 | Prateleira de aplicativos transparente 13 | 14 | 15 | 16 | Accent color 17 | Cor de destaque 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/modules/display/data/io.liri.Shell.OutputManagement1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/modules/background/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_qml_module(SettingsBackgroundQmlPlugin 2 | URI Liri.Settings.Background 3 | VERSION 1.0 4 | CLASS_NAME BackgroundCorePlugin 5 | NO_GENERATE_PLUGIN_SOURCE 6 | ) 7 | 8 | target_sources(SettingsBackgroundQmlPlugin 9 | PRIVATE 10 | backgroundsmodel.cpp backgroundsmodel.h 11 | colorsmodel.cpp colorsmodel.h 12 | plugin.cpp 13 | ) 14 | 15 | target_link_libraries(SettingsBackgroundQmlPlugin 16 | PRIVATE 17 | Qt6::Qml 18 | Qt6::Quick 19 | ) 20 | 21 | ecm_finalize_qml_module(SettingsBackgroundQmlPlugin) 22 | 23 | liri_add_settings_module(Background 24 | CONTENTS 25 | contents/ColorButton.qml 26 | contents/GradientPage.qml 27 | contents/main.qml 28 | contents/SelectorPage.qml 29 | contents/Selector.qml 30 | contents/SolidPage.qml 31 | contents/WallpaperPage.qml 32 | ) 33 | -------------------------------------------------------------------------------- /cmake/FindLibcrypt.cmake: -------------------------------------------------------------------------------- 1 | find_path(Libcrypt_INCLUDE_DIR NAMES "crypt.h") 2 | find_library(Libcrypt_LIBRARY NAMES "crypt") 3 | 4 | include(FindPackageHandleStandardArgs) 5 | 6 | find_package_handle_standard_args( 7 | Libcrypt 8 | FOUND_VAR 9 | Libcrypt_FOUND 10 | REQUIRED_VARS 11 | Libcrypt_LIBRARY 12 | Libcrypt_INCLUDE_DIR 13 | ) 14 | 15 | if(Libcrypt_FOUND AND NOT TARGET Libcrypt::Libcrypt) 16 | add_library(Libcrypt::Libcrypt UNKNOWN IMPORTED) 17 | set_target_properties(Libcrypt::Libcrypt PROPERTIES 18 | IMPORTED_LOCATION "${Libcrypt_LIBRARY}" 19 | INTERFACE_COMPILE_OPTIONS "${Libcrypt_DEFINITIONS}" 20 | INTERFACE_INCLUDE_DIRECTORIES "${Libcrypt_INCLUDE_DIR}" 21 | ) 22 | endif() 23 | 24 | mark_as_advanced(Libcrypt_LIBRARY Libcrypt_INCLUDE_DIR) 25 | 26 | # Compatibility 27 | set(Libcrypt_LIBRARIES ${Libcrypt_LIBRARY}) 28 | set(Libcrypt_INCLUDE_DIRS ${Libcrypt_INCLUDE_DIR}) 29 | -------------------------------------------------------------------------------- /src/modules/keyboard/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_qml_module(SettingsKeyboardQmlPlugin 2 | URI Liri.Settings.Keyboard 3 | VERSION 1.0 4 | CLASS_NAME KeyboardPlugin 5 | NO_GENERATE_PLUGIN_SOURCE 6 | ) 7 | 8 | target_sources(SettingsKeyboardQmlPlugin 9 | PRIVATE 10 | keyboarddata.cpp keyboarddata.h 11 | keyboardlayout.cpp keyboardlayout.h 12 | keyboardlayoutvariant.cpp keyboardlayoutvariant.h 13 | keyboardmodel.cpp keyboardmodel.h 14 | keybordlayoutsmodel.cpp keybordlayoutsmodel.h 15 | plugin.cpp 16 | ) 17 | 18 | target_link_libraries(SettingsKeyboardQmlPlugin 19 | PRIVATE 20 | Qt6::Qml 21 | Qt6::Quick 22 | ) 23 | 24 | ecm_finalize_qml_module(SettingsKeyboardQmlPlugin) 25 | 26 | liri_add_settings_module(Keyboard 27 | CONTENTS 28 | contents/AddDialog.qml 29 | contents/LayoutPage.qml 30 | contents/main.qml 31 | contents/TypingPage.qml 32 | ) 33 | -------------------------------------------------------------------------------- /translations/modules/display/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Displays" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "Choose how to use connected monitors and projectors" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /translations/modules/background/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Background" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "Change your background image to a wallpaper, photo or solid color" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /src/modules/locale/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_qml_module(SettingsLocaleQmlPlugin 2 | URI Liri.Settings.Locale 3 | VERSION 1.0 4 | CLASS_NAME LocaleSettingsPlugin 5 | NO_GENERATE_PLUGIN_SOURCE 6 | ) 7 | 8 | target_sources(SettingsLocaleQmlPlugin 9 | PRIVATE 10 | localefiltermodel.cpp localefiltermodel.h 11 | localemanager.cpp localemanager.h 12 | localemodel.cpp localemodel.h 13 | plugin.cpp 14 | systemlocale.cpp systemlocale.h 15 | ) 16 | 17 | target_link_libraries(SettingsLocaleQmlPlugin 18 | PRIVATE 19 | Qt6::Concurrent 20 | Qt6::DBus 21 | Qt6::Qml 22 | Qt6::Quick 23 | ) 24 | 25 | ecm_finalize_qml_module(SettingsLocaleQmlPlugin) 26 | 27 | liri_add_settings_module(Locale 28 | CONTENTS 29 | contents/main.qml 30 | contents/FormatsDialog.qml 31 | contents/LanguageDialog.qml 32 | contents/RadioIndicator.qml 33 | contents/RegionDelegate.qml 34 | ) 35 | -------------------------------------------------------------------------------- /src/modules/desktop/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "HawaiiSettings": { 3 | "Category": "Personal" 4 | }, 5 | "PluginInfo": { 6 | "Authors": [ 7 | "Pier Luigi Fiorini " 8 | ], 9 | "Contact": { 10 | "Email": "pierluigi.fiorini@gmail.com", 11 | "Website": "http://www.maui-project.org" 12 | }, 13 | "Description": { 14 | "en": { 15 | "Comment": "Configure desktop preferences", 16 | "Keywords": [ 17 | "Desktop", 18 | "Launcher", 19 | "Hot", 20 | "Corner" 21 | ], 22 | "Name": "Desktop" 23 | } 24 | }, 25 | "Icon": "preferences-desktop", 26 | "Implements": "HawaiiSettings", 27 | "InternalName": "io.liri.preferences.desktop", 28 | "License": "GPLv2+", 29 | "MainScript": "ui/Preflet.qml" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /translations/app/app_zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | "%1" 读取错误 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | 设置 14 | 15 | 16 | Personal 17 | 个人 18 | 19 | 20 | Hardware 21 | 硬件 22 | 23 | 24 | System 25 | 系统 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | 设置 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/modules/updates/contents/DetailsPage.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2021 Pier Luigi Fiorini 2 | // 3 | // SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | import QtQuick 6 | import QtQuick.Controls 7 | import Fluid.Controls as FluidControls 8 | import Liri.Settings 9 | 10 | ModulePage { 11 | title: qsTr("System Updates | Details") 12 | 13 | ScrollView { 14 | anchors.fill: parent 15 | clip: true 16 | 17 | ListView { 18 | model: softwareUpdate.model 19 | // FIXME: Section delegate is transparent su the label positioning doesn't work 20 | //section.labelPositioning: ViewSection.CurrentLabelAtStart 21 | section.property: "category" 22 | section.delegate: FluidControls.Subheader { 23 | text: section 24 | } 25 | delegate: FluidControls.ListItem { 26 | text: model.name 27 | subText: model.description 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /translations/app/app_zh_TW.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | "%1" 讀取錯誤 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | 14 | 15 | 16 | Personal 17 | 18 | 19 | 20 | Hardware 21 | 22 | 23 | 24 | System 25 | 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | 設定 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ja.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Japanese (https://www.transifex.com/lirios/teams/71982/ja/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ja\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ko.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Korean (https://www.transifex.com/lirios/teams/71982/ko/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ko\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_ca.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Error carregant %1 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | 14 | 15 | 16 | Personal 17 | 18 | 19 | 20 | Hardware 21 | 22 | 23 | 24 | System 25 | 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Configuració 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ca.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Catalan (https://www.transifex.com/lirios/teams/71982/ca/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ca\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_el.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Greek (https://www.transifex.com/lirios/teams/71982/el/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: el\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_es.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Spanish (https://www.transifex.com/lirios/teams/71982/es/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_fr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: French (https://www.transifex.com/lirios/teams/71982/fr/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_id.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Indonesian (https://www.transifex.com/lirios/teams/71982/id/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: id\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_kk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Kazakh (https://www.transifex.com/lirios/teams/71982/kk/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: kk\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_nl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Dutch (https://www.transifex.com/lirios/teams/71982/nl/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: nl\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_sv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Swedish (https://www.transifex.com/lirios/teams/71982/sv/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: sv\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_pl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Błąd ładowania "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | 14 | 15 | 16 | Personal 17 | 18 | 19 | 20 | Hardware 21 | 22 | 23 | 24 | System 25 | 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Ustawienia 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ast.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Asturian (https://www.transifex.com/lirios/teams/71982/ast/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ast\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_bg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Bulgarian (https://www.transifex.com/lirios/teams/71982/bg/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: bg\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_hu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Hungarian (https://www.transifex.com/lirios/teams/71982/hu/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: hu\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_no.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Norwegian (https://www.transifex.com/lirios/teams/71982/no/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: no\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_pt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Portuguese (https://www.transifex.com/lirios/teams/71982/pt/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pt\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /src/modules/updates/plugin.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2021 Pier Luigi Fiorini 2 | // 3 | // SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | #include 6 | #include 7 | 8 | #include "rpmdiffmodel.h" 9 | #include "softwareupdate.h" 10 | #include "transaction.h" 11 | 12 | class UpdatesPlugin : public QQmlExtensionPlugin 13 | { 14 | Q_OBJECT 15 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface/1.0") 16 | public: 17 | void registerTypes(const char *uri) override 18 | { 19 | Q_ASSERT(strcmp(uri, "Liri.Settings.Updates") == 0); 20 | 21 | // @uri Liri.Settings.Updates 22 | qmlRegisterType(uri, 1, 0, "RpmDiffModel"); 23 | qmlRegisterType(uri, 1, 0, "SoftwareUpdate"); 24 | qmlRegisterUncreatableType(uri, 1, 0, "Transaction", 25 | QStringLiteral("Cannot register type Transaction")); 26 | } 27 | }; 28 | 29 | #include "plugin.moc" 30 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_pam.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Kapampangan (https://www.transifex.com/lirios/teams/71982/pam/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pam\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_tr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | "%1" yüklenirken hata 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Ayarlar 14 | 15 | 16 | Personal 17 | Kişisel 18 | 19 | 20 | Hardware 21 | Donanım 22 | 23 | 24 | System 25 | Sistem 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Ayarlar 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_id.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Indonesian (https://www.transifex.com/lirios/teams/71982/id/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: id\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ja.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Japanese (https://www.transifex.com/lirios/teams/71982/ja/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ja\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ko.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Korean (https://www.transifex.com/lirios/teams/71982/ko/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ko\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ja_JP.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Japanese (Japan) (https://www.transifex.com/lirios/teams/71982/ja_JP/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ja_JP\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_zh_TW.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Chinese (Taiwan) (https://www.transifex.com/lirios/teams/71982/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 | "Language: zh_TW\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ca.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Catalan (https://www.transifex.com/lirios/teams/71982/ca/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ca\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_el.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Greek (https://www.transifex.com/lirios/teams/71982/el/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: el\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_es.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Spanish (https://www.transifex.com/lirios/teams/71982/es/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_fr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: French (https://www.transifex.com/lirios/teams/71982/fr/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: fr\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_kk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Kazakh (https://www.transifex.com/lirios/teams/71982/kk/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: kk\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_nl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Dutch (https://www.transifex.com/lirios/teams/71982/nl/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: nl\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_sv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Swedish (https://www.transifex.com/lirios/teams/71982/sv/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: sv\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ca_ES.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Catalan (Spain) (https://www.transifex.com/lirios/teams/71982/ca_ES/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ca_ES\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_da_DK.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Danish (Denmark) (https://www.transifex.com/lirios/teams/71982/da_DK/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: da_DK\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_es_MX.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Spanish (Mexico) (https://www.transifex.com/lirios/teams/71982/es_MX/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_MX\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_de.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Fehler beim Laden von „%1“ 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Einstellungen 14 | 15 | 16 | Personal 17 | Persönlich 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | System 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Einstellungen 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_fr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Erreur de chargement "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Paramètres 14 | 15 | 16 | Personal 17 | Personnel 18 | 19 | 20 | Hardware 21 | Matériel 22 | 23 | 24 | System 25 | Système 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Paramètres 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_ru.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Ошибка при загрузке "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Настройки 14 | 15 | 16 | Personal 17 | Персональное 18 | 19 | 20 | Hardware 21 | 22 | 23 | 24 | System 25 | Система 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Настройки 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ast.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Asturian (https://www.transifex.com/lirios/teams/71982/ast/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ast\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_bg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Bulgarian (https://www.transifex.com/lirios/teams/71982/bg/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: bg\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_hu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Hungarian (https://www.transifex.com/lirios/teams/71982/hu/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: hu\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_no.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Norwegian (https://www.transifex.com/lirios/teams/71982/no/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: no\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_pt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Portuguese (https://www.transifex.com/lirios/teams/71982/pt/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pt\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ast_ES.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Asturian (Spain) (https://www.transifex.com/lirios/teams/71982/ast_ES/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ast_ES\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_pt_PT.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Portuguese (Portugal) (https://www.transifex.com/lirios/teams/71982/pt_PT/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pt_PT\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_es_419.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Error al cargar "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Configuración 14 | 15 | 16 | Personal 17 | Personal 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | Sistema 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Sistema 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_lt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Klaida įkeliant "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Nustatymai 14 | 15 | 16 | Personal 17 | Asmeniniai 18 | 19 | 20 | Hardware 21 | Aparatinė įranga 22 | 23 | 24 | System 25 | Sistema 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Nustatymai 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ja_JP.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Japanese (Japan) (https://www.transifex.com/lirios/teams/71982/ja_JP/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ja_JP\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_pam.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Kapampangan (https://www.transifex.com/lirios/teams/71982/pam/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pam\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_zh_TW.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Chinese (Taiwan) (https://www.transifex.com/lirios/teams/71982/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 | "Language: zh_TW\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_es_419.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/lirios/teams/71982/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_da.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Fejl ved indlæsning af "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Indstillinger 14 | 15 | 16 | Personal 17 | Personlig 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | System 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Indstillinger 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_it.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Errore nel caricamento di "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Impostazioni 14 | 15 | 16 | Personal 17 | Personale 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | Sistema 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Impostazioni 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_nl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Fout bij het laden van "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Instellingen 14 | 15 | 16 | Personal 17 | Persoonlijk 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | Systeem 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Instellingen 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/app/app_pt_BR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | ErrorView 4 | 5 | Error loading "%1" 6 | Erro ao carregar "%1" 7 | 8 | 9 | 10 | SettingsPage 11 | 12 | Settings 13 | Configurações 14 | 15 | 16 | Personal 17 | Pessoal 18 | 19 | 20 | Hardware 21 | Hardware 22 | 23 | 24 | System 25 | Sistema 26 | 27 | 28 | 29 | main 30 | 31 | Settings 32 | Configurações 33 | 34 | 35 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ast_ES.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Asturian (Spain) (https://www.transifex.com/lirios/teams/71982/ast_ES/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ast_ES\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ca_ES.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Catalan (Spain) (https://www.transifex.com/lirios/teams/71982/ca_ES/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ca_ES\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_da_DK.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Danish (Denmark) (https://www.transifex.com/lirios/teams/71982/da_DK/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: da_DK\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_es_MX.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Spanish (Mexico) (https://www.transifex.com/lirios/teams/71982/es_MX/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_MX\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_pt_PT.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Portuguese (Portugal) (https://www.transifex.com/lirios/teams/71982/pt_PT/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pt_PT\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_cy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Welsh (https://www.transifex.com/lirios/teams/71982/cy/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: cy\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_es_419.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Spanish (Latin America) (https://www.transifex.com/lirios/teams/71982/es_419/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: es_419\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /src/imports/settings/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | find_package(Polkit REQUIRED) 2 | 3 | if(NOT TARGET Liri::Xdg) 4 | find_package(Liri1Xdg REQUIRED) 5 | endif() 6 | 7 | ecm_add_qml_module(SettingsQmlPlugin 8 | URI Liri.Settings 9 | VERSION 1.0 10 | CLASS_NAME SettingsPlugin 11 | GENERATE_PLUGIN_SOURCE 12 | DEPENDENCIES QtQuick 13 | ) 14 | 15 | target_compile_definitions(SettingsQmlPlugin 16 | PRIVATE 17 | -DQT_NO_KEYWORDS 18 | ) 19 | 20 | target_sources(SettingsQmlPlugin 21 | PRIVATE 22 | authorizedaction.cpp authorizedaction.h 23 | module.cpp module.h 24 | modulesmodel.cpp modulesmodel.h 25 | ) 26 | 27 | ecm_target_qml_sources(SettingsQmlPlugin 28 | SOURCES 29 | qml/ModuleContainer.qml 30 | qml/ModulePage.qml 31 | qml/ModulePane.qml 32 | ) 33 | 34 | target_link_libraries(SettingsQmlPlugin 35 | PRIVATE 36 | Qt6::Core 37 | Qt6::Gui 38 | Qt6::Qml 39 | Qt6::QmlIntegration 40 | PkgConfig::Polkit 41 | Liri::Xdg 42 | ) 43 | 44 | ecm_finalize_qml_module(SettingsQmlPlugin) 45 | -------------------------------------------------------------------------------- /src/modules/display/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_qml_module(DisplayQmlPlugin 2 | URI Liri.Settings.Display 3 | VERSION 1.0 4 | CLASS_NAME DisplayPlugin 5 | NO_GENERATE_PLUGIN_SOURCE 6 | ) 7 | 8 | set_source_files_properties( 9 | data/io.liri.Shell.OutputDevice1.xml 10 | PROPERTIES INCLUDE outputdevice.h 11 | ) 12 | 13 | qt6_add_dbus_interfaces( 14 | _dbus_sources 15 | data/io.liri.Shell.OutputConfiguration1.xml 16 | data/io.liri.Shell.OutputDevice1.xml 17 | data/io.liri.Shell.OutputManagement1.xml 18 | ) 19 | 20 | target_sources(DisplayQmlPlugin 21 | PRIVATE 22 | outputdevice.h 23 | outputsmodel.cpp outputsmodel.h 24 | plugin.cpp 25 | ${_dbus_sources} 26 | ) 27 | 28 | target_link_libraries(DisplayQmlPlugin 29 | PRIVATE 30 | Qt6::DBus 31 | Qt6::Qml 32 | Qt6::Quick 33 | ) 34 | 35 | ecm_finalize_qml_module(DisplayQmlPlugin) 36 | 37 | liri_add_settings_module(Display 38 | CONTENTS 39 | contents/DetailsDialog.qml 40 | contents/main.qml 41 | contents/OutputPreview.qml 42 | ) 43 | -------------------------------------------------------------------------------- /src/modules/updates/contents/UpdatesAvailable.qml: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2021 Pier Luigi Fiorini 2 | // 3 | // SPDX-License-Identifier: GPL-3.0-or-later 4 | 5 | import QtQuick 6 | import QtQuick.Controls 7 | import Fluid.Controls as FluidControls 8 | import Liri.Settings 9 | import Liri.Settings.Updates 10 | 11 | ModuleContainer { 12 | title: qsTr("Updates available") 13 | width: page.width 14 | 15 | FluidControls.ListItem { 16 | icon.source: FluidControls.Utils.iconUrl("device/system_security_update_warning") 17 | text: qsTr("Version %1").arg(softwareUpdate.version) 18 | subText: softwareUpdate.information 19 | rightItem: Button { 20 | flat: true 21 | text: qsTr("Update") 22 | 23 | onClicked: { 24 | let transaction = softwareUpdate.upgrade(); 25 | if (transaction) 26 | transaction.start(); 27 | } 28 | } 29 | onClicked: { 30 | window.pageStack.push(detailsPage); 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_cy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Welsh (https://www.transifex.com/lirios/teams/71982/cy/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: cy\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/locale/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Region & Language" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "Select your display language and formats" 29 | msgstr "" 30 | 31 | #. (desktop-to-pot) "Keywords" entry 32 | #: metadata.desktop.in:5 33 | msgctxt "Keywords entry" 34 | msgid "Language;Region;Format;" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /translations/modules/display/display_ja.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 解像度: 18 | 19 | 20 | 21 | Cancel 22 | キャンセル 23 | 24 | 25 | 26 | Apply 27 | 適用 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_sk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Slovak (https://www.transifex.com/lirios/teams/71982/sk/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: sk\n" 18 | "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/display_ar.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_bg.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_cy.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_he.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_hu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_kk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_ko.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_no.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_pt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_sk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_sv.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/users/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Users" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "Manage user accounts" 29 | msgstr "" 30 | 31 | #. (desktop-to-pot) "Keywords" entry 32 | #: metadata.desktop.in:5 33 | msgctxt "Keywords entry" 34 | msgid "User;Users;Me;Account;People;Person;Guest;Admin;Create;Delete;Password" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /translations/app/app.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ErrorView 6 | 7 | Error loading "%1" 8 | 9 | 10 | 11 | 12 | SettingsPage 13 | 14 | Settings 15 | 16 | 17 | 18 | Personal 19 | 20 | 21 | 22 | Hardware 23 | 24 | 25 | 26 | System 27 | 28 | 29 | 30 | 31 | main 32 | 33 | Settings 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /translations/modules/display/display_ast.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_cs_CZ.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_da_DK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_hr_HR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_ja_JP.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_pam.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_ar.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Arabic (https://www.transifex.com/lirios/teams/71982/ar/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ar\n" 18 | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/info/info_zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | Operating System 6 | 操作系统 7 | 8 | 9 | You are now a developer! 10 | 你目前为开发人员! 11 | 12 | 13 | You are now %1 steps from becoming a developer 14 | 还差 %1 部成为开发人员 15 | 16 | 17 | Open Web site... 18 | 打开网站... 19 | 20 | 21 | Obtain Support... 22 | 获得支持... 23 | 24 | 25 | Report a Bug... 26 | 汇报Bug... 27 | 28 | 29 | Privacy Policy... 30 | 隐私政策... 31 | 32 | 33 | -------------------------------------------------------------------------------- /translations/modules/keyboard/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Keyboard" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "View and change keyboard shortcuts and set your typing preferences" 29 | msgstr "" 30 | 31 | #. (desktop-to-pot) "Keywords" entry 32 | #: metadata.desktop.in:5 33 | msgctxt "Keywords entry" 34 | msgid "shortcut;repeat;blink;" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /translations/modules/display/display_ast_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | 8 | 9 | 10 | 11 | Aspect Ratio: 12 | 13 | 14 | 15 | 16 | Resolution: 17 | 18 | 19 | 20 | 21 | Cancel 22 | 23 | 24 | 25 | 26 | Apply 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/info/info_zh_TW.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | main 4 | 5 | Operating System 6 | 作業系統 7 | 8 | 9 | You are now a developer! 10 | 你現在是個開發者了! 11 | 12 | 13 | You are now %1 steps from becoming a developer 14 | 再按 %1 次就可以成為開發者了 15 | 16 | 17 | Open Web site... 18 | 開啟網頁... 19 | 20 | 21 | Obtain Support... 22 | 需要協助... 23 | 24 | 25 | Report a Bug... 26 | 回報錯誤... 27 | 28 | 29 | Privacy Policy... 30 | 隱私權政策... 31 | 32 | 33 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_sk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Slovak (https://www.transifex.com/lirios/teams/71982/sk/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: sk\n" 18 | "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_he.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Hebrew (https://www.transifex.com/lirios/teams/71982/he/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: he\n" 18 | "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_hr_HR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Croatian (Croatia) (https://www.transifex.com/lirios/teams/71982/hr_HR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: hr_HR\n" 18 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/display_id.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | Ukuran: 8 | 9 | 10 | 11 | Aspect Ratio: 12 | Rasio Aspek: 13 | 14 | 15 | 16 | Resolution: 17 | Resolusi: 18 | 19 | 20 | 21 | Cancel 22 | Batalkan 23 | 24 | 25 | 26 | Apply 27 | Gunakan 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/appearance/metadata.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #. (desktop-to-pot) "Name" entry 20 | #: metadata.desktop.in:3 21 | msgctxt "Name entry" 22 | msgid "Appearance" 23 | msgstr "" 24 | 25 | #. (desktop-to-pot) "Comment" entry 26 | #: metadata.desktop.in:4 27 | msgctxt "Comment entry" 28 | msgid "Change the appearance of your desktop" 29 | msgstr "" 30 | 31 | #. (desktop-to-pot) "Keywords" entry 32 | #: metadata.desktop.in:5 33 | msgctxt "Keywords entry" 34 | msgid "Appearance;Style;Background;Wallpaper;Color;Theme;Desktop;Personalize;" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_ar.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Arabic (https://www.transifex.com/lirios/teams/71982/ar/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: ar\n" 18 | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_cs_CZ.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Czech (Czech Republic) (https://www.transifex.com/lirios/teams/71982/cs_CZ/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: cs_CZ\n" 18 | "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/display_el.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | Μέγεθος: 8 | 9 | 10 | 11 | Aspect Ratio: 12 | Αναλογία απεικόνισης: 13 | 14 | 15 | 16 | Resolution: 17 | Ανάλυση 18 | 19 | 20 | 21 | Cancel 22 | Ματαίωση 23 | 24 | 25 | 26 | Apply 27 | Εφαρμογή 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_es.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | Tamaño: 8 | 9 | 10 | 11 | Aspect Ratio: 12 | Relación de aspecto: 13 | 14 | 15 | 16 | Resolution: 17 | Resolución: 18 | 19 | 20 | 21 | Cancel 22 | Cancelar 23 | 24 | 25 | 26 | Apply 27 | Aplicar 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/display_pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | Tamanho: 8 | 9 | 10 | 11 | Aspect Ratio: 12 | Rácio de aspecto: 13 | 14 | 15 | 16 | Resolution: 17 | Resolução: 18 | 19 | 20 | 21 | Cancel 22 | Cancelar 23 | 24 | 25 | 26 | Apply 27 | Aplicar 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/modules/display/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Displays 4 | Name[da]=Skærme 5 | Name[de]=Bildschirme 6 | Name[it]=Schermi 7 | Name[lt]=Ekranai 8 | Name[pt_BR]=Telas 9 | Name[tr]=Ekranlar 10 | Name[zh_CN]=显示器 11 | Comment=Choose how to use connected monitors and projectors 12 | Comment[da]=Vælg hvordan tilsluttede skærme og projektorer skal bruges 13 | Comment[de]=Wählen Sie aus, wie Sie angeschlossene Monitore und Projektoren verwenden möchten 14 | Comment[it]=Scegli come usare gli schermi ed i proiettori collegati 15 | Comment[lt]=Pasirinkti kaip naudoti prijungtus monitorius ir projektorius 16 | Comment[pt_BR]=Escolha como usar os monitores e projetores conectados 17 | Comment[ru]=Выберите, как использовать подключенные мониторы и проекторы 18 | Comment[tr]=Bağlı monitörlerin ve projektörlerin nasıl kullanılacağını seçin 19 | Comment[zh_CN]=你将怎样使用显示器和投影设备? 20 | Icon=preferences-desktop-display 21 | TryExec=liri-settings 22 | Exec=liri-settings display 23 | Categories=Qt;X-Liri;Settings;HardwareSettings; 24 | OnlyShowIn=X-Liri; 25 | X-Liri-Settings-Category=hardware 26 | X-Liri-Settings-SymbolicIcon=hardware/desktop_windows 27 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_he.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Hebrew (https://www.transifex.com/lirios/teams/71982/he/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: he\n" 18 | "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_hr_HR.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Croatian (Croatia) (https://www.transifex.com/lirios/teams/71982/hr_HR/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: hr_HR\n" 18 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/modules/display/display_es_MX.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preflet 4 | 5 | 6 | Size: 7 | Tamaño: 8 | 9 | 10 | 11 | Aspect Ratio: 12 | Relación de aspecto: 13 | 14 | 15 | 16 | Resolution: 17 | Resolución: 18 | 19 | 20 | 21 | Cancel 22 | Cancelar 23 | 24 | 25 | 26 | Apply 27 | Aplicar 28 | 29 | 30 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_da.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # scootergrisen, 2020 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 15 | "Last-Translator: scootergrisen, 2020\n" 16 | "Language-Team: Danish (https://www.transifex.com/lirios/teams/71982/da/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: da\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #. (desktop-to-pot) "Name" entry 24 | #: metadata.desktop.in:3 25 | msgctxt "Name entry" 26 | msgid "Displays" 27 | msgstr "Skærme" 28 | 29 | #. (desktop-to-pot) "Comment" entry 30 | #: metadata.desktop.in:4 31 | msgctxt "Comment entry" 32 | msgid "Choose how to use connected monitors and projectors" 33 | msgstr "Vælg hvordan tilsluttede skærme og projektorer skal bruges" 34 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_it.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Man from Mars, 2020 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 15 | "Last-Translator: Man from Mars, 2020\n" 16 | "Language-Team: Italian (https://www.transifex.com/lirios/teams/71982/it/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: it\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #. (desktop-to-pot) "Name" entry 24 | #: metadata.desktop.in:3 25 | msgctxt "Name entry" 26 | msgid "Displays" 27 | msgstr "Schermi" 28 | 29 | #. (desktop-to-pot) "Comment" entry 30 | #: metadata.desktop.in:4 31 | msgctxt "Comment entry" 32 | msgid "Choose how to use connected monitors and projectors" 33 | msgstr "Scegli come usare gli schermi ed i proiettori collegati" 34 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_cs_CZ.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 01:07+0200\n" 12 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 13 | "Language-Team: Czech (Czech Republic) (https://www.transifex.com/lirios/teams/71982/cs_CZ/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: cs_CZ\n" 18 | "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Background" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Change your background image to a wallpaper, photo or solid color" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /src/modules/background/metadata.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Background 4 | Name[da]=Baggrund 5 | Name[de]=Hintergrund 6 | Name[it]=Sfondo 7 | Name[lt]=Fonas 8 | Name[pt_BR]=Plano de fundo 9 | Name[ru]=Фон 10 | Name[tr]=Arka Plan 11 | Name[zh_CN]=背景 12 | Comment=Change your background image to a wallpaper, photo or solid color 13 | Comment[da]=Skift dit baggrundsbillede til et tapet, billede eller ensfarvet farve 14 | Comment[de]=Ändern Sie Ihren Hintergrund in ein Hintergrundbild, ein Foto oder eine Volltonfarbe 15 | Comment[it]=Cambia l'immagine di sfondo con un wallpaper, una foto o un colore 16 | Comment[lt]=Keisti fono paveikslą į darbalaukio foną, nuotrauką ar vientisą spalvą 17 | Comment[pt_BR]=Altere seu plano de fundo para uma imagem, fotografia ou cor sólida 18 | Comment[ru]=Измените изображение фона на обои, фото или сплошной цвет 19 | Comment[tr]=Arka plan resminizi duvar kağıdına, fotoğrafa veya düz renge çevirin 20 | Comment[zh_CN]=将壁纸设置为一张图片或者纯色。 21 | Icon=preferences-desktop-wallpaper 22 | Categories=Qt;X-Liri;Settings; 23 | OnlyShowIn=X-Liri; 24 | X-Liri-Settings-Category=personal 25 | X-Liri-Settings-SymbolicIcon=image/color_lens 26 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_zh_CN.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Jack Works , 2020 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 15 | "Last-Translator: Jack Works , 2020\n" 16 | "Language-Team: Chinese (China) (https://www.transifex.com/lirios/teams/71982/zh_CN/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zh_CN\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #. (desktop-to-pot) "Name" entry 24 | #: metadata.desktop.in:3 25 | msgctxt "Name entry" 26 | msgid "Displays" 27 | msgstr "显示器" 28 | 29 | #. (desktop-to-pot) "Comment" entry 30 | #: metadata.desktop.in:4 31 | msgctxt "Comment entry" 32 | msgid "Choose how to use connected monitors and projectors" 33 | msgstr "你将怎样使用显示器和投影设备?" 34 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_it.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Man from Mars, 2020 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 15 | "Last-Translator: Man from Mars, 2020\n" 16 | "Language-Team: Italian (https://www.transifex.com/lirios/teams/71982/it/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: it\n" 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 22 | 23 | #. (desktop-to-pot) "Name" entry 24 | #: metadata.desktop.in:3 25 | msgctxt "Name entry" 26 | msgid "Background" 27 | msgstr "Sfondo" 28 | 29 | #. (desktop-to-pot) "Comment" entry 30 | #: metadata.desktop.in:4 31 | msgctxt "Comment entry" 32 | msgid "Change your background image to a wallpaper, photo or solid color" 33 | msgstr "Cambia l'immagine di sfondo con un wallpaper, una foto o un colore" 34 | -------------------------------------------------------------------------------- /translations/modules/background/metadata_zh_CN.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Jack Works , 2020 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: PACKAGE VERSION\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "PO-Revision-Date: 2020-05-16 00:34+0000\n" 15 | "Last-Translator: Jack Works , 2020\n" 16 | "Language-Team: Chinese (China) (https://www.transifex.com/lirios/teams/71982/zh_CN/)\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Language: zh_CN\n" 21 | "Plural-Forms: nplurals=1; plural=0;\n" 22 | 23 | #. (desktop-to-pot) "Name" entry 24 | #: metadata.desktop.in:3 25 | msgctxt "Name entry" 26 | msgid "Background" 27 | msgstr "背景" 28 | 29 | #. (desktop-to-pot) "Comment" entry 30 | #: metadata.desktop.in:4 31 | msgctxt "Comment entry" 32 | msgid "Change your background image to a wallpaper, photo or solid color" 33 | msgstr "将壁纸设置为一张图片或者纯色。" 34 | -------------------------------------------------------------------------------- /translations/modules/display/metadata_pl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-05-16 12:53+0200\n" 12 | "PO-Revision-Date: 2020-05-16 10:51+0000\n" 13 | "Language-Team: Polish (https://www.transifex.com/lirios/teams/71982/pl/)\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Language: pl\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" 19 | 20 | #. (desktop-to-pot) "Name" entry 21 | #: metadata.desktop.in:3 22 | msgctxt "Name entry" 23 | msgid "Displays" 24 | msgstr "" 25 | 26 | #. (desktop-to-pot) "Comment" entry 27 | #: metadata.desktop.in:4 28 | msgctxt "Comment entry" 29 | msgid "Choose how to use connected monitors and projectors" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /translations/app/app_bg.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_cy.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_he.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_hu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_kk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_no.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_pt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /translations/app/app_sk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginsModel 4 | 5 | Personal 6 | 7 | 8 | 9 | Hardware 10 | 11 | 12 | 13 | System 14 | 15 | 16 | 17 | 18 | main 19 | 20 | System Preferences 21 | 22 | 23 | 24 | Keywords 25 | 26 | 27 | 28 | Personal 29 | 30 | 31 | 32 | Hardware 33 | 34 | 35 | 36 | System 37 | 38 | 39 | 40 | --------------------------------------------------------------------------------