├── .gitignore ├── po ├── extra │ ├── POTFILES │ ├── meson.build │ └── LINGUAS ├── POTFILES ├── meson.build ├── LINGUAS ├── aa.po ├── ab.po ├── ae.po ├── am.po ├── an.po ├── as.po ├── av.po ├── ay.po ├── ba.po ├── bh.po ├── bi.po ├── bm.po ├── bo.po ├── br.po ├── ce.po ├── ch.po ├── co.po ├── cr.po ├── cu.po ├── cy.po ├── dv.po ├── dz.po ├── ee.po ├── ff.po ├── fj.po ├── fo.po ├── fy.po ├── gd.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── ho.po ├── ht.po ├── hz.po ├── ia.po ├── ig.po ├── ii.po ├── ik.po ├── io.po ├── iu.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kr.po ├── ks.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── li.po ├── ln.po ├── lo.po ├── lu.po ├── mh.po ├── mi.po ├── ml.po ├── mt.po ├── na.po ├── nd.po ├── ne.po ├── ng.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pi.po ├── ps.po ├── qu.po ├── rm.po ├── rn.po ├── rw.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── sm.po ├── sn.po ├── so.po ├── ss.po ├── st.po ├── su.po ├── sw.po ├── tg.po ├── ti.po ├── tk.po ├── tn.po ├── to.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po └── ve.po ├── data ├── screenshot.png ├── screenshot-settings.png ├── feedback.desktop.in ├── gschema.xml └── meson.build ├── src ├── Config.vala.in └── Widgets │ └── CategoryRow.vala ├── .github ├── dependabot.yml └── workflows │ ├── release.yml │ ├── gettext.yml │ └── main.yml ├── .editorconfig ├── README.md └── meson.build /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/* 3 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/feedback.metainfo.xml.in 2 | data/feedback.desktop.in 3 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/feedback/HEAD/data/screenshot.png -------------------------------------------------------------------------------- /data/screenshot-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/feedback/HEAD/data/screenshot-settings.png -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Application.vala 2 | src/MainWindow.vala 3 | src/Widgets/CategoryRow.vala 4 | src/Widgets/RepoRow.vala 5 | -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- 1 | public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; 2 | public const string LOCALEDIR = @LOCALEDIR@; 3 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib', 4 | install: false 5 | ) 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name (), 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib' 4 | ) 5 | 6 | subdir ('extra') 7 | -------------------------------------------------------------------------------- /data/feedback.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | 5 | Name=Feedback 6 | Comment=Report a problem 7 | Categories=Development;Utility; 8 | Keywords=bug;issue;report; 9 | 10 | Icon=io.elementary.feedback 11 | Exec=io.elementary.feedback 12 | Terminal=false 13 | StartupNotify=true 14 | -------------------------------------------------------------------------------- /.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/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@v6 13 | - uses: elementary/actions/release@main 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 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | container: 11 | image: ghcr.io/elementary/docker:next-unstable 12 | 13 | steps: 14 | - name: Install git 15 | run: | 16 | apt-get update 17 | apt-get install git -y 18 | 19 | - name: Clone repository 20 | uses: actions/checkout@v6 21 | with: 22 | token: ${{ secrets.GIT_USER_TOKEN }} 23 | 24 | - name: Update Translation Files 25 | uses: elementary/actions/gettext-template@main 26 | env: 27 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 28 | GIT_USER_NAME: "elementaryBot" 29 | GIT_USER_EMAIL: "builds@elementary.io" 30 | -------------------------------------------------------------------------------- /data/gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | Whether the window was maximized on last run 7 | Whether the window was maximized on last run 8 | 9 | 10 | 600 11 | Most recent window height 12 | Most recent window height 13 | 14 | 15 | 550 16 | Most recent window width 17 | Most recent window width 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Feedback 2 | [![Translation status](https://l10n.elementary.io/widgets/desktop/-/feedback/svg-badge.svg)](https://l10n.elementary.io/engage/desktop/?utm_source=widget) 3 | 4 | GitHub Issue Reporter 5 | 6 | ![Feedback Screenshot](data/screenshot.png?raw=true) 7 | 8 | ## Building, Testing, and Installation 9 | 10 | You'll need the following dependencies: 11 | * libappstream-dev (>=1.0.0) 12 | * libgranite-7-dev (>=7.7.0) 13 | * libgtk-4-dev (>=4.10) 14 | * libadwaita-1-dev (>=1.4.0) 15 | * meson 16 | * valac 17 | 18 | Run `meson build` to configure the build environment. Change to the build directory and run `ninja` to build 19 | 20 | meson build --prefix=/usr 21 | cd build 22 | ninja 23 | 24 | To install, use `ninja install`, then execute with `io.elementary.feedback` 25 | 26 | ninja install 27 | io.elementary.feedback 28 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: CI 4 | 5 | on: 6 | pull_request: 7 | types: 8 | - opened 9 | - reopened 10 | - synchronize 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | 16 | strategy: 17 | fail-fast: false 18 | matrix: 19 | version: [stable, unstable, development-target] 20 | container: 21 | image: ghcr.io/elementary/docker:${{ matrix.version }} 22 | 23 | steps: 24 | - uses: actions/checkout@v6 25 | - name: Install Dependencies 26 | run: | 27 | apt update 28 | apt install -y libappstream-dev libgranite-7-dev libgtk-4-dev libadwaita-1-dev meson valac 29 | - name: Build 30 | run: | 31 | meson build 32 | ninja -C build 33 | 34 | lint: 35 | runs-on: ubuntu-latest 36 | 37 | container: 38 | image: valalang/lint 39 | 40 | steps: 41 | - uses: actions/checkout@v6 42 | - name: Lint 43 | run: io.elementary.vala-lint -d . 44 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | icon_sizes = ['32', '48', '64'] 2 | 3 | foreach i : icon_sizes 4 | install_data( 5 | join_paths('icons', i + '.svg'), 6 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'), 7 | rename: meson.project_name() + '.svg' 8 | ) 9 | install_data( 10 | join_paths('icons', i + '.svg'), 11 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps'), 12 | rename: meson.project_name() + '.svg' 13 | ) 14 | endforeach 15 | 16 | install_data( 17 | 'gschema.xml', 18 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas'), 19 | rename: meson.project_name() + '.gschema.xml' 20 | ) 21 | 22 | i18n.merge_file( 23 | input: 'feedback.desktop.in', 24 | output: meson.project_name() + '.desktop', 25 | po_dir: join_paths(meson.project_source_root(), 'po', 'extra'), 26 | type: 'desktop', 27 | install: true, 28 | install_dir: join_paths(get_option('datadir'), 'applications'), 29 | ) 30 | 31 | i18n.merge_file( 32 | input: 'feedback.metainfo.xml.in', 33 | output: meson.project_name() + '.metainfo.xml', 34 | po_dir: join_paths(meson.project_source_root(), 'po', 'extra'), 35 | type: 'xml', 36 | install: true, 37 | install_dir: join_paths(get_option('datadir'), 'metainfo'), 38 | ) 39 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'io.elementary.feedback', 3 | 'vala', 'c', 4 | version: '8.1.0', 5 | meson_version: '>=0.58.0' 6 | ) 7 | 8 | gnome = import('gnome') 9 | i18n = import('i18n') 10 | 11 | appstream_dep = dependency ('appstream', version: '>=1.0') 12 | 13 | add_project_arguments('-DGETTEXT_PACKAGE="@0@"'.format (meson.project_name()), language:'c') 14 | 15 | config_data = configuration_data() 16 | config_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) 17 | config_data.set_quoted('GETTEXT_PACKAGE', meson.project_name()) 18 | config_file = configure_file( 19 | input: 'src/Config.vala.in', 20 | output: '@BASENAME@', 21 | configuration: config_data 22 | ) 23 | 24 | executable( 25 | meson.project_name(), 26 | 'src/Application.vala', 27 | 'src/MainWindow.vala', 28 | 'src/Widgets/CategoryRow.vala', 29 | 'src/Widgets/RepoRow.vala', 30 | config_file, 31 | dependencies: [ 32 | appstream_dep, 33 | dependency('glib-2.0'), 34 | dependency('gobject-2.0'), 35 | dependency('granite-7', version: '>=7.7.0'), 36 | dependency('gtk4', version: '>= 4.10'), 37 | dependency('libadwaita-1', version: '>=1.4.0') 38 | ], 39 | install : true 40 | ) 41 | 42 | subdir('data') 43 | subdir('po') 44 | 45 | gnome.post_install(glib_compile_schemas: true) 46 | -------------------------------------------------------------------------------- /src/Widgets/CategoryRow.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 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 | */ 20 | 21 | public class Feedback.CategoryRow : Gtk.ListBoxRow { 22 | public Feedback.MainWindow.Category category { get; construct; } 23 | 24 | public CategoryRow (Feedback.MainWindow.Category category) { 25 | Object (category: category); 26 | } 27 | 28 | construct { 29 | var label = new Gtk.Label (category.to_string ()) { 30 | hexpand = true, 31 | xalign = 0 32 | }; 33 | 34 | var caret = new Gtk.Image.from_icon_name ("pan-end-symbolic"); 35 | 36 | var box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0) { 37 | margin_top = 3, 38 | margin_end = 6, 39 | margin_bottom = 3, 40 | margin_start = 6 41 | }; 42 | box.append (label); 43 | box.append (caret); 44 | 45 | child = box; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /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_TW 192 | zu 193 | ace 194 | fil 195 | sr@latin 196 | aa 197 | ab 198 | gn 199 | an 200 | id_ID 201 | frp 202 | ca@valencia 203 | en_ZA 204 | pap 205 | sco 206 | zh_HK 207 | zh_HANT 208 | zh_HANS 209 | -------------------------------------------------------------------------------- /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_TW 192 | zu 193 | ace 194 | fil 195 | sr@latin 196 | aa 197 | ab 198 | gn 199 | an 200 | id_ID 201 | frp 202 | ca@valencia 203 | en_ZA 204 | pap 205 | sco 206 | zh_HK 207 | zh_HANT 208 | zh_HANS 209 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: as\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ba.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ba\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/bi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/bm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ce\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ch.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ch\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: co\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/cu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gd\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/gn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ho.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ho\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ht\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ia\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ii\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ik.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ik\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: io\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/iu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: iu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kj.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: km\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ks\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/kw.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ky\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: li\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ln\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/lu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/mh.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ml\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/mt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/nd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: nd\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: no\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/nr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: nr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: om\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/os.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: os\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/qu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: qu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: rm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/rn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: rn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: rw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sc\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/se.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: se\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ss.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ss\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/st.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: st\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/su.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: su\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ti.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ti\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tk\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/tn.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ty.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ty\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /po/ve.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.feedback package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.feedback\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-11-25 21:56+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/MainWindow.vala:30 20 | msgid "Feedback" 21 | msgstr "" 22 | 23 | #: src/MainWindow.vala:40 24 | msgid "Send feedback for which component?" 25 | msgstr "" 26 | 27 | #: src/MainWindow.vala:49 28 | msgid "" 29 | "Select an item from the list to send feedback or report a problem from your " 30 | "web browser." 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:58 34 | msgid "Search" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:74 src/MainWindow.vala:76 38 | msgid "Categories" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:102 42 | msgid "" 43 | "Change search terms to the name of an installed app, panel indicator, system " 44 | "settings page, or desktop component." 45 | msgstr "" 46 | 47 | #: src/MainWindow.vala:208 48 | msgid "Components" 49 | msgstr "" 50 | 51 | #: src/MainWindow.vala:220 52 | msgid "Cancel" 53 | msgstr "" 54 | 55 | #: src/MainWindow.vala:224 56 | msgid "Send Feedback…" 57 | msgstr "" 58 | 59 | #: src/MainWindow.vala:315 60 | #, c-format 61 | msgid "No results found for “%s”" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:316 65 | msgid "Search Results" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:449 69 | msgid "Panel Indicators" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:451 73 | msgid "System Settings" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:453 77 | msgid "Desktop Components" 78 | msgstr "" 79 | 80 | #: src/MainWindow.vala:455 81 | msgid "Default Apps" 82 | msgstr "" 83 | --------------------------------------------------------------------------------