├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── gettext.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── COPYING ├── README.md ├── data ├── agent-polkit-daemon.desktop.in ├── agent-polkit.desktop.in.in ├── agent-polkit.metainfo.xml.in ├── meson.build └── screenshot.png ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ace.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 │ ├── ace.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 │ ├── frp.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 │ ├── id_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 │ ├── sco.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 ├── frp.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 ├── id_ID.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.elementary.desktop.agent-polkit.pot ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── 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 ├── sco.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 ├── Agent.vala ├── Application.vala ├── Interfaces.vala └── PolkitDialog.vala /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | root = true 3 | 4 | # elementary defaults 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = tab 9 | indent_style = space 10 | insert_final_newline = true 11 | max_line_length = 80 12 | tab_width = 4 13 | 14 | [{*.xml,*.xml.in,*.yml}] 15 | tab_width = 2 16 | 17 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.github/workflows/gettext.yml: -------------------------------------------------------------------------------- 1 | name: Gettext Updates 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | 7 | jobs: 8 | gettext_template: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: Clone repository 13 | uses: actions/checkout@v4 14 | with: 15 | token: ${{ secrets.GIT_USER_TOKEN }} 16 | 17 | - name: Update Translation Files 18 | uses: elementary/actions/gettext-template@main 19 | env: 20 | GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} 21 | GIT_USER_NAME: "elementaryBot" 22 | GIT_USER_EMAIL: "builds@elementary.io" 23 | -------------------------------------------------------------------------------- /.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 libgranite-7-dev libgtk-4-dev libpantheon-wayland-1-dev libpolkit-agent-1-dev libpolkit-gobject-1-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 | 37 | runs-on: ubuntu-latest 38 | 39 | container: 40 | image: valalang/lint 41 | 42 | steps: 43 | - uses: actions/checkout@v4 44 | - name: Lint 45 | run: io.elementary.vala-lint -d . 46 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | pull_request: 5 | branches: [main] 6 | types: [closed] 7 | jobs: 8 | release: 9 | runs-on: ubuntu-latest 10 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: elementary/actions/release@master 14 | env: 15 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 16 | GIT_USER_NAME: "elementaryBot" 17 | GIT_USER_EMAIL: "builds@elementary.io" 18 | with: 19 | release_branch: 'noble' 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Pantheon Polkit Agent 2 | [![Translation status](https://l10n.elementary.io/widgets/desktop/-/pantheon-agent-polkit/svg-badge.svg)](https://l10n.elementary.io/engage/desktop/?utm_source=widget) 3 | 4 | ![](https://raw.githubusercontent.com/elementary/pantheon-agent-polkit/master/data/screenshot.png) 5 | 6 | ## Building, Testing, and Installation 7 | 8 | You'll need the following dependencies: 9 | * libadwaita-1-dev 10 | * libgranite-7-dev (>= 7.0.0) 11 | * libgtk-4-dev 12 | * libpantheon-wayland-1-dev 13 | * libpolkit-gobject-1-dev 14 | * libpolkit-agent-1-dev 15 | * meson 16 | * valac (>= 0.34.1) 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/agent-polkit-daemon.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=PolicyKit Authentication Agent 3 | Comment=PolicyKit Authentication Agent 4 | Exec=@PKEXECDIR@/@EXEC_NAME@ 5 | Terminal=false 6 | Type=Application 7 | Categories= 8 | NoDisplay=true 9 | OnlyShowIn=Pantheon; 10 | X-GNOME-AutoRestart=true 11 | AutostartCondition=GNOME3 unless-session gnome 12 | -------------------------------------------------------------------------------- /data/agent-polkit.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Authentication Dialog 3 | Exec=@PKEXECDIR@/@EXEC_NAME@ 4 | Icon=dialog-password 5 | Terminal=false 6 | Type=Application 7 | StartupNotify=false 8 | NoDisplay=true 9 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | # Desktop File 2 | desktop_in = configure_file( 3 | input: 'agent-polkit.desktop.in.in', 4 | output: '@BASENAME@', 5 | configuration: conf_data 6 | ) 7 | 8 | i18n.merge_file( 9 | input: desktop_in, 10 | output: meson.project_name() + '.desktop', 11 | po_dir: join_paths(meson.source_root(), 'po'), 12 | type: 'desktop', 13 | install: true, 14 | install_dir: join_paths(get_option('datadir'), 'applications') 15 | ) 16 | 17 | i18n.merge_file( 18 | input: 'agent-polkit.metainfo.xml.in', 19 | output: meson.project_name() + '.metainfo.xml', 20 | install: true, 21 | install_dir: get_option('datadir') / 'metainfo', 22 | po_dir: meson.source_root () / 'po' / 'extra' 23 | ) 24 | 25 | # Daemon File 26 | configure_file( 27 | input: 'agent-polkit-daemon.desktop.in', 28 | output: meson.project_name() + '.desktop', 29 | configuration: conf_data, 30 | install_dir: join_paths(get_option('sysconfdir'), 'xdg', 'autostart') 31 | ) 32 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/pantheon-agent-polkit/947208fdb36253b6272c7f42dc91034093b747b6/data/screenshot.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'io.elementary.desktop.agent-polkit', 3 | 'vala', 'c', 4 | version: '8.0.1' 5 | ) 6 | 7 | install_path = join_paths(get_option('prefix'), get_option('libexecdir'), 'policykit-1-pantheon') 8 | i18n = import('i18n') 9 | 10 | add_global_arguments('-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), language:'c') 11 | 12 | executable( 13 | meson.project_name(), 14 | 'src/Application.vala', 15 | 'src/Agent.vala', 16 | 'src/PolkitDialog.vala', 17 | 'src/Interfaces.vala', 18 | dependencies: [ 19 | dependency('libadwaita-1'), 20 | dependency('glib-2.0'), 21 | dependency('gobject-2.0'), 22 | dependency('granite-7', version: '>=7.0.0'), 23 | dependency('gtk4'), 24 | dependency('polkit-agent-1'), 25 | dependency('polkit-gobject-1'), 26 | dependency('pantheon-wayland-1'), 27 | meson.get_compiler('vala').find_library('posix') 28 | ], 29 | c_args: [ 30 | '-DPOLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE', 31 | ], 32 | install: true, 33 | install_dir: install_path 34 | ) 35 | 36 | conf_data = configuration_data() 37 | conf_data.set('EXEC_NAME', meson.project_name()) 38 | conf_data.set('PKEXECDIR', install_path) 39 | 40 | subdir('data') 41 | subdir('po') 42 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Agent.vala 2 | src/Application.vala 3 | src/Interfaces.vala 4 | src/PolkitDialog.vala 5 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ace.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: ace\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/PolkitDialog.vala:52 9 | msgid "Authentication Dialog" 10 | msgstr "" 11 | 12 | #: src/PolkitDialog.vala:60 13 | msgid "Authentication Required" 14 | msgstr "" 15 | 16 | #: src/PolkitDialog.vala:68 17 | msgid "Password" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:111 21 | msgid "Cancel" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:114 25 | msgid "Authenticate" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:168 29 | #, c-format 30 | msgid "Group: %s" 31 | msgstr "" 32 | 33 | #: src/PolkitDialog.vala:262 34 | msgid "Authentication failed. Please try again." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-12-07 15:33+0000\n" 7 | "Last-Translator: aberba \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Pono a Ɛma Wo Hokwan Ma Woyɛ Biribi" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Ɛwɔ sɛ woma hokwan" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Password" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Gyae" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Ma Hokwan" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Kuo: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Antumi amma wo hokwan. Mesrɛ wo, yɛ no bio." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Wo Nipaban:" 47 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ba.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/bi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/bm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-11-18 10:34+0000\n" 7 | "Last-Translator: Davidmp \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Diàleg d'autenticació" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Cal autenticació" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Contrasenya" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Cancel·la" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autentica" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grup: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Ha fallat l'autenticació. Torneu a intentar-ho." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identitat:" 47 | -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: ca@valencia\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ch.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/PolkitDialog.vala:52 9 | msgid "Authentication Dialog" 10 | msgstr "" 11 | 12 | #: src/PolkitDialog.vala:60 13 | msgid "Authentication Required" 14 | msgstr "" 15 | 16 | #: src/PolkitDialog.vala:68 17 | msgid "Password" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:111 21 | msgid "Cancel" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:114 25 | msgid "Authenticate" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:168 29 | #, c-format 30 | msgid "Group: %s" 31 | msgstr "" 32 | 33 | #: src/PolkitDialog.vala:262 34 | msgid "Authentication failed. Please try again." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2017-02-01 23:55+0000\n" 7 | "Last-Translator: Christos Iatropoulos \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Διάλογος επαλήθευσης" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Απαιτείται επαλήθευση" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Συνθηματικό" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Ακύρωση" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Επαλήθευση" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Ομάδα: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Η επαλήθευση απέτυχε. Παρακαλώ δοκιμάστε ξανά." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Ταυτότητα:" 47 | -------------------------------------------------------------------------------- /po/en_ZA.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: en_ZA\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2019-07-12 05:46+0000\n" 7 | "Last-Translator: Shtonchjo \n" 8 | "Language-Team: Esperanto \n" 10 | "Language: eo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Weblate 3.6.1\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "Aŭtentiga dialogo" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "Necesas aŭtentigo" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "Pasvorto" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "Rezigni" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "Aŭtentigi" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "Grupo: %s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "Malsukcesis aŭtentigo. Reprovu." 46 | -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/agent-polkit.desktop.in.in 2 | data/agent-polkit-daemon.desktop.in 3 | data/agent-polkit.metainfo.xml.in 4 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: '--directory=' + meson.source_root(), 3 | preset: 'glib', 4 | install: false, 5 | ) 6 | -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2024-08-07 17:16+0000\n" 7 | "Last-Translator: anonymous \n" 8 | "Language-Team: Persian \n" 10 | "Language: fa\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | "X-Generator: Weblate 5.6.2\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "لغو" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-10-30 16:26+0000\n" 7 | "Last-Translator: Jiri Grönroos \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Tunnistautumisikkuna" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Tunnistautuminen vaaditaan" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Salasana" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Peru" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Tunnistaudu" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Ryhmä: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Tunnistautuminen epäonnistui. Yritä uudelleen." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identiteetti:" 47 | -------------------------------------------------------------------------------- /po/fil.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fil\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: frp\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/gd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2019-09-19 18:26+0000\n" 7 | "Last-Translator: Daniel R. \n" 8 | "Language-Team: Galician \n" 10 | "Language: gl\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Weblate 3.7.1\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "Diálogo de autenticación" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "Requírese autenticación" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "Contrasinal" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "Cancelar" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "Autenticar" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "Grupo: %s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "Fallo de autenticación. Ténteo de novo." 46 | -------------------------------------------------------------------------------- /po/gn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ho.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-11-02 16:36+0000\n" 7 | "Last-Translator: gogo \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Dijalog ovjere" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Potrebna je ovjera" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Lozinka" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Odustani" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Ovjeri" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grupa: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Neuspjela ovjera. Pokušajte ponovno." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identitet:" 47 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: id_ID\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "PO-Revision-Date: 2025-03-19 19:56+0000\n" 6 | "Last-Translator: Carmina16 \n" 7 | "Language-Team: Occidental \n" 9 | "Language: ie\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Generator: Weblate 5.10.4\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Dialog de autentification" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Autentification es besonat" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Contrasigne" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Anullar" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autentificar" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Gruppe: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Autentification ne successat. Ples provar denov." 44 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ik.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/io.elementary.desktop.agent-polkit.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: src/PolkitDialog.vala:52 21 | msgid "Authentication Dialog" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:60 25 | msgid "Authentication Required" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:68 29 | msgid "Password" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:111 33 | msgid "Cancel" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:114 37 | msgid "Authenticate" 38 | msgstr "" 39 | 40 | #: src/PolkitDialog.vala:168 41 | #, c-format 42 | msgid "Group: %s" 43 | msgstr "" 44 | 45 | #: src/PolkitDialog.vala:262 46 | msgid "Authentication failed. Please try again." 47 | msgstr "" 48 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2017-01-26 13:26+0000\n" 7 | "Last-Translator: Fabio Zaramella \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Finestra di autenticazione" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Autenticazione richiesta" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Password" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Annulla" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autentica" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Gruppo: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Autenticazione non riuscita. Riprova." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identità:" 47 | -------------------------------------------------------------------------------- /po/iu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2018-12-03 00:08+0000\n" 7 | "Last-Translator: Ryo Nakano \n" 8 | "Language-Team: Japanese \n" 10 | "Language: ja\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Generator: Weblate 3.0.1\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "認証ダイアログ" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "認証が必要です" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "パスワード" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "キャンセル" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "認証" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "グループ: %s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "認証に失敗しました。もう一度お試しください。" 46 | 47 | #~ msgid "Identity:" 48 | #~ msgstr "ID:" 49 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/kj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2024-08-07 17:16+0000\n" 7 | "Last-Translator: anonymous \n" 8 | "Language-Team: Kazakh \n" 10 | "Language: kk\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Weblate 5.6.2\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "Аутентификация сұхбаты" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /po/kl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2021-10-07 17:05+0000\n" 7 | "Last-Translator: harrylim05 \n" 8 | "Language-Team: Korean \n" 10 | "Language: ko\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Generator: Weblate 4.4.2\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "인증 창" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "인증이 필요합니다" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "비밀번호" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "뒤로" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "인증" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "그룹: %s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "인증에 실패했습니다. 다시 해보세요." 46 | 47 | #~ msgid "Identity:" 48 | #~ msgstr "아이디:" 49 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2017-01-28 14:52+0000\n" 7 | "Last-Translator: Rokar ✌ \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Diyaloga Piştrastkirinê" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Piştrastkirina Nasnameyê Divê" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Şîfre" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Betal bike" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Naskirina nasnamê" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "kom: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "resenî ketî. kerema xwe dîsa dest pê bike." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "nasname:" 47 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/kw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-10-31 09:54+0000\n" 7 | "Last-Translator: Moo \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Tapatybės nustatymo dialogas" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Reikalingas tapatybės nustatymas" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Slaptažodis" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Atsisakyti" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Nustatyti tapatybę" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grupė: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Tapatybės nustatymas nepavyko. Prašome bandyti vėl." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Tapatybė:" 47 | -------------------------------------------------------------------------------- /po/lu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2024-12-25 04:16+0000\n" 7 | "Last-Translator: anonymous \n" 8 | "Language-Team: Latvian \n" 10 | "Language: lv\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= " 15 | "19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" 16 | "X-Generator: Weblate 5.8.4\n" 17 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "Parole" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: '--directory=' + meson.source_root(), 3 | preset: 'glib' 4 | ) 5 | subdir('extra') 6 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/mh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/mo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "PO-Revision-Date: 2018-05-27 00:04+0000\n" 6 | "Last-Translator: Romanic Ion Nicușor \n" 7 | "Language-Team: Moldovan \n" 9 | "Language: mo\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Generator: Weblate 2.18\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Dialogul de autentificare" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Autentificare necesară" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Parolă" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Anulare" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autentifică" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grup: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Autentificare eșuată. Vă rugăm să încercați din nou." 44 | -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2018-10-27 13:50+0000\n" 7 | "Last-Translator: Prachi Joshi \n" 8 | "Language-Team: Marathi \n" 10 | "Language: mr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | "X-Generator: Weblate 3.0.1\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "प्रमाणीकरण संवाद" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "प्रमाणीकरण आवश्यक" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "पासवर्ड" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "रद्द" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "प्रमाणित करा" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "गटः%s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "प्रमाणीकरण अयशस्वी. कृपया पुन्हा प्रयत्न करा." 46 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2024-08-07 17:16+0000\n" 7 | "Last-Translator: anonymous \n" 8 | "Language-Team: Malay \n" 10 | "Language: ms\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Generator: Weblate 5.6.2\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "Dialog Pengesahan" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /po/mt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/nd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+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/PolkitDialog.vala:52 10 | msgid "Authentication Dialog" 11 | msgstr "" 12 | 13 | #: src/PolkitDialog.vala:60 14 | msgid "Authentication Required" 15 | msgstr "" 16 | 17 | #: src/PolkitDialog.vala:68 18 | msgid "Password" 19 | msgstr "" 20 | 21 | #: src/PolkitDialog.vala:111 22 | msgid "Cancel" 23 | msgstr "" 24 | 25 | #: src/PolkitDialog.vala:114 26 | msgid "Authenticate" 27 | msgstr "" 28 | 29 | #: src/PolkitDialog.vala:168 30 | #, c-format 31 | msgid "Group: %s" 32 | msgstr "" 33 | 34 | #: src/PolkitDialog.vala:262 35 | msgid "Authentication failed. Please try again." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /po/nr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2020-08-29 20:13+0000\n" 7 | "Last-Translator: Mejans \n" 8 | "Language-Team: Occitan \n" 10 | "Language: oc\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | "X-Generator: Weblate 3.9.1\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "Senhal" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "Anullar" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "S’autentificar" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "Grop : %s" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/os.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2024-08-07 17:16+0000\n" 7 | "Last-Translator: anonymous \n" 8 | "Language-Team: Punjabi \n" 10 | "Language: pa\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | "X-Generator: Weblate 5.6.2\n" 16 | "X-Launchpad-Export-Date: 2017-02-20 06:07+0000\n" 17 | 18 | #: src/PolkitDialog.vala:52 19 | msgid "Authentication Dialog" 20 | msgstr "" 21 | 22 | #: src/PolkitDialog.vala:60 23 | msgid "Authentication Required" 24 | msgstr "" 25 | 26 | #: src/PolkitDialog.vala:68 27 | msgid "Password" 28 | msgstr "" 29 | 30 | #: src/PolkitDialog.vala:111 31 | msgid "Cancel" 32 | msgstr "ਰੱਦ ਕਰੋ" 33 | 34 | #: src/PolkitDialog.vala:114 35 | msgid "Authenticate" 36 | msgstr "" 37 | 38 | #: src/PolkitDialog.vala:168 39 | #, c-format 40 | msgid "Group: %s" 41 | msgstr "" 42 | 43 | #: src/PolkitDialog.vala:262 44 | msgid "Authentication failed. Please try again." 45 | msgstr "" 46 | -------------------------------------------------------------------------------- /po/pap.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pap\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/PolkitDialog.vala:52 9 | msgid "Authentication Dialog" 10 | msgstr "" 11 | 12 | #: src/PolkitDialog.vala:60 13 | msgid "Authentication Required" 14 | msgstr "" 15 | 16 | #: src/PolkitDialog.vala:68 17 | msgid "Password" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:111 21 | msgid "Cancel" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:114 25 | msgid "Authenticate" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:168 29 | #, c-format 30 | msgid "Group: %s" 31 | msgstr "" 32 | 33 | #: src/PolkitDialog.vala:262 34 | msgid "Authentication failed. Please try again." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-11-13 17:38+0000\n" 7 | "Last-Translator: Damian Woźniak \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Okno uwierzytelniania" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Wymagane uwierzytelnienie" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Hasło" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Anuluj" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Uwierzytelnij" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grupa: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Uwierzytelnianie nie powiodło się. Proszę spróbować ponownie." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Tożsamość:" 47 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-12-16 10:42+0000\n" 7 | "Last-Translator: Saulo De Baco \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Diálogo de autenticação" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Autenticação necessária" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Senha" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Cancelar" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autenticar" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grupo: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Falha de autenticação. Tente novamente." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identidade:" 47 | -------------------------------------------------------------------------------- /po/qu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/rn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-12-13 11:16+0000\n" 7 | "Last-Translator: Marius Albina \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Dialog de autentificare" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Necesită autentificare" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Parolă" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Anulează" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Autentificare" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Grup: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Autentificare eșuată. Reîncercați." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identitate:" 47 | -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-11-29 08:36+0000\n" 7 | "Last-Translator: Kirill Romanov \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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Диалог аутентификации" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Требуется аутентификация" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Пароль" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Отменить" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Аутентифицировать" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Группа: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Ошибка аутентификации. Попробуйте снова." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Идентификация:" 47 | -------------------------------------------------------------------------------- /po/rue.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/se.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:07+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-10-30 13:28+0000\n" 7 | "Last-Translator: Jernej Virag \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Pogovorno okno overitve" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Zahtevana je overitev" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Geslo" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Prekliči" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Overi" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Skupina: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Overjanje ni uspelo. Prosim, poskusite znova." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Identiteta:" 47 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sma.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2017-01-06 08:15+0000\n" 7 | "Last-Translator: filip \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "Прозорче за потврђивање идентитета" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "Потребно је потврђивање идентитета" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "Лозинка" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "Откажи" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "Потврди идентитет" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "Група: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "Потврђивање идентитета није успело. Покушајте поново." 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "Идентитет:" 47 | -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.elementary.desktop.agent-polkit package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.elementary.desktop.agent-polkit\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-11-19 22:17+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: sr@latin\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: src/PolkitDialog.vala:52 20 | msgid "Authentication Dialog" 21 | msgstr "" 22 | 23 | #: src/PolkitDialog.vala:60 24 | msgid "Authentication Required" 25 | msgstr "" 26 | 27 | #: src/PolkitDialog.vala:68 28 | msgid "Password" 29 | msgstr "" 30 | 31 | #: src/PolkitDialog.vala:111 32 | msgid "Cancel" 33 | msgstr "" 34 | 35 | #: src/PolkitDialog.vala:114 36 | msgid "Authenticate" 37 | msgstr "" 38 | 39 | #: src/PolkitDialog.vala:168 40 | #, c-format 41 | msgid "Group: %s" 42 | msgstr "" 43 | 44 | #: src/PolkitDialog.vala:262 45 | msgid "Authentication failed. Please try again." 46 | msgstr "" 47 | -------------------------------------------------------------------------------- /po/ss.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/st.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/su.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/szl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "PO-Revision-Date: 2020-02-25 22:08+0000\n" 6 | "Last-Translator: gkkulik \n" 7 | "Language-Team: Silesian \n" 9 | "Language: szl\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 14 | "|| n%100>=20) ? 1 : 2;\n" 15 | "X-Generator: Weblate 3.9.1\n" 16 | 17 | #: src/PolkitDialog.vala:52 18 | msgid "Authentication Dialog" 19 | msgstr "Ôkno dialogowe autoryzacyje" 20 | 21 | #: src/PolkitDialog.vala:60 22 | msgid "Authentication Required" 23 | msgstr "Wymogano autoryzacyjo" 24 | 25 | #: src/PolkitDialog.vala:68 26 | msgid "Password" 27 | msgstr "Hasło" 28 | 29 | #: src/PolkitDialog.vala:111 30 | msgid "Cancel" 31 | msgstr "Pociep" 32 | 33 | #: src/PolkitDialog.vala:114 34 | msgid "Authenticate" 35 | msgstr "Autoryzacyjo" 36 | 37 | #: src/PolkitDialog.vala:168 38 | #, c-format 39 | msgid "Group: %s" 40 | msgstr "Grupa: %s" 41 | 42 | #: src/PolkitDialog.vala:262 43 | msgid "Authentication failed. Please try again." 44 | msgstr "Autoryzacyjo sie niy podarziła. Sprōbuj zaś." 45 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ti.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:24+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ty.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-12-07 10:30+0000\n" 7 | "Last-Translator: ablimet \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "باشقۇرغۇچى پارولى" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "سالاھىيەت دەلىللەش زۆرۈر" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "پارول" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "ئەمەلدىن قالدۇراي" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "سالاھىيەت دەلىللەش" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "گۇرۇپپا:%s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "سالاھىيەت دەلىللەش مەغلۇپ بولدى" 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "سالاھىيەت" 47 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/ve.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/PolkitDialog.vala:52 9 | msgid "Authentication Dialog" 10 | msgstr "" 11 | 12 | #: src/PolkitDialog.vala:60 13 | msgid "Authentication Required" 14 | msgstr "" 15 | 16 | #: src/PolkitDialog.vala:68 17 | msgid "Password" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:111 21 | msgid "Cancel" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:114 25 | msgid "Authenticate" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:168 29 | #, c-format 30 | msgid "Group: %s" 31 | msgstr "" 32 | 33 | #: src/PolkitDialog.vala:262 34 | msgid "Authentication failed. Please try again." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/wo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/yi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/za.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 5 | "PO-Revision-Date: 2021-09-11 06:58+0000\n" 6 | "Last-Translator: XXTXTOP \n" 7 | "Language-Team: Chinese \n" 9 | "Language: zh\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Generator: Weblate 4.4.2\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "权限认证对话框" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "需要验证" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "密码" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "取消" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "认证" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "组: %s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "认证失败。请重试。" 44 | -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-11-03 05:35+0000\n" 7 | "Last-Translator: colindemian \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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "权限认证对话框" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "需要进行身份认证" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "密码" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "取消" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "认证" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "群组:%s" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "认证失败,请重试。" 44 | 45 | #~ msgid "Identity:" 46 | #~ msgstr "身份:" 47 | -------------------------------------------------------------------------------- /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: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2024-11-19 22:17+0000\n" 6 | "PO-Revision-Date: 2016-07-28 02:23+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-02-20 06:08+0000\n" 14 | "X-Generator: Launchpad (build 18326)\n" 15 | 16 | #: src/PolkitDialog.vala:52 17 | msgid "Authentication Dialog" 18 | msgstr "" 19 | 20 | #: src/PolkitDialog.vala:60 21 | msgid "Authentication Required" 22 | msgstr "" 23 | 24 | #: src/PolkitDialog.vala:68 25 | msgid "Password" 26 | msgstr "" 27 | 28 | #: src/PolkitDialog.vala:111 29 | msgid "Cancel" 30 | msgstr "" 31 | 32 | #: src/PolkitDialog.vala:114 33 | msgid "Authenticate" 34 | msgstr "" 35 | 36 | #: src/PolkitDialog.vala:168 37 | #, c-format 38 | msgid "Group: %s" 39 | msgstr "" 40 | 41 | #: src/PolkitDialog.vala:262 42 | msgid "Authentication failed. Please try again." 43 | msgstr "" 44 | --------------------------------------------------------------------------------