├── .github ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── COPYING ├── README.md ├── data ├── KeyboardIcon.css ├── keyboard.gresource.xml ├── keyboard.gschema.xml ├── keyboard.metainfo.xml.in ├── meson.build └── screenshot.png ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── en_ZA.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── aa.po │ ├── ab.po │ ├── ae.po │ ├── af.po │ ├── ak.po │ ├── am.po │ ├── an.po │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── az.po │ ├── ba.po │ ├── be.po │ ├── bg.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bn.po │ ├── bo.po │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── ca@valencia.po │ ├── ce.po │ ├── ch.po │ ├── ckb.po │ ├── co.po │ ├── cr.po │ ├── cs.po │ ├── cu.po │ ├── cv.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── el.po │ ├── en_AU.po │ ├── en_CA.po │ ├── en_GB.po │ ├── en_ZA.po │ ├── eo.po │ ├── es.po │ ├── et.po │ ├── eu.po │ ├── extra.pot │ ├── fa.po │ ├── ff.po │ ├── fi.po │ ├── fil.po │ ├── fj.po │ ├── fo.po │ ├── fr.po │ ├── fr_CA.po │ ├── fy.po │ ├── ga.po │ ├── gd.po │ ├── gl.po │ ├── gn.po │ ├── gu.po │ ├── gv.po │ ├── ha.po │ ├── he.po │ ├── hi.po │ ├── ho.po │ ├── hr.po │ ├── ht.po │ ├── hu.po │ ├── hy.po │ ├── hz.po │ ├── ia.po │ ├── id.po │ ├── ie.po │ ├── ig.po │ ├── ii.po │ ├── ik.po │ ├── io.po │ ├── is.po │ ├── it.po │ ├── iu.po │ ├── ja.po │ ├── jv.po │ ├── ka.po │ ├── kg.po │ ├── ki.po │ ├── kj.po │ ├── kk.po │ ├── kl.po │ ├── km.po │ ├── kn.po │ ├── ko.po │ ├── kr.po │ ├── ks.po │ ├── ku.po │ ├── kv.po │ ├── kw.po │ ├── ky.po │ ├── la.po │ ├── lb.po │ ├── lg.po │ ├── li.po │ ├── ln.po │ ├── lo.po │ ├── lt.po │ ├── lu.po │ ├── lv.po │ ├── meson.build │ ├── mg.po │ ├── mh.po │ ├── mi.po │ ├── mk.po │ ├── ml.po │ ├── mn.po │ ├── mo.po │ ├── mr.po │ ├── ms.po │ ├── mt.po │ ├── my.po │ ├── na.po │ ├── nb.po │ ├── nd.po │ ├── ne.po │ ├── ng.po │ ├── nl.po │ ├── nn.po │ ├── no.po │ ├── nr.po │ ├── nv.po │ ├── ny.po │ ├── oc.po │ ├── oj.po │ ├── om.po │ ├── or.po │ ├── os.po │ ├── pa.po │ ├── pap.po │ ├── pi.po │ ├── pl.po │ ├── ps.po │ ├── pt.po │ ├── pt_BR.po │ ├── qu.po │ ├── rm.po │ ├── rn.po │ ├── ro.po │ ├── ru.po │ ├── rue.po │ ├── rw.po │ ├── sa.po │ ├── sc.po │ ├── sd.po │ ├── se.po │ ├── sg.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sm.po │ ├── sma.po │ ├── sn.po │ ├── so.po │ ├── sq.po │ ├── sr.po │ ├── sr@latin.po │ ├── ss.po │ ├── st.po │ ├── su.po │ ├── sv.po │ ├── sw.po │ ├── szl.po │ ├── ta.po │ ├── te.po │ ├── tg.po │ ├── th.po │ ├── ti.po │ ├── tk.po │ ├── tl.po │ ├── tn.po │ ├── to.po │ ├── tr.po │ ├── ts.po │ ├── tt.po │ ├── tw.po │ ├── ty.po │ ├── ug.po │ ├── uk.po │ ├── ur.po │ ├── uz.po │ ├── ve.po │ ├── vi.po │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zh_CN.po │ ├── zh_HK.po │ ├── zh_TW.po │ └── zu.po ├── fa.po ├── ff.po ├── fi.po ├── fil.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── keyboard-indicator.pot ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pap.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── sr@latin.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.po ├── szl.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── tr.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── ve.po ├── vi.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── src ├── Config.vala.in ├── Indicator.vala ├── LayoutButton.vala └── PopoverWidget.vala /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | 3 | on: 4 | push: 5 | branches: [master] 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-22.04 10 | container: 11 | image: ghcr.io/elementary/docker:next-unstable 12 | 13 | steps: 14 | - name: Install git 15 | run: | 16 | apt-get update 17 | apt-get install git -y 18 | 19 | - name: Clone repository 20 | uses: actions/checkout@v4 21 | with: 22 | token: ${{ secrets.GIT_USER_TOKEN }} 23 | 24 | - name: Update Translation Files 25 | uses: elementary/actions/gettext-template@next 26 | env: 27 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 28 | GIT_USER_NAME: "elementaryBot" 29 | GIT_USER_EMAIL: "builds@elementary.io" 30 | -------------------------------------------------------------------------------- /.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@v4 23 | - name: Install Dependencies 24 | run: | 25 | apt update 26 | apt install -y gobject-introspection libglib2.0-dev libgranite-dev libwingpanel-dev libibus-1.0-dev libxml2-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@v4 43 | - name: Lint 44 | run: io.elementary.vala-lint -d . 45 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | pull_request: 5 | branches: [master] 6 | types: [closed] 7 | jobs: 8 | release: 9 | runs-on: ubuntu-latest 10 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: elementary/actions/release@master 14 | env: 15 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 16 | GIT_USER_NAME: "elementaryBot" 17 | GIT_USER_EMAIL: "builds@elementary.io" 18 | with: 19 | release_branch: "odin" 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wingpanel Keyboard Indicator 2 | [![Translation status](https://l10n.elementary.io/widgets/wingpanel/-/wingpanel-indicator-keyboard/svg-badge.svg)](https://l10n.elementary.io/projects/wingpanel/wingpanel-indicator-keyboard) 3 | 4 | ![Screenshot](data/screenshot.png?raw=true) 5 | 6 | ## Building and Installation 7 | 8 | You'll need the following dependencies: 9 | 10 | * gobject-introspection 11 | * libglib2.0-dev 12 | * libgranite-dev 13 | * libwingpanel-dev 14 | * libxml2-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 | -------------------------------------------------------------------------------- /data/KeyboardIcon.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 elementary, Inc. (https://elementary.io) 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see . 16 | */ 17 | 18 | .keyboard-icon { 19 | background-color: #fff; 20 | border-radius: 2px; 21 | box-shadow: 22 | 0 0 2px alpha (#000, 0.3), 23 | 0 1px 2px alpha (#000, 0.6); 24 | color: #333; 25 | font-weight: 600; 26 | padding: 0 3px; 27 | text-shadow: none; 28 | } 29 | 30 | .panel.color-light .keyboard-icon { 31 | background-color: alpha (#000, 0.65); 32 | box-shadow: 33 | 0 0 2px alpha (#fff, 0.3), 34 | 0 1px 0 alpha (#fff, 0.25); 35 | color: #fff; 36 | } 37 | -------------------------------------------------------------------------------- /data/keyboard.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | KeyboardIcon.css 5 | 6 | 7 | -------------------------------------------------------------------------------- /data/keyboard.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | Capslock Status 7 | Shows capslock key's status in the wingpanel 8 | 9 | 10 | false 11 | Numlock Status 12 | Shows numlock key's status in the wingpanel 13 | 14 | 15 | false 16 | Always show keyboard layout 17 | Shows the current keyboard layout even if there is only one available 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | i18n.merge_file( 2 | input: 'keyboard.metainfo.xml.in', 3 | output: 'io.elementary.wingpanel.keyboard.metainfo.xml', 4 | po_dir: meson.project_source_root() / 'po' / 'extra', 5 | type: 'xml', 6 | install: true, 7 | install_dir: get_option('datadir') / 'metainfo', 8 | ) 9 | 10 | install_data( 11 | 'keyboard.gschema.xml', 12 | install_dir: get_option('datadir') / 'glib-2.0' / 'schemas', 13 | rename: 'io.elementary.wingpanel.keyboard.gschema.xml' 14 | ) 15 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/wingpanel-indicator-keyboard/bd99017e37f36c5664d1eb5eaf58db7b1025c346/data/screenshot.png -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Indicator.vala 2 | src/LayoutButton.vala 3 | src/PopoverWidget.vala 4 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ba.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/bi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/bm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ch.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/keyboard.metainfo.xml.in 2 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /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-04-30 22:19+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/keyboard.metainfo.xml.in:11 20 | msgid "Keyboard Indicator" 21 | msgstr "" 22 | 23 | #: data/keyboard.metainfo.xml.in:12 24 | msgid "The keyboard indicator" 25 | msgstr "" 26 | 27 | #: data/keyboard.metainfo.xml.in:35 data/keyboard.metainfo.xml.in:44 28 | #: data/keyboard.metainfo.xml.in:53 29 | msgid "Minor updates:" 30 | msgstr "" 31 | 32 | #: data/keyboard.metainfo.xml.in:37 data/keyboard.metainfo.xml.in:46 33 | #: data/keyboard.metainfo.xml.in:57 data/keyboard.metainfo.xml.in:65 34 | #: data/keyboard.metainfo.xml.in:71 35 | msgid "Updated translations" 36 | msgstr "" 37 | 38 | #: data/keyboard.metainfo.xml.in:55 39 | msgid "Show IBus input methods" 40 | msgstr "" 41 | 42 | #: data/keyboard.metainfo.xml.in:56 43 | msgid "Show tooltip on hover" 44 | msgstr "" 45 | 46 | #: data/keyboard.metainfo.xml.in:64 47 | msgid "Optionally show CapsLock and Numlock indicators" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: ['--directory='+meson.project_source_root(), '--from-code=UTF-8'], 3 | install: false, 4 | ) 5 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Indicator.vala:35 10 | msgid "Num Lock is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:43 14 | msgid "Caps Lock is on" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:144 18 | msgid "Middle-click to switch to the next layout" 19 | msgstr "" 20 | 21 | #: src/PopoverWidget.vala:55 22 | msgid "Keyboard Layout" 23 | msgstr "" 24 | 25 | #: src/PopoverWidget.vala:62 26 | msgid "Input Method" 27 | msgstr "" 28 | 29 | #: src/PopoverWidget.vala:95 30 | msgid "Show Keyboard Layout" 31 | msgstr "" 32 | 33 | #: src/PopoverWidget.vala:108 34 | msgid "Keyboard Settings…" 35 | msgstr "" 36 | 37 | #: src/PopoverWidget.vala:385 38 | msgid "Default keyboard layout" 39 | msgstr "" 40 | 41 | #: src/PopoverWidget.vala:391 42 | #, c-format 43 | msgid "Keyboard Layout: %s" 44 | msgstr "" 45 | 46 | #: src/PopoverWidget.vala:398 47 | #, c-format 48 | msgid "Input Method: %s" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/gn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ho.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ik.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/iu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/kw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/lu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(gettext_name, 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib' 4 | ) 5 | 6 | subdir('extra') 7 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/mh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/mt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/nd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Indicator.vala:35 10 | msgid "Num Lock is on" 11 | msgstr "" 12 | 13 | #: src/Indicator.vala:43 14 | msgid "Caps Lock is on" 15 | msgstr "" 16 | 17 | #: src/Indicator.vala:144 18 | msgid "Middle-click to switch to the next layout" 19 | msgstr "" 20 | 21 | #: src/PopoverWidget.vala:55 22 | msgid "Keyboard Layout" 23 | msgstr "" 24 | 25 | #: src/PopoverWidget.vala:62 26 | msgid "Input Method" 27 | msgstr "" 28 | 29 | #: src/PopoverWidget.vala:95 30 | msgid "Show Keyboard Layout" 31 | msgstr "" 32 | 33 | #: src/PopoverWidget.vala:108 34 | msgid "Keyboard Settings…" 35 | msgstr "" 36 | 37 | #: src/PopoverWidget.vala:385 38 | msgid "Default keyboard layout" 39 | msgstr "" 40 | 41 | #: src/PopoverWidget.vala:391 42 | #, c-format 43 | msgid "Keyboard Layout: %s" 44 | msgstr "" 45 | 46 | #: src/PopoverWidget.vala:398 47 | #, c-format 48 | msgid "Input Method: %s" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /po/nr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/os.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/qu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/rn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/rue.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/se.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sma.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/ss.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/st.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/su.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/ti.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/tl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/tn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ty.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/ve.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/wo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/yi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/za.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 6 | "PO-Revision-Date: 2015-11-12 10:46+0000\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2017-04-05 07:46+0000\n" 14 | "X-Generator: Launchpad (build 18335)\n" 15 | 16 | #: src/Indicator.vala:35 17 | msgid "Num Lock is on" 18 | msgstr "" 19 | 20 | #: src/Indicator.vala:43 21 | msgid "Caps Lock is on" 22 | msgstr "" 23 | 24 | #: src/Indicator.vala:144 25 | msgid "Middle-click to switch to the next layout" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:55 29 | msgid "Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:62 33 | msgid "Input Method" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:95 37 | msgid "Show Keyboard Layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:108 41 | msgid "Keyboard Settings…" 42 | msgstr "" 43 | 44 | #: src/PopoverWidget.vala:385 45 | msgid "Default keyboard layout" 46 | msgstr "" 47 | 48 | #: src/PopoverWidget.vala:391 49 | #, c-format 50 | msgid "Keyboard Layout: %s" 51 | msgstr "" 52 | 53 | #: src/PopoverWidget.vala:398 54 | #, c-format 55 | msgid "Input Method: %s" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-04-30 22:19+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Indicator.vala:35 9 | msgid "Num Lock is on" 10 | msgstr "" 11 | 12 | #: src/Indicator.vala:43 13 | msgid "Caps Lock is on" 14 | msgstr "" 15 | 16 | #: src/Indicator.vala:144 17 | msgid "Middle-click to switch to the next layout" 18 | msgstr "" 19 | 20 | #: src/PopoverWidget.vala:55 21 | msgid "Keyboard Layout" 22 | msgstr "" 23 | 24 | #: src/PopoverWidget.vala:62 25 | msgid "Input Method" 26 | msgstr "" 27 | 28 | #: src/PopoverWidget.vala:95 29 | msgid "Show Keyboard Layout" 30 | msgstr "" 31 | 32 | #: src/PopoverWidget.vala:108 33 | msgid "Keyboard Settings…" 34 | msgstr "" 35 | 36 | #: src/PopoverWidget.vala:385 37 | msgid "Default keyboard layout" 38 | msgstr "" 39 | 40 | #: src/PopoverWidget.vala:391 41 | #, c-format 42 | msgid "Keyboard Layout: %s" 43 | msgstr "" 44 | 45 | #: src/PopoverWidget.vala:398 46 | #, c-format 47 | msgid "Input Method: %s" 48 | msgstr "" 49 | -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- 1 | namespace Constants { 2 | public const string XKB_BASE = "@XKB_BASE@"; 3 | public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; 4 | public const string LOCALEDIR = "@LOCALEDIR@"; 5 | } 6 | -------------------------------------------------------------------------------- /src/LayoutButton.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2025 elementary, Inc. (https://elementary.io) 3 | * SPDX-License-Identifier: LGPL-2.1-or-later 4 | */ 5 | 6 | // Cannot subclass Gtk.ModelButton so put it in a Bin 7 | public class Keyboard.Widgets.LayoutButton : Gtk.Bin { 8 | public string label { get; construct; } 9 | public string action_name { get; construct; } 10 | public Variant action_target { get; construct;} 11 | 12 | public bool active { get; set; } 13 | public uint32 index { get; set; } 14 | public string language_code { get; set; } 15 | public string? layout_variant { get; set; } 16 | public string manager_type { get; set; } 17 | public string source { get; set; } 18 | 19 | public LayoutButton (string _label, string _action_name, Variant _action_target) { 20 | Object ( 21 | label: _label, 22 | action_name: _action_name, 23 | action_target: _action_target 24 | ); 25 | } 26 | 27 | construct { 28 | var button = new Gtk.ModelButton () { 29 | text = label, 30 | action_name = action_name, 31 | action_target = action_target 32 | }; 33 | 34 | child = button; 35 | show_all (); 36 | 37 | bind_property ("active", button, "active", BIDIRECTIONAL); 38 | } 39 | } 40 | --------------------------------------------------------------------------------