├── .gitignore ├── po ├── extra │ ├── POTFILES │ ├── meson.build │ ├── 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 │ ├── pa.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 │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zu.po │ ├── ast.po │ ├── fil.po │ ├── pap.po │ ├── rue.po │ ├── ak.po │ ├── bn.po │ ├── bs.po │ ├── cv.po │ ├── eu.po │ ├── hi.po │ ├── hy.po │ └── jv.po ├── meson.build └── POTFILES ├── data ├── screenshot.png ├── meson.build └── icons │ └── active.svg ├── src ├── Config.vala.in └── Services │ ├── Session.vala │ └── Transfer.vala ├── .github ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── release.yml │ └── main.yml ├── .editorconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/bluetooth.metainfo.xml.in 2 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/panel-bluetooth/HEAD/data/screenshot.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(gettext_name, 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib' 4 | ) 5 | 6 | subdir('extra') 7 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | i18n.merge_file( 2 | input: 'bluetooth.metainfo.xml.in', 3 | output: 'io.elementary.wingpanel.bluetooth.metainfo.xml', 4 | po_dir: meson.project_source_root () / 'po' / 'extra', 5 | type: 'xml', 6 | install: true, 7 | install_dir: datadir / 'metainfo' 8 | ) 9 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Indicator.vala 2 | src/Services/Adapter.vala 3 | src/Services/Device.vala 4 | src/Services/Manager.vala 5 | src/Services/ObexManager.vala 6 | src/Services/Session.vala 7 | src/Services/Transfer.vala 8 | src/Widgets/Device.vala 9 | src/Widgets/DisplayWidget.vala 10 | src/Widgets/PopoverWidget.vala 11 | -------------------------------------------------------------------------------- /.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/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | on: 3 | push: 4 | branches: [main] 5 | 6 | jobs: 7 | gettext_template: 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: Clone repository 12 | uses: actions/checkout@v6 13 | with: 14 | token: ${{ secrets.GIT_USER_TOKEN }} 15 | 16 | - name: Update Translation Files 17 | uses: elementary/actions/gettext-template@main 18 | env: 19 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 20 | GIT_USER_NAME: "elementaryBot" 21 | GIT_USER_EMAIL: "builds@elementary.io" 22 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wingpanel Bluetooth Indicator 2 | [![Packaging status](https://repology.org/badge/tiny-repos/wingpanel-indicator-bluetooth.svg)](https://repology.org/metapackage/wingpanel-indicator-bluetooth) 3 | [![Translation status](https://l10n.elementaryos.org/widget/wingpanel/wingpanel-indicator-bluetooth/svg-badge.svg)](https://l10n.elementaryos.org/engage/wingpanel/) 4 | 5 | ![Screenshot](data/screenshot.png?raw=true) 6 | 7 | ## Building and Installation 8 | 9 | You'll need the following dependencies: 10 | 11 | gobject-introspection 12 | libglib2.0-dev 13 | libgranite-7-dev >= 7.0.0 14 | libwingpanel-8-dev 15 | meson >= 0.58.0 16 | valac 17 | 18 | Run `meson` to configure the build environment and then `ninja` to build 19 | 20 | meson build --prefix=/usr 21 | cd build 22 | ninja 23 | 24 | To install, use `ninja install` 25 | 26 | sudo ninja install 27 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | pull_request: 5 | types: 6 | - opened 7 | - reopened 8 | - synchronize 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | fail-fast: false 16 | matrix: 17 | version: [stable, unstable, development-target] 18 | container: 19 | image: ghcr.io/elementary/docker:${{ matrix.version }} 20 | 21 | steps: 22 | - uses: actions/checkout@v6 23 | - name: Install Dependencies 24 | run: | 25 | apt update 26 | apt install -y gobject-introspection libglib2.0-dev libgranite-7-dev libwingpanel-8-dev meson valac 27 | - name: Build 28 | env: 29 | DESTDIR: out 30 | run: | 31 | meson build 32 | ninja -C build 33 | ninja -C build install 34 | 35 | lint: 36 | runs-on: ubuntu-latest 37 | 38 | container: 39 | image: valalang/lint 40 | 41 | steps: 42 | - uses: actions/checkout@v6 43 | - name: Lint 44 | run: io.elementary.vala-lint -d . 45 | -------------------------------------------------------------------------------- /data/icons/active.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 11 | 15 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/Services/Session.vala: -------------------------------------------------------------------------------- 1 | /*- 2 | * Copyright (c) 2015-2018 elementary LLC. (https://elementary.io) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU Library General Public License as published by 6 | * the Free Software Foundation, either version 2.1 of the License, or 7 | * (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 12 | * GNU Library General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU Library General Public License 15 | * along with this program. If not, see . 16 | */ 17 | 18 | [DBus (name = "org.bluez.obex.Session1")] 19 | public interface BluetoothIndicator.Services.Obex.Session : Object { 20 | public abstract string get_capabilities () throws GLib.Error; 21 | public abstract string source { owned get; } 22 | public abstract string destination { owned get; } 23 | public abstract uchar channel { owned get; } 24 | public abstract string target { owned get; } 25 | public abstract string root { owned get; } 26 | } 27 | -------------------------------------------------------------------------------- /src/Services/Transfer.vala: -------------------------------------------------------------------------------- 1 | /*- 2 | * Copyright (c) 2015-2018 elementary LLC. (https://elementary.io) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU Library General Public License as published by 6 | * the Free Software Foundation, either version 2.1 of the License, or 7 | * (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 12 | * GNU Library General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU Library General Public License 15 | * along with this program. If not, see . 16 | */ 17 | 18 | [DBus (name = "org.bluez.obex.Transfer1")] 19 | public interface BluetoothIndicator.Services.Obex.Transfer : Object { 20 | public abstract void cancel () throws GLib.Error; 21 | public abstract string status { owned get; } 22 | public abstract ObjectPath session { owned get; } 23 | public abstract string name { owned get; } 24 | public abstract string Type { owned get; } 25 | public abstract uint64 time { owned get; } 26 | public abstract uint64 size { owned get; } 27 | public abstract uint64 transferred { owned get; } 28 | public abstract string filename { owned get; } 29 | } 30 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/pa.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: pa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/vo.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: vo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/wa.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: wa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/wo.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: wo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/xh.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: xh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/yi.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: yi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/yo.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: yo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/za.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: za\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/zh.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: zh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/zu.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: zu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/ast.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: ast\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/fil.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: fil\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/pap.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: pap\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/rue.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+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: rue\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/ak.po: -------------------------------------------------------------------------------- 1 | # Akan translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ak\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/bn.po: -------------------------------------------------------------------------------- 1 | # Bengali translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/bs.po: -------------------------------------------------------------------------------- 1 | # Bosnian translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bs\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/cv.po: -------------------------------------------------------------------------------- 1 | # Chuvash translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/eu.po: -------------------------------------------------------------------------------- 1 | # Basque translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: eu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/hy.po: -------------------------------------------------------------------------------- 1 | # Armenian translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/jv.po: -------------------------------------------------------------------------------- 1 | # Javanese translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2025-08-12 16:06+0000\n" 11 | "PO-Revision-Date: 2019-11-07 13:58-0800\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: jv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/bluetooth.metainfo.xml.in:12 20 | msgid "Bluetooth Indicator" 21 | msgstr "" 22 | 23 | #: data/bluetooth.metainfo.xml.in:13 24 | msgid "Connect and disconnect paired Bluetooth devices" 25 | msgstr "" 26 | 27 | #: data/bluetooth.metainfo.xml.in:28 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/bluetooth.metainfo.xml.in:36 data/bluetooth.metainfo.xml.in:48 32 | #: data/bluetooth.metainfo.xml.in:60 data/bluetooth.metainfo.xml.in:75 33 | msgid "Minor updates:" 34 | msgstr "" 35 | 36 | #: data/bluetooth.metainfo.xml.in:38 data/bluetooth.metainfo.xml.in:50 37 | #: data/bluetooth.metainfo.xml.in:62 data/bluetooth.metainfo.xml.in:78 38 | #: data/bluetooth.metainfo.xml.in:87 39 | msgid "Updated translations" 40 | msgstr "" 41 | 42 | #: data/bluetooth.metainfo.xml.in:77 43 | msgid "Improve restoring Bluetooth state on restart and resuming from suspend" 44 | msgstr "" 45 | 46 | #: data/bluetooth.metainfo.xml.in:85 47 | msgid "Add tooltip on hover" 48 | msgstr "" 49 | 50 | #: data/bluetooth.metainfo.xml.in:86 51 | msgid "Add a fallback device name for headphones" 52 | msgstr "" 53 | --------------------------------------------------------------------------------