├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── COPYING ├── README.md ├── data ├── applications.gresource.xml ├── applications.metainfo.xml.in ├── background.svg ├── icons │ ├── 32.svg │ └── 48.svg ├── meson.build ├── screenshot-defaults.png ├── screenshot-permissions.png ├── screenshot-startup.png ├── startup-32.svg └── startup-48.svg ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── aa.po │ ├── ab.po │ ├── ae.po │ ├── af.po │ ├── ak.po │ ├── am.po │ ├── an.po │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── az.po │ ├── ba.po │ ├── be.po │ ├── bg.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bn.po │ ├── bo.po │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── ce.po │ ├── ch.po │ ├── ckb.po │ ├── co.po │ ├── cr.po │ ├── cs.po │ ├── cu.po │ ├── cv.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── el.po │ ├── en_AU.po │ ├── en_CA.po │ ├── en_GB.po │ ├── eo.po │ ├── es.po │ ├── et.po │ ├── eu.po │ ├── extra.pot │ ├── fa.po │ ├── ff.po │ ├── fi.po │ ├── fj.po │ ├── fo.po │ ├── fr.po │ ├── fr_CA.po │ ├── fy.po │ ├── ga.po │ ├── gd.po │ ├── gl.po │ ├── gn.po │ ├── gu.po │ ├── gv.po │ ├── ha.po │ ├── he.po │ ├── hi.po │ ├── ho.po │ ├── hr.po │ ├── ht.po │ ├── hu.po │ ├── hy.po │ ├── hz.po │ ├── ia.po │ ├── id.po │ ├── ie.po │ ├── ig.po │ ├── ii.po │ ├── ik.po │ ├── io.po │ ├── is.po │ ├── it.po │ ├── iu.po │ ├── ja.po │ ├── jv.po │ ├── ka.po │ ├── kg.po │ ├── ki.po │ ├── kj.po │ ├── kk.po │ ├── kl.po │ ├── km.po │ ├── kn.po │ ├── ko.po │ ├── kr.po │ ├── ks.po │ ├── ku.po │ ├── kv.po │ ├── kw.po │ ├── ky.po │ ├── la.po │ ├── lb.po │ ├── lg.po │ ├── li.po │ ├── ln.po │ ├── lo.po │ ├── lt.po │ ├── lu.po │ ├── lv.po │ ├── meson.build │ ├── mg.po │ ├── mh.po │ ├── mi.po │ ├── mk.po │ ├── ml.po │ ├── mn.po │ ├── mo.po │ ├── mr.po │ ├── ms.po │ ├── mt.po │ ├── my.po │ ├── na.po │ ├── nb.po │ ├── nd.po │ ├── ne.po │ ├── ng.po │ ├── nl.po │ ├── nn.po │ ├── no.po │ ├── nr.po │ ├── nv.po │ ├── ny.po │ ├── oc.po │ ├── oj.po │ ├── om.po │ ├── or.po │ ├── os.po │ ├── pa.po │ ├── pi.po │ ├── pl.po │ ├── ps.po │ ├── pt.po │ ├── pt_BR.po │ ├── qu.po │ ├── rm.po │ ├── rn.po │ ├── ro.po │ ├── ru.po │ ├── rue.po │ ├── rw.po │ ├── sa.po │ ├── sc.po │ ├── sd.po │ ├── se.po │ ├── sg.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sm.po │ ├── sma.po │ ├── sn.po │ ├── so.po │ ├── sq.po │ ├── sr.po │ ├── ss.po │ ├── st.po │ ├── su.po │ ├── sv.po │ ├── sw.po │ ├── szl.po │ ├── ta.po │ ├── te.po │ ├── tg.po │ ├── th.po │ ├── ti.po │ ├── tk.po │ ├── tl.po │ ├── tn.po │ ├── to.po │ ├── tr.po │ ├── ts.po │ ├── tt.po │ ├── tw.po │ ├── ty.po │ ├── ug.po │ ├── uk.po │ ├── ur.po │ ├── uz.po │ ├── ve.po │ ├── vi.po │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zh_CN.po │ ├── zh_HK.po │ ├── zh_TW.po │ └── zu.po ├── fa.po ├── ff.po ├── fi.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.elementary.settings.applications.pot ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.po ├── szl.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── tr.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── ve.po ├── vi.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po ├── src ├── Config.vala.in ├── Defaults │ └── DefaultPlug.vala ├── Permissions │ ├── Backend │ │ ├── App.vala │ │ ├── AppManager.vala │ │ ├── FlatpakManager.vala │ │ ├── PermissionSettings.vala │ │ └── PermissionStore.vala │ └── Widgets │ │ ├── AppSettingsView.vala │ │ ├── PermissionSettingsWidget.vala │ │ └── SidebarRow.vala ├── Plug.vala ├── Sidebar.vala ├── Startup │ ├── Backend │ │ ├── DesktopFileEnumerator.vala │ │ ├── KeyFile.vala │ │ ├── KeyFileFactory.vala │ │ └── Monitor.vala │ ├── Controller.vala │ ├── Entities │ │ └── AppInfo.vala │ ├── Startup.vala │ ├── Utils.vala │ └── Widgets │ │ ├── AppChooser.vala │ │ ├── AppChooserRow.vala │ │ └── AppRow.vala └── meson.build └── vapi └── flatpak.vapi /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | root = true 3 | 4 | # elementary defaults 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = tab 9 | indent_style = space 10 | insert_final_newline = true 11 | max_line_length = 80 12 | tab_width = 4 13 | 14 | [{*.xml,*.xml.in,*.yml}] 15 | tab_width = 2 16 | 17 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | jobs: 7 | build: 8 | runs-on: ubuntu-22.04 9 | container: 10 | image: ghcr.io/elementary/docker:next-unstable 11 | 12 | steps: 13 | - name: Install required packages 14 | run: | 15 | apt-get update 16 | apt-get install apt-utils git -y 17 | 18 | - name: Clone repository 19 | uses: actions/checkout@v4 20 | with: 21 | token: ${{ secrets.GIT_USER_TOKEN }} 22 | 23 | - name: Update Translation Files 24 | uses: elementary/actions/gettext-template@main 25 | env: 26 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 27 | GIT_USER_NAME: "elementaryBot" 28 | GIT_USER_EMAIL: "builds@elementary.io" 29 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | pull_request: 5 | types: 6 | - opened 7 | - reopened 8 | - synchronize 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | fail-fast: false 16 | matrix: 17 | version: [stable, unstable, development-target] 18 | 19 | container: 20 | image: ghcr.io/elementary/docker:${{ matrix.version }} 21 | 22 | steps: 23 | - uses: actions/checkout@v4 24 | - name: Install Dependencies 25 | run: | 26 | apt update 27 | apt install -y libadwaita-1-dev libflatpak-dev libgranite-7-dev libgtk-4-dev libswitchboard-3-dev meson valac 28 | - name: Build 29 | env: 30 | DESTDIR: out 31 | run: | 32 | meson build 33 | ninja -C build install 34 | 35 | lint: 36 | 37 | runs-on: ubuntu-latest 38 | 39 | container: 40 | image: valalang/lint 41 | 42 | steps: 43 | - uses: actions/checkout@v4 44 | - name: Lint 45 | run: io.elementary.vala-lint -d . 46 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | pull_request: 5 | branches: [main] 6 | types: [closed] 7 | jobs: 8 | release: 9 | runs-on: ubuntu-latest 10 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: elementary/actions/release@master 14 | env: 15 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 16 | GIT_USER_NAME: "elementaryBot" 17 | GIT_USER_EMAIL: "builds@elementary.io" 18 | with: 19 | release_branch: 'noble' 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Applications Settings 2 | [![Translation status](https://l10n.elementaryos.org/widget/settings/applications/svg-badge.svg)](https://l10n.elementaryos.org/engage/settings/) 3 | 4 | ![screenshot](data/screenshot-permissions.png?raw=true) 5 | 6 | ## Building and Installation 7 | 8 | You'll need the following dependencies: 9 | 10 | * libadwaita-1-dev 11 | * libswitchboard-3-dev 12 | * libflatpak-dev 13 | * libgranite-7-dev >= 7.4.0 14 | * libgtk-4-dev 15 | * meson 16 | * valac 17 | 18 | Run `meson` to configure the build environment and then `ninja` to build 19 | 20 | meson build --prefix=/usr 21 | cd build 22 | ninja 23 | 24 | To install, use `ninja install` 25 | 26 | ninja install 27 | -------------------------------------------------------------------------------- /data/applications.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | background.svg 5 | startup-32.svg 6 | startup-32.svg 7 | startup-48.svg 8 | startup-48.svg 9 | 10 | 11 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | gresource = gnome.compile_resources( 2 | 'applications-resources', 3 | 'applications.gresource.xml', 4 | source_dir: meson.current_source_dir() 5 | ) 6 | 7 | i18n.merge_file( 8 | input: 'applications.metainfo.xml.in', 9 | output: 'io.elementary.settings.applications.metainfo.xml', 10 | po_dir: join_paths(meson.source_root (), 'po', 'extra'), 11 | install_dir: join_paths(datadir, 'metainfo'), 12 | install: true 13 | ) 14 | 15 | icon_sizes = ['32', '48'] 16 | 17 | foreach i : icon_sizes 18 | install_data( 19 | join_paths('icons', i + '.svg'), 20 | install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i / 'apps', 21 | rename: 'io.elementary.settings.applications.svg' 22 | ) 23 | install_data( 24 | join_paths('icons', i + '.svg'), 25 | install_dir: get_option('datadir') / 'icons' / 'hicolor' / i + 'x' + i + '@2' / 'apps', 26 | rename: 'io.elementary.settings.applications.svg' 27 | ) 28 | endforeach 29 | -------------------------------------------------------------------------------- /data/screenshot-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/settings-applications/8ecd65a2c233a390998889c8677a36ec0bc7f33e/data/screenshot-defaults.png -------------------------------------------------------------------------------- /data/screenshot-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/settings-applications/8ecd65a2c233a390998889c8677a36ec0bc7f33e/data/screenshot-permissions.png -------------------------------------------------------------------------------- /data/screenshot-startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/settings-applications/8ecd65a2c233a390998889c8677a36ec0bc7f33e/data/screenshot-startup.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'applications', 3 | 'vala', 'c', 4 | version: '8.1.0' 5 | ) 6 | 7 | gettext_name = 'io.elementary.settings.' + meson.project_name() 8 | gnome = import('gnome') 9 | i18n = import('i18n') 10 | 11 | prefix = get_option('prefix') 12 | datadir = join_paths(prefix, get_option('datadir')) 13 | libdir = join_paths(prefix, get_option('libdir')) 14 | 15 | vapi_dir = join_paths(meson.current_source_dir(), 'vapi') 16 | add_project_arguments( 17 | ['--vapidir', vapi_dir], 18 | language: 'vala' 19 | ) 20 | 21 | add_project_arguments( 22 | '-DGETTEXT_PACKAGE="@0@"'.format(gettext_name), 23 | '-DG_LOG_DOMAIN="@0@"'.format(gettext_name), 24 | language:'c' 25 | ) 26 | 27 | conf_data = configuration_data() 28 | conf_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) 29 | conf_data.set_quoted('GETTEXT_PACKAGE', gettext_name) 30 | conf_file = configure_file( 31 | input: 'src/Config.vala.in', 32 | output: '@BASENAME@', 33 | configuration: conf_data 34 | ) 35 | 36 | subdir('data') 37 | subdir('src') 38 | subdir('po') 39 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | ae 2 | af 3 | ak 4 | am 5 | ar 6 | as 7 | ast 8 | av 9 | ay 10 | az 11 | ba 12 | be 13 | bg 14 | bh 15 | bi 16 | bm 17 | bn 18 | bo 19 | br 20 | bs 21 | ca 22 | ce 23 | ch 24 | ckb 25 | co 26 | cr 27 | cs 28 | cu 29 | cv 30 | cy 31 | da 32 | de 33 | dv 34 | dz 35 | ee 36 | el 37 | en_AU 38 | en_CA 39 | en_GB 40 | eo 41 | es 42 | et 43 | eu 44 | fa 45 | ff 46 | fi 47 | fj 48 | fo 49 | fr 50 | fr_CA 51 | fy 52 | ga 53 | gd 54 | gl 55 | gu 56 | gv 57 | ha 58 | he 59 | hi 60 | ho 61 | hr 62 | ht 63 | hu 64 | hy 65 | hz 66 | ia 67 | id 68 | ie 69 | ig 70 | ii 71 | ik 72 | io 73 | is 74 | it 75 | iu 76 | ja 77 | jv 78 | ka 79 | kg 80 | ki 81 | kj 82 | kk 83 | kl 84 | km 85 | kn 86 | ko 87 | kr 88 | ks 89 | ku 90 | kv 91 | kw 92 | ky 93 | la 94 | lb 95 | lg 96 | li 97 | ln 98 | lo 99 | lt 100 | lu 101 | lv 102 | mg 103 | mh 104 | mi 105 | mk 106 | ml 107 | mn 108 | mo 109 | mr 110 | ms 111 | mt 112 | my 113 | na 114 | nb 115 | nd 116 | ne 117 | ng 118 | nl 119 | nn 120 | no 121 | nr 122 | nv 123 | ny 124 | oc 125 | oj 126 | om 127 | or 128 | os 129 | pa 130 | pi 131 | pl 132 | ps 133 | pt 134 | pt_BR 135 | qu 136 | rm 137 | rn 138 | ro 139 | ru 140 | rue 141 | rw 142 | sa 143 | sc 144 | sd 145 | se 146 | sg 147 | si 148 | sk 149 | sl 150 | sm 151 | sma 152 | sn 153 | so 154 | sq 155 | sr 156 | ss 157 | st 158 | su 159 | sv 160 | sw 161 | szl 162 | ta 163 | te 164 | tg 165 | th 166 | ti 167 | tk 168 | tl 169 | tn 170 | to 171 | tr 172 | ts 173 | tt 174 | tw 175 | ty 176 | ug 177 | uk 178 | ur 179 | uz 180 | ve 181 | vi 182 | vo 183 | wa 184 | wo 185 | xh 186 | yi 187 | yo 188 | za 189 | zh 190 | zh_CN 191 | zh_HK 192 | zh_TW 193 | zu 194 | aa 195 | ab 196 | gn 197 | an 198 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Plug.vala 2 | src/Sidebar.vala 3 | src/Permissions/Backend/App.vala 4 | src/Permissions/Backend/PermissionStore.vala 5 | src/Permissions/Widgets/AppSettingsView.vala 6 | src/Permissions/Widgets/SidebarRow.vala 7 | src/Startup/Utils.vala 8 | src/Startup/Startup.vala 9 | src/Startup/Controller.vala 10 | src/Startup/Backend/Monitor.vala 11 | src/Startup/Backend/KeyFileFactory.vala 12 | src/Startup/Backend/KeyFile.vala 13 | src/Startup/Backend/DesktopFileEnumerator.vala 14 | src/Startup/Entities/AppInfo.vala 15 | src/Startup/Widgets/AppRow.vala 16 | src/Startup/Widgets/AppChooserRow.vala 17 | src/Startup/Widgets/AppChooser.vala 18 | src/Defaults/DefaultPlug.vala 19 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | ae 2 | af 3 | ak 4 | am 5 | ar 6 | as 7 | ast 8 | av 9 | ay 10 | az 11 | ba 12 | be 13 | bg 14 | bh 15 | bi 16 | bm 17 | bn 18 | bo 19 | br 20 | bs 21 | ca 22 | ce 23 | ch 24 | ckb 25 | co 26 | cr 27 | cs 28 | cu 29 | cv 30 | cy 31 | da 32 | de 33 | dv 34 | dz 35 | ee 36 | el 37 | en_AU 38 | en_CA 39 | en_GB 40 | eo 41 | es 42 | et 43 | eu 44 | fa 45 | ff 46 | fi 47 | fj 48 | fo 49 | fr 50 | fr_CA 51 | fy 52 | ga 53 | gd 54 | gl 55 | gu 56 | gv 57 | ha 58 | he 59 | hi 60 | ho 61 | hr 62 | ht 63 | hu 64 | hy 65 | hz 66 | ia 67 | id 68 | ie 69 | ig 70 | ii 71 | ik 72 | io 73 | is 74 | it 75 | iu 76 | ja 77 | jv 78 | ka 79 | kg 80 | ki 81 | kj 82 | kk 83 | kl 84 | km 85 | kn 86 | ko 87 | kr 88 | ks 89 | ku 90 | kv 91 | kw 92 | ky 93 | la 94 | lb 95 | lg 96 | li 97 | ln 98 | lo 99 | lt 100 | lu 101 | lv 102 | mg 103 | mh 104 | mi 105 | mk 106 | ml 107 | mn 108 | mo 109 | mr 110 | ms 111 | mt 112 | my 113 | na 114 | nb 115 | nd 116 | ne 117 | ng 118 | nl 119 | nn 120 | no 121 | nr 122 | nv 123 | ny 124 | oc 125 | oj 126 | om 127 | or 128 | os 129 | pa 130 | pi 131 | pl 132 | ps 133 | pt 134 | pt_BR 135 | qu 136 | rm 137 | rn 138 | ro 139 | ru 140 | rue 141 | rw 142 | sa 143 | sc 144 | sd 145 | se 146 | sg 147 | si 148 | sk 149 | sl 150 | sm 151 | sma 152 | sn 153 | so 154 | sq 155 | sr 156 | ss 157 | st 158 | su 159 | sv 160 | sw 161 | szl 162 | ta 163 | te 164 | tg 165 | th 166 | ti 167 | tk 168 | tl 169 | tn 170 | to 171 | tr 172 | ts 173 | tt 174 | tw 175 | ty 176 | ug 177 | uk 178 | ur 179 | uz 180 | ve 181 | vi 182 | vo 183 | wa 184 | wo 185 | xh 186 | yi 187 | yo 188 | za 189 | zh 190 | zh_CN 191 | zh_HK 192 | zh_TW 193 | zu 194 | aa 195 | ab 196 | gn 197 | an 198 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/applications.metainfo.xml.in 2 | -------------------------------------------------------------------------------- /po/extra/aa.po: -------------------------------------------------------------------------------- 1 | # Afar translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: aa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ab.po: -------------------------------------------------------------------------------- 1 | # Abkhazian translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ab\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ae.po: -------------------------------------------------------------------------------- 1 | # Avestan translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ae\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/af.po: -------------------------------------------------------------------------------- 1 | # Afrikaans translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: af\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ak.po: -------------------------------------------------------------------------------- 1 | # Akan translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ak\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/am.po: -------------------------------------------------------------------------------- 1 | # Amharic translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: am\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/an.po: -------------------------------------------------------------------------------- 1 | # Aragonese translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: an\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/av.po: -------------------------------------------------------------------------------- 1 | # Avaric translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: av\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ay.po: -------------------------------------------------------------------------------- 1 | # Aymara translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ay\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/bh.po: -------------------------------------------------------------------------------- 1 | # Bihari translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/br.po: -------------------------------------------------------------------------------- 1 | # Breton translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: br\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/cr.po: -------------------------------------------------------------------------------- 1 | # Cree translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/dv.po: -------------------------------------------------------------------------------- 1 | # Divehi translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ee.po: -------------------------------------------------------------------------------- 1 | # Ewe translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ee\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/eu.po: -------------------------------------------------------------------------------- 1 | # Basque translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: eu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ff.po: -------------------------------------------------------------------------------- 1 | # Fulah translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ff\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/fj.po: -------------------------------------------------------------------------------- 1 | # Fijian translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/gv.po: -------------------------------------------------------------------------------- 1 | # Manx translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ha.po: -------------------------------------------------------------------------------- 1 | # Hausa translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ha\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/hz.po: -------------------------------------------------------------------------------- 1 | # Herero translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ig.po: -------------------------------------------------------------------------------- 1 | # Igbo translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ig\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/kg.po: -------------------------------------------------------------------------------- 1 | # Kongo translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ki.po: -------------------------------------------------------------------------------- 1 | # Kikuyu translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ki\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/kk.po: -------------------------------------------------------------------------------- 1 | # Kazakh translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kk\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/kr.po: -------------------------------------------------------------------------------- 1 | # Kanuri translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/kv.po: -------------------------------------------------------------------------------- 1 | # Komi translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/la.po: -------------------------------------------------------------------------------- 1 | # Latin translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: la\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/lg.po: -------------------------------------------------------------------------------- 1 | # Ganda translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: '--directory=' + meson.source_root(), 3 | preset: 'glib', 4 | install: false, 5 | ) 6 | -------------------------------------------------------------------------------- /po/extra/mi.po: -------------------------------------------------------------------------------- 1 | # Maori translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ms\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/na.po: -------------------------------------------------------------------------------- 1 | # Nauru translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: na\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ne.po: -------------------------------------------------------------------------------- 1 | # Nepali translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ne\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ng.po: -------------------------------------------------------------------------------- 1 | # Ndonga translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ng\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/nv.po: -------------------------------------------------------------------------------- 1 | # Navajo translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: nv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ny.po: -------------------------------------------------------------------------------- 1 | # Nyanja translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ny\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/oj.po: -------------------------------------------------------------------------------- 1 | # Ojibwa translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: oj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/or.po: -------------------------------------------------------------------------------- 1 | # Oriya translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: or\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/pi.po: -------------------------------------------------------------------------------- 1 | # Pali translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ps.po: -------------------------------------------------------------------------------- 1 | # Pashto translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ps\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/sd.po: -------------------------------------------------------------------------------- 1 | # Sindhi translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sd\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/sg.po: -------------------------------------------------------------------------------- 1 | # Sango translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/sm.po: -------------------------------------------------------------------------------- 1 | # Samoan translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/sn.po: -------------------------------------------------------------------------------- 1 | # Shona translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/so.po: -------------------------------------------------------------------------------- 1 | # Somali translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: so\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/szl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 5 | "PO-Revision-Date: 2019-06-26 18:53+0200\n" 6 | "Last-Translator: Automatically generated\n" 7 | "Language-Team: none\n" 8 | "Language: szl\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 13 | "|| n%100>=20) ? 1 : 2);\n" 14 | 15 | #: data/applications.metainfo.xml.in:10 16 | msgid "Applications Settings" 17 | msgstr "" 18 | 19 | #: data/applications.metainfo.xml.in:11 20 | msgid "Manage default and startup applications" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:34 24 | msgid "elementary, Inc." 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 28 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 29 | #: data/applications.metainfo.xml.in:118 30 | msgid "Minor updates:" 31 | msgstr "" 32 | 33 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 34 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 35 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 36 | msgid "Updated translations" 37 | msgstr "" 38 | 39 | #: data/applications.metainfo.xml.in:54 40 | msgid "A Big Redesign!" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:56 44 | msgid "A new icon" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:57 48 | msgid "Redesigned layout that makes it faster to get to app permissions" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:58 52 | msgid "" 53 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 54 | msgstr "" 55 | 56 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 57 | msgid "New features:" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:86 61 | msgid "Properly handle autostart files created by the Background Portal" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:90 65 | msgid "App chooser in Startup is a dialog instead of a popover" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:91 69 | msgid "Improve screen reader descriptions" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:105 73 | msgid "Fix an issue with setting the incorrect app for certain files types" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:106 77 | msgid "Don't overwrite custom overrides when unnecessary" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:116 81 | msgid "Manage permissions for Flatpak apps" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:120 85 | msgid "Show custom launcher files" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/extra/ta.po: -------------------------------------------------------------------------------- 1 | # Tamil translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ta\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/te.po: -------------------------------------------------------------------------------- 1 | # Telugu translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: te\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/tg.po: -------------------------------------------------------------------------------- 1 | # Tajik translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/th.po: -------------------------------------------------------------------------------- 1 | # Thai translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: th\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/to.po: -------------------------------------------------------------------------------- 1 | # Tonga translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: to\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ts.po: -------------------------------------------------------------------------------- 1 | # Tsonga translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ts\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/tt.po: -------------------------------------------------------------------------------- 1 | # Tatar translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/tw.po: -------------------------------------------------------------------------------- 1 | # Twi translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ug.po: -------------------------------------------------------------------------------- 1 | # Uighur translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ug\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ur.po: -------------------------------------------------------------------------------- 1 | # Urdu translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ur\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/uz.po: -------------------------------------------------------------------------------- 1 | # Uzbek translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: uz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/ve.po: -------------------------------------------------------------------------------- 1 | # Venda translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ve\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/wo.po: -------------------------------------------------------------------------------- 1 | # Wolof translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: wo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/xh.po: -------------------------------------------------------------------------------- 1 | # Xhosa translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: xh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/yo.po: -------------------------------------------------------------------------------- 1 | # Yoruba translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: yo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/za.po: -------------------------------------------------------------------------------- 1 | # Zhuang translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: za\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/extra/zu.po: -------------------------------------------------------------------------------- 1 | # Zulu translations for extra package. 2 | # Copyright (C) 2018 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 21:04+0000\n" 11 | "PO-Revision-Date: 2018-05-01 10:26-0700\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: zu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/applications.metainfo.xml.in:10 20 | msgid "Applications Settings" 21 | msgstr "" 22 | 23 | #: data/applications.metainfo.xml.in:11 24 | msgid "Manage default and startup applications" 25 | msgstr "" 26 | 27 | #: data/applications.metainfo.xml.in:34 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/applications.metainfo.xml.in:42 data/applications.metainfo.xml.in:71 32 | #: data/applications.metainfo.xml.in:88 data/applications.metainfo.xml.in:103 33 | #: data/applications.metainfo.xml.in:118 34 | msgid "Minor updates:" 35 | msgstr "" 36 | 37 | #: data/applications.metainfo.xml.in:44 data/applications.metainfo.xml.in:59 38 | #: data/applications.metainfo.xml.in:73 data/applications.metainfo.xml.in:92 39 | #: data/applications.metainfo.xml.in:107 data/applications.metainfo.xml.in:121 40 | msgid "Updated translations" 41 | msgstr "" 42 | 43 | #: data/applications.metainfo.xml.in:54 44 | msgid "A Big Redesign!" 45 | msgstr "" 46 | 47 | #: data/applications.metainfo.xml.in:56 48 | msgid "A new icon" 49 | msgstr "" 50 | 51 | #: data/applications.metainfo.xml.in:57 52 | msgid "Redesigned layout that makes it faster to get to app permissions" 53 | msgstr "" 54 | 55 | #: data/applications.metainfo.xml.in:58 56 | msgid "" 57 | "Portal permissions like Backgrounding, Location, Screenshots, and Wallpapers" 58 | msgstr "" 59 | 60 | #: data/applications.metainfo.xml.in:84 data/applications.metainfo.xml.in:114 61 | msgid "New features:" 62 | msgstr "" 63 | 64 | #: data/applications.metainfo.xml.in:86 65 | msgid "Properly handle autostart files created by the Background Portal" 66 | msgstr "" 67 | 68 | #: data/applications.metainfo.xml.in:90 69 | msgid "App chooser in Startup is a dialog instead of a popover" 70 | msgstr "" 71 | 72 | #: data/applications.metainfo.xml.in:91 73 | msgid "Improve screen reader descriptions" 74 | msgstr "" 75 | 76 | #: data/applications.metainfo.xml.in:105 77 | msgid "Fix an issue with setting the incorrect app for certain files types" 78 | msgstr "" 79 | 80 | #: data/applications.metainfo.xml.in:106 81 | msgid "Don't overwrite custom overrides when unnecessary" 82 | msgstr "" 83 | 84 | #: data/applications.metainfo.xml.in:116 85 | msgid "Manage permissions for Flatpak apps" 86 | msgstr "" 87 | 88 | #: data/applications.metainfo.xml.in:120 89 | msgid "Show custom launcher files" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(gettext_name, 2 | args: '--directory=' + meson.source_root(), 3 | preset: 'glib' 4 | ) 5 | subdir('extra') 6 | -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- 1 | public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; 2 | public const string LOCALEDIR = @LOCALEDIR@; 3 | -------------------------------------------------------------------------------- /src/Permissions/Backend/AppManager.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Marius Meisenzahl 20 | */ 21 | 22 | public class Permissions.Backend.AppManager : GLib.Object { 23 | public HashTable apps { get; private set; } 24 | 25 | private static AppManager? instance; 26 | public static AppManager get_default () { 27 | if (instance == null) { 28 | instance = new AppManager (); 29 | } 30 | 31 | return instance; 32 | } 33 | 34 | construct { 35 | apps = new HashTable (str_hash, str_equal); 36 | 37 | try { 38 | var installation = new Flatpak.Installation.user (); 39 | get_apps_for_installation (installation); 40 | } catch (Error e) { 41 | critical ("Unable to get flatpak user installation : %s", e.message); 42 | } 43 | 44 | try { 45 | var installation = new Flatpak.Installation.system (); 46 | get_apps_for_installation (installation); 47 | } catch (Error e) { 48 | critical ("Unable to get flatpak system installation : %s", e.message); 49 | } 50 | } 51 | 52 | private void get_apps_for_installation (Flatpak.Installation installation) { 53 | try { 54 | installation.list_installed_refs_by_kind (Flatpak.RefKind.APP).foreach ((installed_ref) => { 55 | unowned string id = installed_ref.get_name (); 56 | if (apps[id] == null) { 57 | apps.insert (id, new Backend.App (installed_ref)); 58 | } 59 | }); 60 | } catch (Error e) { 61 | critical ("Unable to get installed flatpaks: %s", e.message); 62 | } 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/Permissions/Backend/FlatpakManager.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Marius Meisenzahl 20 | */ 21 | 22 | public class Permissions.Backend.FlatpakManager : GLib.Object { 23 | public string user_installation_path { get; private set; } 24 | 25 | private static FlatpakManager? instance; 26 | public static FlatpakManager get_default () { 27 | if (instance == null) { 28 | instance = new FlatpakManager (); 29 | } 30 | 31 | return instance; 32 | } 33 | 34 | construct { 35 | try { 36 | var installation = new Flatpak.Installation.user (); 37 | user_installation_path = installation.get_path ().get_path (); 38 | } catch (Error e) { 39 | critical ("Unable to get flatpak user installation : %s", e.message); 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/Permissions/Backend/PermissionSettings.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Marius Meisenzahl 20 | */ 21 | 22 | public class Permissions.Backend.PermissionSettings : GLib.Object { 23 | public string context { get; construct; } 24 | public bool standard { get; construct set; } 25 | public bool enabled { get; set; } 26 | 27 | public PermissionSettings (string context, bool standard = false) { 28 | Object ( 29 | context: context, 30 | standard: standard 31 | ); 32 | 33 | this.enabled = standard; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/Startup/Backend/DesktopFileEnumerator.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2018 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | /** 23 | * This class lists all .desktop files in a given directory. 24 | */ 25 | class Startup.Backend.DesktopFileEnumerator : GLib.Object { 26 | 27 | string[] dirs; 28 | 29 | public DesktopFileEnumerator (string[] dirs) { 30 | this.dirs = dirs; 31 | } 32 | 33 | public string[] get_desktop_files () { 34 | string[] result = {}; 35 | 36 | foreach (var dir in dirs) { 37 | try { 38 | foreach (var name in enumerate_children (dir)) { 39 | if (Utils.is_desktop_file (name)) { 40 | result += Path.build_filename (dir, name); 41 | } 42 | } 43 | } catch (Error e) { 44 | warning (@"Error inside $dir: $(e.message)"); 45 | } 46 | } 47 | 48 | return result; 49 | } 50 | 51 | string[] enumerate_children (string dir) throws Error { 52 | string[] result = {}; 53 | FileInfo file_info; 54 | var enumerator = File.new_for_path (dir).enumerate_children (FileAttribute.STANDARD_NAME, 0); 55 | while ((file_info = enumerator.next_file ()) != null) 56 | result += file_info.get_name (); 57 | return result; 58 | } 59 | 60 | } 61 | -------------------------------------------------------------------------------- /src/Startup/Backend/KeyFileFactory.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | class Startup.Backend.KeyFileFactory : GLib.Object { 23 | 24 | static Gee.Map cache; 25 | 26 | public static void init () { 27 | cache = new Gee.HashMap (); 28 | } 29 | 30 | public static KeyFile get_or_create (string path) { 31 | if (cache [path] == null) { 32 | cache [path] = new KeyFile (path); 33 | } 34 | 35 | return cache [path]; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/Startup/Backend/Monitor.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | public class Startup.Backend.Monitor : Object { 23 | public signal void file_created (string path); 24 | public signal void file_deleted (string path); 25 | public signal void file_edited (string path); 26 | 27 | private FileMonitor monitor; 28 | 29 | construct { 30 | var startup_dir = Utils.get_user_startup_dir (); 31 | var file = File.new_for_path (startup_dir); 32 | try { 33 | monitor = file.monitor (FileMonitorFlags.NONE); 34 | monitor.changed.connect (on_change_occurred); 35 | } catch (Error e) { 36 | critical ("Failed monitoring startup directory: %s", startup_dir); 37 | critical (e.message); 38 | } 39 | } 40 | 41 | private void on_change_occurred (File file, File? dest, FileMonitorEvent event) { 42 | var path = file.get_path (); 43 | 44 | if (Utils.is_desktop_file (path) == false) { 45 | return; 46 | } 47 | 48 | switch (event) { 49 | case FileMonitorEvent.CREATED: 50 | file_created (path); 51 | break; 52 | case FileMonitorEvent.DELETED: 53 | file_deleted (path); 54 | break; 55 | case FileMonitorEvent.CHANGED: 56 | file_edited (path); 57 | break; 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/Startup/Controller.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | public class Startup.Controller : Object { 23 | public Startup.Plug view { get; construct; } 24 | 25 | private const string APPLICATION_DIRS = "applications"; 26 | 27 | public Controller (Startup.Plug view) { 28 | Object (view: view); 29 | } 30 | 31 | construct { 32 | foreach (unowned string path in get_auto_start_files ()) { 33 | var key_file = Backend.KeyFileFactory.get_or_create (path); 34 | if (key_file.show) { 35 | view.add_app (key_file); 36 | } 37 | } 38 | 39 | var app_infos = new Gee.ArrayList (); 40 | foreach (unowned string path in get_application_files ()) { 41 | var key_file = Backend.KeyFileFactory.get_or_create (path); 42 | if (key_file.show) { 43 | app_infos.add (key_file.create_app_info ()); 44 | } 45 | } 46 | 47 | view.init_app_chooser (app_infos); 48 | } 49 | 50 | private string[] get_application_files () { 51 | string[] app_dirs = {}; 52 | 53 | var data_dirs = Environment.get_system_data_dirs (); 54 | data_dirs += Environment.get_user_data_dir (); 55 | foreach (unowned string data_dir in data_dirs) { 56 | var app_dir = Path.build_filename (data_dir, APPLICATION_DIRS); 57 | if (FileUtils.test (app_dir, FileTest.EXISTS)) { 58 | app_dirs += app_dir; 59 | } 60 | } 61 | 62 | if (app_dirs.length == 0) { 63 | warning ("No application directories found"); 64 | } 65 | 66 | var enumerator = new Backend.DesktopFileEnumerator (app_dirs); 67 | return enumerator.get_desktop_files (); 68 | } 69 | 70 | private string[] get_auto_start_files () { 71 | var startup_dir = Utils.get_user_startup_dir (); 72 | var enumerator = new Backend.DesktopFileEnumerator ({ startup_dir }); 73 | return enumerator.get_desktop_files (); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/Startup/Entities/AppInfo.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | public struct Startup.Entity.AppInfo { 23 | 24 | public string name; 25 | public string comment; 26 | public string icon; 27 | public bool active; 28 | public string path; 29 | 30 | public bool equal (Entity.AppInfo other_app_info) { 31 | return this.name == other_app_info.name && this.path == other_app_info.path; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Startup/Utils.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2018 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | namespace Startup.Utils { 23 | private const string AUTOSTART_DIR = "autostart"; 24 | 25 | public string get_user_startup_dir () { 26 | var config_dir = Environment.get_user_config_dir (); 27 | var startup_dir = Path.build_filename (config_dir, AUTOSTART_DIR); 28 | 29 | if (FileUtils.test (startup_dir, FileTest.EXISTS) == false) { 30 | var file = File.new_for_path (startup_dir); 31 | 32 | try { 33 | file.make_directory_with_parents (); 34 | } catch (Error e) { 35 | warning (e.message); 36 | } 37 | } 38 | 39 | return startup_dir; 40 | } 41 | 42 | public bool is_desktop_file (string name) { 43 | return !name.contains ("~") && name.has_suffix (".desktop"); 44 | } 45 | 46 | public Gtk.Image create_icon (Entity.AppInfo app_info) { 47 | var image = new Gtk.Image () { 48 | pixel_size = 32 49 | }; 50 | 51 | var icon_theme = Gtk.IconTheme.get_for_display (Gdk.Display.get_default ()); 52 | if (icon_theme.has_icon (app_info.icon)) { 53 | image.gicon = new ThemedIcon (app_info.icon); 54 | } else { 55 | image.gicon = new ThemedIcon ("application-default-icon"); 56 | } 57 | 58 | return image; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/Startup/Widgets/AppChooserRow.vala: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-3.0-or-later 2 | * SPDX-FileCopyrightText: 2013-2023 elementary, Inc. (https://elementary.io) 3 | * 4 | * Authored by: Julien Spautz 5 | */ 6 | 7 | public class Startup.Widgets.AppChooserRow : Gtk.Grid { 8 | 9 | public Entity.AppInfo app_info { get; construct; } 10 | 11 | public signal void deleted (); 12 | 13 | public AppChooserRow (Entity.AppInfo app_info) { 14 | Object (app_info: app_info); 15 | } 16 | 17 | construct { 18 | var image = Utils.create_icon (app_info); 19 | 20 | var app_name = new Gtk.Label (app_info.name) { 21 | xalign = 0, 22 | ellipsize = Pango.EllipsizeMode.END 23 | }; 24 | 25 | var app_comment = new Gtk.Label (app_info.comment) { 26 | xalign = 0, 27 | ellipsize = Pango.EllipsizeMode.END 28 | }; 29 | app_comment.add_css_class (Granite.STYLE_CLASS_SMALL_LABEL); 30 | 31 | column_spacing = 6; 32 | attach (image, 0, 0, 1, 2); 33 | attach (app_name, 1, 0); 34 | attach (app_comment, 1, 1); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/Startup/Widgets/AppRow.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2020 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 3 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Julien Spautz 20 | */ 21 | 22 | public class Startup.Widgets.AppRow : Gtk.ListBoxRow { 23 | public signal void active_changed (bool active); 24 | 25 | public Entity.AppInfo app_info { get; construct; } 26 | 27 | public AppRow (Entity.AppInfo app_info) { 28 | Object (app_info: app_info); 29 | } 30 | 31 | construct { 32 | var image = Utils.create_icon (app_info); 33 | 34 | var app_name = new Gtk.Label (app_info.name) { 35 | xalign = 0 36 | }; 37 | 38 | var app_comment = new Gtk.Label (app_info.comment) { 39 | ellipsize = Pango.EllipsizeMode.END, 40 | hexpand = true, 41 | xalign = 0 42 | }; 43 | app_comment.add_css_class (Granite.STYLE_CLASS_SMALL_LABEL); 44 | 45 | var remove_button = new Gtk.Button.from_icon_name ("edit-delete-symbolic") { 46 | tooltip_text = _("Remove this app from startup") 47 | }; 48 | 49 | var active_switch = new Gtk.Switch () { 50 | active = app_info.active, 51 | tooltip_text = _("Launch %s on startup").printf (app_info.name), 52 | valign = Gtk.Align.CENTER 53 | }; 54 | 55 | var main_grid = new Gtk.Grid () { 56 | column_spacing = 6 57 | }; 58 | main_grid.attach (image, 0, 0, 1, 2); 59 | main_grid.attach (app_name, 1, 0); 60 | main_grid.attach (app_comment, 1, 1); 61 | main_grid.attach (remove_button, 2, 0, 1, 2); 62 | main_grid.attach (active_switch, 3, 0, 1, 2); 63 | 64 | child = main_grid; 65 | 66 | active_switch.notify["active"].connect (() => { 67 | active_changed (active_switch.active); 68 | }); 69 | 70 | remove_button.clicked.connect (() => { 71 | FileUtils.remove (app_info.path); 72 | ((Gtk.ListBox) parent).remove (this); 73 | }); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | plug_files = files( 2 | 'Plug.vala', 3 | 'Sidebar.vala', 4 | 'Startup/Utils.vala', 5 | 'Startup/Startup.vala', 6 | 'Startup/Controller.vala', 7 | 'Startup/Backend/Monitor.vala', 8 | 'Startup/Backend/KeyFileFactory.vala', 9 | 'Startup/Backend/KeyFile.vala', 10 | 'Startup/Backend/DesktopFileEnumerator.vala', 11 | 'Startup/Entities/AppInfo.vala', 12 | 'Startup/Widgets/AppRow.vala', 13 | 'Startup/Widgets/AppChooserRow.vala', 14 | 'Startup/Widgets/AppChooser.vala', 15 | 'Defaults/DefaultPlug.vala', 16 | 'Permissions/Backend/App.vala', 17 | 'Permissions/Backend/AppManager.vala', 18 | 'Permissions/Backend/FlatpakManager.vala', 19 | 'Permissions/Backend/PermissionSettings.vala', 20 | 'Permissions/Backend/PermissionStore.vala', 21 | 'Permissions/Widgets/AppSettingsView.vala', 22 | 'Permissions/Widgets/PermissionSettingsWidget.vala', 23 | 'Permissions/Widgets/SidebarRow.vala' 24 | ) 25 | 26 | switchboard_dep = dependency('switchboard-3') 27 | switchboard_plugsdir = switchboard_dep.get_pkgconfig_variable('plugsdir', define_variable: ['libdir', libdir]) 28 | 29 | shared_module( 30 | meson.project_name(), 31 | gresource, 32 | plug_files, 33 | conf_file, 34 | dependencies: [ 35 | dependency('flatpak', version: '>=1.1.2'), 36 | dependency('glib-2.0', version: '>=2.34'), 37 | dependency('gio-2.0'), 38 | dependency('gobject-2.0'), 39 | dependency('granite-7', version: '>=7.4.0'), 40 | dependency('gtk4'), 41 | dependency('libadwaita-1', version: '>=1.4'), 42 | switchboard_dep 43 | ], 44 | install: true, 45 | install_dir : join_paths(switchboard_plugsdir, 'personal') 46 | ) 47 | --------------------------------------------------------------------------------