├── .gitignore ├── .travis.yml ├── COPYING ├── README.md ├── TESTING.md ├── config.vala.in ├── data ├── appcenter.blacklist ├── apphive-daemon.desktop.in ├── apphive.appdata.xml.in ├── apphive.desktop.in.in ├── apphive.gresource.xml ├── apphive.gschema.xml ├── apphive.search-provider.ini.in ├── apphive.service.in ├── application.css ├── icons │ ├── 48 │ │ └── apphive.svg │ ├── 512 │ │ └── apphive.svg │ ├── apphive.svg │ ├── categories.gresource.xml │ ├── panther-icon-index.svg │ └── text-x-copying-symbolic.svg ├── meson.build └── screenshot.png ├── debian ├── 60pop-shop ├── changelog ├── compat ├── control ├── copyright ├── pop-shop-casper.install ├── pop-shop-casper.triggers ├── pop-shop.install ├── pop-shop.links ├── rules └── source │ └── format ├── meson.build ├── meson └── post_install.py ├── meson_options.txt ├── po ├── CMakeLists.txt ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── aa.po │ ├── ab.po │ ├── ae.po │ ├── af.po │ ├── ak.po │ ├── am.po │ ├── an.po │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── az.po │ ├── ba.po │ ├── be.po │ ├── bg.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bn.po │ ├── bo.po │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── ce.po │ ├── ch.po │ ├── ckb.po │ ├── co.po │ ├── cr.po │ ├── cs.po │ ├── cu.po │ ├── cv.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── el.po │ ├── en_AU.po │ ├── en_CA.po │ ├── en_GB.po │ ├── eo.po │ ├── es.po │ ├── et.po │ ├── eu.po │ ├── extra.pot │ ├── fa.po │ ├── ff.po │ ├── fi.po │ ├── fj.po │ ├── fo.po │ ├── fr.po │ ├── fr_CA.po │ ├── fy.po │ ├── ga.po │ ├── gd.po │ ├── gl.po │ ├── gn.po │ ├── gu.po │ ├── gv.po │ ├── ha.po │ ├── he.po │ ├── hi.po │ ├── ho.po │ ├── hr.po │ ├── ht.po │ ├── hu.po │ ├── hy.po │ ├── hz.po │ ├── ia.po │ ├── id.po │ ├── ie.po │ ├── ig.po │ ├── ii.po │ ├── ik.po │ ├── io.po │ ├── is.po │ ├── it.po │ ├── iu.po │ ├── ja.po │ ├── jbo.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 │ ├── mus.po │ ├── my.po │ ├── na.po │ ├── nb.po │ ├── nd.po │ ├── ne.po │ ├── ng.po │ ├── nl.po │ ├── nn.po │ ├── no.po │ ├── nr.po │ ├── nv.po │ ├── ny.po │ ├── oc.po │ ├── oj.po │ ├── om.po │ ├── or.po │ ├── os.po │ ├── pa.po │ ├── pi.po │ ├── pl.po │ ├── ps.po │ ├── pt.po │ ├── pt_BR.po │ ├── qu.po │ ├── rm.po │ ├── rn.po │ ├── ro.po │ ├── ru.po │ ├── rue.po │ ├── rw.po │ ├── sa.po │ ├── sc.po │ ├── sd.po │ ├── se.po │ ├── sg.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sm.po │ ├── sma.po │ ├── sn.po │ ├── so.po │ ├── sq.po │ ├── sr.po │ ├── sr@latin.po │ ├── ss.po │ ├── st.po │ ├── su.po │ ├── sv.po │ ├── sw.po │ ├── ta.po │ ├── te.po │ ├── tg.po │ ├── th.po │ ├── ti.po │ ├── tk.po │ ├── tl.po │ ├── tn.po │ ├── to.po │ ├── tr.po │ ├── ts.po │ ├── tt.po │ ├── tw.po │ ├── ty.po │ ├── ug.po │ ├── uk.po │ ├── ur.po │ ├── uz.po │ ├── ve.po │ ├── vi.po │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zh_CN.po │ ├── zh_HK.po │ ├── zh_TW.po │ └── zu.po ├── fa.po ├── ff.po ├── fi.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.elementary.appcenter.pot ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jbo.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 ├── mus.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── sr@latin.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.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 ├── Application.vala ├── Core │ ├── ChangeInformation.vala │ ├── Client.vala │ ├── ComponentValidator.vala │ ├── Houston.vala │ ├── Package.vala │ ├── SnapClient.vala │ ├── Task.vala │ └── UpdateManager.vala ├── Dialogs │ ├── RestartDialog.vala │ ├── StripeDialog.vala │ └── UpdateFailDialog.vala ├── MainWindow.vala ├── Services │ ├── DBusInterfaces.vala │ ├── DBusServer.vala │ └── SearchProvider.vala ├── Settings.vala ├── SuspendControl.vala ├── Views │ ├── AppInfoView.vala │ ├── AppListUpdateView.vala │ ├── AppListView.vala │ ├── CategoryView.vala │ ├── Homepage.vala │ ├── InstalledView.vala │ ├── SearchView.vala │ └── View.vala ├── Widgets │ ├── AbstractAppList.vala │ ├── AppContainers │ │ ├── AbstractAppContainer.vala │ │ ├── AbstractPackageRowGrid.vala │ │ ├── InstalledPackageRowGrid.vala │ │ └── ListPackageRowGrid.vala │ ├── AppListRow.vala │ ├── Banner.vala │ ├── Carousel │ │ ├── AuthorCarousel.vala │ │ ├── Carousel.vala │ │ └── CarouselItem.vala │ ├── CategoryFlowBox.vala │ ├── CategoryItem.vala │ ├── CategorySidebar.vala │ ├── HumbleButton.vala │ ├── PackageRow.vala │ ├── ReleaseListBox.vala │ ├── ReleaseRow.vala │ ├── Selector.vala │ ├── SharePopover.vala │ ├── Switcher.vala │ └── UpdateHeaderRow.vala ├── config.vala.in └── meson.build ├── uncrustify.cfg └── vapi └── snapd-glib.vapi /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: generic 2 | 3 | services: 4 | - docker 5 | 6 | env: 7 | - DEPENDENCY_PACKAGES="appstream cmake cmake-elementary desktop-file-utils intltool libappstream-dev libgee-0.8-dev libgranite-dev libgtk-3-dev libjson-glib-dev libpackagekit-glib2-dev libsoup2.4-dev libunity-dev libxml2-dev libxml2-utils valac" 8 | 9 | install: 10 | - docker pull elementary/docker:loki 11 | - docker run -v "$PWD":/tmp/build-dir elementary/docker:loki /bin/sh -c "apt-get update && apt-get -y install $DEPENDENCY_PACKAGES && cd /tmp/build-dir && cmake . && env CTEST_OUTPUT_ON_FAILURE=true make all test" 12 | - docker pull elementary/docker:loki-unstable 13 | - docker run -v "$PWD":/tmp/build-dir elementary/docker:loki-unstable /bin/sh -c "apt-get update && apt-get -y install $DEPENDENCY_PACKAGES && cd /tmp/build-dir && cmake . && env CTEST_OUTPUT_ON_FAILURE=true make all test" 14 | 15 | script: 16 | - echo BUILDS PASSED 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AppHive 2 | 3 | A universal application manager for *buntu systems, supporting deb and snap packages. Based on [elementary AppCenter](https://github.com/elementary/appcenter) 4 | 5 | ![Screenshot](data/screenshot.png?raw=true) 6 | 7 | ## Packages 8 | 9 | Currently supports Debian and Snap packages 10 | 11 | ## Building, Testing, and Installation 12 | 13 | You'll need the following dependencies: 14 | * meson 15 | * gettext 16 | * libappstream-dev (>= 0.10) 17 | * [libsnapd-glib-dev](https://github.com/snapcore/snapd-glib) (>=1.19) 18 | * libgee-0.8-dev 19 | * libgranite-dev (>=0.5) 20 | * libgtk-3-dev 21 | * libjson-glib-dev 22 | * libpackagekit-glib2-dev 23 | * libsoup2.4-dev 24 | * libunity-dev 25 | * libxml2-dev 26 | * libxml2-utils 27 | * valac (>= 0.26) 28 | 29 | It's recommended to create a clean build environment 30 | 31 | mkdir build && meson build --prefix=/usr 32 | cd build 33 | ninja 34 | 35 | To install, use `ninja install`, then execute 36 | 37 | sudo ninja install 38 | apphive -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- 1 | # Testing 2 | 3 | In order to test Pop!_Shop, you must do the following: 4 | 5 | ``` 6 | killall io.elementary.appcenter 7 | sudo apt install pop-shop 8 | io.elementary.appcenter 9 | ``` 10 | 11 | Check the following: 12 | 13 | - Search works on the main page and inside a category 14 | - Installing a new application and uninstalling it works 15 | - Viewing installed applications from the Updates menu works 16 | - Right clicking on applications in GNOME Shell and clicking on "Show Details" works for programs with appstream data 17 | -------------------------------------------------------------------------------- /config.vala.in: -------------------------------------------------------------------------------- 1 | namespace Build { 2 | public const string APP_NAME = "@APP_NAME@"; 3 | public const string BLACKLIST = "@BLACKLIST@"; 4 | public const string CONFIGDIR = "@CONFIGDIR@"; 5 | public const string DATADIR = "@DATADIR@"; 6 | public const string DESKTOP_FILE = "@DESKTOP_FILE@"; 7 | public const string DESKTOP_ICON = "@DESKTOP_ICON@"; 8 | public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; 9 | public const string PKGDATADIR = "@PKGDATADIR@"; 10 | public const string PROJECT_NAME = "@CMAKE_PROJECT_NAME@"; 11 | public const string RELEASE_NAME = "@RELEASE_NAME@"; 12 | public const string VERSION = "@VERSION@"; 13 | public const string VERSION_INFO = "@VERSION_INFO@"; 14 | } 15 | -------------------------------------------------------------------------------- /data/appcenter.blacklist: -------------------------------------------------------------------------------- 1 | # This file is a list of AppStream component ID's that 2 | # AppCenter will not load at it's initialization. 3 | # 4 | # Each line of this file corresponds to a single AppStream component ID, 5 | # see the tag here: https://www.freedesktop.org/software/appstream/docs/chap-CollectionData.html for more information. 6 | # Lines beggining with "#" will be ignored. 7 | # 8 | # An example of a configuration that will block "id1.desktop" and "id2.desktop" 9 | # would look like this: 10 | # id1.desktop 11 | # id2.desktop 12 | # 13 | # End of example file. 14 | # -------------------------------------------------------------------------------- /data/apphive-daemon.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=@APP_NAME@ Daemon 3 | Comment=@RELEASE_NAME@ 4 | Exec=@EXEC_NAME@ -s 5 | Icon=@DESKTOP_ICON@ 6 | Terminal=false 7 | Type=Application 8 | NoDisplay=true 9 | X-GNOME-AutoRestart=true 10 | X-GNOME-Autostart-Phase=Applications -------------------------------------------------------------------------------- /data/apphive.desktop.in.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=@APP_NAME@ 3 | Comment=Browse and manage apps 4 | Exec=@EXEC_NAME@ 5 | Icon=@DESKTOP_ICON@ 6 | Keywords=install;uninstall;remove;catalogue;store;apps;updates;software; 7 | Actions=ShowUpdates; 8 | Terminal=false 9 | Type=Application 10 | StartupNotify=true 11 | Categories=GNOME;GTK;System;PackageManager; 12 | MimeType=x-scheme-handler/appstream; 13 | X-GNOME-UsesNotifications=true 14 | 15 | [Desktop Action ShowUpdates] 16 | Exec=@EXEC_NAME@ --show-updates 17 | Name=Check for Updates 18 | -------------------------------------------------------------------------------- /data/apphive.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | application.css 5 | 6 | 7 | -------------------------------------------------------------------------------- /data/apphive.search-provider.ini.in: -------------------------------------------------------------------------------- 1 | [Shell Search Provider] 2 | DesktopId=@EXEC_NAME@.desktop 3 | BusName=@EXEC_NAME@ 4 | ObjectPath=/io/elementary/appcenter/SearchProvider 5 | Version=2 6 | -------------------------------------------------------------------------------- /data/apphive.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=@EXEC_NAME@ 3 | Exec=@CMAKE_INSTALL_FULL_BINDIR@/@CMAKE_PROJECT_NAME@ -s 4 | -------------------------------------------------------------------------------- /data/icons/categories.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | text-x-copying-symbolic.svg 5 | panther-icon-index.svg 6 | 7 | 8 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nick92/apphive/0b087cd5524a1b6deb839593461fc19ef0624662/data/screenshot.png -------------------------------------------------------------------------------- /debian/60pop-shop: -------------------------------------------------------------------------------- 1 | Acquire::IndexTargets { 2 | deb::DEP-11-icons { 3 | DefaultEnabled "true"; 4 | }; 5 | }; 6 | 7 | #Acquire::IndexTargets { 8 | # deb::DEP-11-icons-hidpi { 9 | # DefaultEnabled "true"; 10 | # }; 11 | #}; 12 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | pop-shop (0.2.8pop2) bionic; urgency=medium 2 | 3 | * Add pop-shop-casper package 4 | 5 | -- Jeremy Soller Fri, 26 Jan 2018 12:43:40 -0700 6 | 7 | pop-shop (0.2.8pop1) bionic; urgency=medium 8 | 9 | * Pull in version 0.2.8 from upstream 10 | 11 | -- Jeremy Soller Thu, 25 Jan 2018 15:57:04 -0700 12 | 13 | pop-shop (0.2.7pop2) artful; urgency=medium 14 | 15 | * Pull in latest version of the upstream. 16 | 17 | -- Ian Santopietro Fri, 05 Jan 2018 10:45:39 -0700 18 | 19 | pop-shop (0.2.7pop1) artful; urgency=medium 20 | 21 | * Fork off Pop!_Shop 22 | 23 | -- Jeremy Soller Wed, 15 Nov 2017 15:36:51 -0700 24 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: pop-shop 2 | Section: utils 3 | Maintainer: Jeremy Soller 4 | Build-Depends: appstream, 5 | cmake, 6 | cmake-elementary, 7 | debhelper (>= 9), 8 | desktop-file-utils, 9 | intltool, 10 | libappstream-dev (>= 0.10), 11 | libgee-0.8-dev, 12 | libgranite-dev, 13 | libgtk-3-dev, 14 | libjson-glib-dev, 15 | libpackagekit-glib2-dev, 16 | libsoup2.4-dev, 17 | libunity-dev, 18 | libxml2-dev, 19 | libxml2-utils, 20 | valac (>= 0.26) 21 | Standards-Version: 3.9.6 22 | Homepage: https://github.com/pop/shop 23 | 24 | Package: pop-shop 25 | Architecture: any 26 | Priority: extra 27 | Depends: appstream, packagekit, ${misc:Depends}, ${shlibs:Depends} 28 | Recommends: appstream-data-pop 29 | Description: Fast application store 30 | Install, update and remove apps with ease. 31 | Helps independent developers. 32 | 33 | Package: pop-shop-dbg 34 | Architecture: any 35 | Section: debug 36 | Priority: extra 37 | Depends: pop-shop (= ${binary:Version}), ${misc:Depends} 38 | Enhances: pop-shop 39 | Description: Fast application store (debugging symbols) 40 | Install, update and remove apps with ease. 41 | Helps independent developers. 42 | . 43 | This package contains debugging symbols for pop-shop. 44 | 45 | Package: pop-shop-casper 46 | Architecture: any 47 | Priority: extra 48 | Depends: casper 49 | Description: Disable pop-shop in casper 50 | Disable pop-shop when running in a live system with casper 51 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://dep.debian.net/deps/dep5 2 | Upstream-Name: pop-shop 3 | Source: https://github.com/pop/shop 4 | 5 | Files: src/* debian/* 6 | Copyright: 2015 Corentin Noël 7 | License: GPL-3.0+ 8 | 9 | License: GPL-3.0+ 10 | This program is free software: you can redistribute it and/or modify 11 | it under the terms of the GNU General Public License as published by 12 | the Free Software Foundation, either version 3 of the License, or 13 | (at your option) any later version. 14 | . 15 | This package is distributed in the hope that it will be useful, 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | GNU General Public License for more details. 19 | . 20 | You should have received a copy of the GNU General Public License 21 | along with this program. If not, see . 22 | . 23 | On Debian systems, the complete text of the GNU General 24 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". 25 | -------------------------------------------------------------------------------- /debian/pop-shop-casper.install: -------------------------------------------------------------------------------- 1 | casper/99disable-pop-shop usr/share/initramfs-tools/scripts/casper-bottom/ 2 | -------------------------------------------------------------------------------- /debian/pop-shop-casper.triggers: -------------------------------------------------------------------------------- 1 | activate-noawait update-initramfs 2 | -------------------------------------------------------------------------------- /debian/pop-shop.install: -------------------------------------------------------------------------------- 1 | debian/60pop-shop /etc/apt/apt.conf.d/ 2 | etc/ 3 | usr/bin/ 4 | usr/share/applications/ 5 | usr/share/dbus-1/services/ 6 | usr/share/glib-2.0/ 7 | usr/share/gnome-shell/search-providers/ 8 | usr/share/locale/ 9 | usr/share/metainfo/ 10 | -------------------------------------------------------------------------------- /debian/pop-shop.links: -------------------------------------------------------------------------------- 1 | usr/share/applications/io.elementary.appcenter-daemon.desktop etc/xdg/autostart/io.elementary.appcenter-daemon.desktop 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | %: 13 | dh $@ 14 | 15 | override_dh_install: 16 | dh_install --fail-missing 17 | 18 | override_dh_strip: 19 | dh_strip --dbg-package=pop-shop-dbg 20 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /meson/post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import subprocess 5 | 6 | schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') 7 | 8 | if not os.environ.get('DESTDIR'): 9 | print('Compiling gsettings schemas...') 10 | subprocess.call(['glib-compile-schemas', schemadir]) 11 | -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- 1 | option('curated', type : 'boolean', value : true, description : 'Differentiate between apps created for elementary and not') 2 | option('name', type : 'string', value : 'AppHive', description : 'The name of the application') 3 | option('icon', type : 'string', value : 'system-software-install', description : 'The name of the icon') 4 | option('blacklist_file', type : 'string', value : 'appcenter.blacklist', description : 'The name of the file listing blacklisted applications') 5 | option('libunity', type : 'boolean', value : true, description : 'Use libunity to show badges') 6 | -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include (Translations) 2 | add_translations_directory (${GETTEXT_PACKAGE}) 3 | add_translations_catalog (${GETTEXT_PACKAGE} 4 | ../src 5 | ../daemon 6 | DESKTOP_FILES 7 | ${CMAKE_BINARY_DIR}/data/${DESKTOP_FILE}.in 8 | APPDATA_FILES 9 | ../data/${CMAKE_PROJECT_NAME}.appdata.xml.in 10 | ) 11 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | # 3 | aa 4 | ab 5 | af 6 | ak 7 | an 8 | ast 9 | az 10 | bh 11 | bn 12 | bo 13 | br 14 | bs 15 | ca 16 | ce 17 | ch 18 | ckb 19 | cs 20 | cu 21 | cv 22 | da 23 | de 24 | dv 25 | dz 26 | ee 27 | el 28 | en_CA 29 | es 30 | et 31 | eu 32 | ff 33 | fj 34 | fr_CA 35 | fr 36 | fy 37 | ga 38 | gl 39 | gu 40 | gv 41 | he 42 | hi 43 | hu 44 | hy 45 | ia 46 | ig 47 | ii 48 | ik 49 | io 50 | is 51 | iu 52 | ja 53 | ka 54 | ki 55 | kj 56 | kk 57 | km 58 | kn 59 | ko 60 | kr 61 | ku 62 | kv 63 | kw 64 | ky 65 | lg 66 | ln 67 | lo 68 | lt 69 | lu 70 | lv 71 | mg 72 | mh 73 | mi 74 | mk 75 | ml 76 | mn 77 | mo 78 | mr 79 | ms 80 | mt 81 | na 82 | nb 83 | nd 84 | nl 85 | nn 86 | nr 87 | nv 88 | oc 89 | oj 90 | om 91 | or 92 | os 93 | pa 94 | pl 95 | ps 96 | rm 97 | rn 98 | ru 99 | rw 100 | sa 101 | sd 102 | si 103 | sk 104 | sl 105 | sn 106 | sq 107 | st 108 | su 109 | sv 110 | sw 111 | ta 112 | te 113 | tg 114 | th 115 | ti 116 | tk 117 | tl 118 | tn 119 | to 120 | tr 121 | tw 122 | ty 123 | uk 124 | vi 125 | vo 126 | wo 127 | yo 128 | zh_TW 129 | zh 130 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Application.vala 2 | src/MainWindow.vala 3 | src/Settings.vala 4 | src/SuspendControl.vala 5 | src/Core/ChangeInformation.vala 6 | src/Core/Client.vala 7 | src/Core/ComponentValidator.vala 8 | src/Core/Houston.vala 9 | src/Core/Package.vala 10 | src/Core/Task.vala 11 | src/Core/UpdateManager.vala 12 | src/Dialogs/RestartDialog.vala 13 | src/Dialogs/StripeDialog.vala 14 | src/Dialogs/UpdateFailDialog.vala 15 | src/Services/DBusInterfaces.vala 16 | src/Services/DBusServer.vala 17 | src/Services/SearchProvider.vala 18 | src/Views/AppInfoView.vala 19 | src/Views/AppListUpdateView.vala 20 | src/Views/AppListView.vala 21 | src/Views/Homepage.vala 22 | src/Views/InstalledView.vala 23 | src/Views/SearchView.vala 24 | src/Views/View.vala 25 | src/Widgets/AbstractAppList.vala 26 | src/Widgets/AppListRow.vala 27 | src/Widgets/Banner.vala 28 | src/Widgets/CardNumberEntry.vala 29 | src/Widgets/CategoryFlowBox.vala 30 | src/Widgets/CategoryItem.vala 31 | src/Widgets/HumbleButton.vala 32 | src/Widgets/HumblePopover.vala 33 | src/Widgets/PackageRow.vala 34 | src/Widgets/ReleaseListBox.vala 35 | src/Widgets/ReleaseRow.vala 36 | src/Widgets/SharePopover.vala 37 | src/Widgets/Switcher.vala 38 | src/Widgets/UpdateHeaderRow.vala 39 | src/Widgets/AppContainers/AbstractAppContainer.vala 40 | src/Widgets/AppContainers/AbstractPackageRowGrid.vala 41 | src/Widgets/AppContainers/InstalledPackageRowGrid.vala 42 | src/Widgets/AppContainers/ListPackageRowGrid.vala 43 | src/Widgets/Carousel/AuthorCarousel.vala 44 | src/Widgets/Carousel/Carousel.vala 45 | src/Widgets/Carousel/CarouselItem.vala 46 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | # please keep this list sorted alphabetically 2 | bg 3 | ca 4 | cs 5 | da 6 | de 7 | el 8 | en_AU 9 | en_GB 10 | es 11 | et 12 | eu 13 | fi 14 | fr 15 | fr_CA 16 | gl 17 | he 18 | hi 19 | hr 20 | hu 21 | id 22 | it 23 | ja 24 | ko 25 | ku 26 | ky 27 | lt 28 | lv 29 | ms 30 | nb 31 | nl 32 | pl 33 | pt 34 | pt_BR 35 | ro 36 | ru 37 | si 38 | sk 39 | sl 40 | sq 41 | sr 42 | sv 43 | tl 44 | tr 45 | ug 46 | uk 47 | zh_CN 48 | zh_TW 49 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/io.elementary.appcenter.appdata.xml.in 2 | data/io.elementary.appcenter.desktop.in.in 3 | -------------------------------------------------------------------------------- /po/extra/aa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ab.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/af.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:09+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/am.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:08+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/an.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/as.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/av.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ay.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ba.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/be.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:44+0000\n" 7 | "Last-Translator: maxis \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/br.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/bs.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:08+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ce.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ch.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/co.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/cr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/cv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/dv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/dz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ee.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/en_AU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:22+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/eu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:53+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/extra.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 extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-05-07 12:28-0700\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 | #: data/io.elementary.appcenter.appdata.xml.in:8 21 | msgid "AppCenter" 22 | msgstr "" 23 | 24 | #: data/io.elementary.appcenter.appdata.xml.in:9 25 | #: data/io.elementary.appcenter.desktop.in.in:4 26 | msgid "Browse and manage apps" 27 | msgstr "" 28 | 29 | #: data/io.elementary.appcenter.appdata.xml.in:11 30 | msgid "" 31 | "An app store for indie and open source developers. Browse by categories or " 32 | "search and discover new apps. AppCenter is also used for updating your " 33 | "system to the latest and greatest version for new features and fixes." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.appdata.xml.in:191 37 | msgid "elementary LLC." 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:3 41 | msgid "@APP_NAME@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:6 45 | msgid "@DESKTOP_ICON@" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:7 49 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 50 | msgstr "" 51 | 52 | #: data/io.elementary.appcenter.desktop.in.in:18 53 | msgid "Check for Updates" 54 | msgstr "" 55 | -------------------------------------------------------------------------------- /po/extra/ff.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/fj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/fo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/fy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ga.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/gd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/gl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2018-02-12 00:03+0000\n" 7 | "Last-Translator: Iago \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 2.18\n" 16 | "X-Launchpad-Export-Date: 2017-03-14 06:26+0000\n" 17 | 18 | #: data/io.elementary.appcenter.appdata.xml.in:8 19 | msgid "AppCenter" 20 | msgstr "AppCenter" 21 | 22 | #: data/io.elementary.appcenter.appdata.xml.in:9 23 | #: data/io.elementary.appcenter.desktop.in.in:4 24 | msgid "Browse and manage apps" 25 | msgstr "Explore e xestione aplicativos" 26 | 27 | #: data/io.elementary.appcenter.appdata.xml.in:11 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | #: data/io.elementary.appcenter.appdata.xml.in:191 35 | msgid "elementary LLC." 36 | msgstr "" 37 | 38 | #: data/io.elementary.appcenter.desktop.in.in:3 39 | msgid "@APP_NAME@" 40 | msgstr "" 41 | 42 | #: data/io.elementary.appcenter.desktop.in.in:6 43 | msgid "@DESKTOP_ICON@" 44 | msgstr "" 45 | 46 | #: data/io.elementary.appcenter.desktop.in.in:7 47 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 48 | msgstr "" 49 | 50 | #: data/io.elementary.appcenter.desktop.in.in:18 51 | msgid "Check for Updates" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/gn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/gv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ha.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/hi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2018-03-19 04:42+0000\n" 7 | "Last-Translator: Anand Kumar \n" 8 | "Language-Team: Hindi \n" 10 | "Language: hi\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 2.18\n" 16 | "X-Launchpad-Export-Date: 2017-03-14 06:26+0000\n" 17 | 18 | #: data/io.elementary.appcenter.appdata.xml.in:8 19 | msgid "AppCenter" 20 | msgstr "एपसेंटर" 21 | 22 | #: data/io.elementary.appcenter.appdata.xml.in:9 23 | #: data/io.elementary.appcenter.desktop.in.in:4 24 | msgid "Browse and manage apps" 25 | msgstr "" 26 | 27 | #: data/io.elementary.appcenter.appdata.xml.in:11 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | #: data/io.elementary.appcenter.appdata.xml.in:191 35 | msgid "elementary LLC." 36 | msgstr "" 37 | 38 | #: data/io.elementary.appcenter.desktop.in.in:3 39 | msgid "@APP_NAME@" 40 | msgstr "" 41 | 42 | #: data/io.elementary.appcenter.desktop.in.in:6 43 | msgid "@DESKTOP_ICON@" 44 | msgstr "" 45 | 46 | #: data/io.elementary.appcenter.desktop.in.in:7 47 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 48 | msgstr "" 49 | 50 | #: data/io.elementary.appcenter.desktop.in.in:18 51 | msgid "Check for Updates" 52 | msgstr "" 53 | -------------------------------------------------------------------------------- /po/extra/ho.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ht.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/hy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:08+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/hz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ia.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ie.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/ig.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ii.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ik.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/io.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/is.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/iu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/jv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ka.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:07+0000\n" 7 | "Last-Translator: Beqa Arabuli \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ki.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kl.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/km.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ks.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/kw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ky.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/la.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/lb.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:08+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/lg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/li.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ln.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/lo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/lu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/lv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:30+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: ['--directory='+meson.source_root(), '--from-code=UTF-8'], 3 | install: false, 4 | ) 5 | -------------------------------------------------------------------------------- /po/extra/mg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/mh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/mi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/mk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ml.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/mn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/mo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/ms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:57+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/mt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/na.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/nd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ne.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ng.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\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 | msgid "AppCenter" 10 | msgstr "" 11 | 12 | msgid "Browse and manage apps" 13 | msgstr "" 14 | 15 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 16 | msgstr "" 17 | 18 | msgid "About AppCenter" 19 | msgstr "" 20 | 21 | msgid "" 22 | "An app store for indie and open source developers. Browse by categories or " 23 | "search and discover new apps. AppCenter is also used for updating your " 24 | "system to the latest and greatest version for new features and fixes." 25 | msgstr "" 26 | 27 | msgid "Bug fixes and improve perfomance." 28 | msgstr "" 29 | 30 | msgid "Various bug fixes and performance improvements" 31 | msgstr "" 32 | 33 | msgid "New translations" 34 | msgstr "" 35 | 36 | msgid "Fix crash caused by entries with missing packages" 37 | msgstr "" 38 | 39 | msgid "Add capability to search by category and apply minor bug fixes." 40 | msgstr "" 41 | 42 | msgid "It is now possible to search apps inside a category" 43 | msgstr "" 44 | 45 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 46 | msgstr "" 47 | 48 | msgid "" 49 | "Search perfomance has beeen improved, the category name is now shown on the " 50 | "headbar and minor bugs have been fixed." 51 | msgstr "" 52 | 53 | msgid "Fix Steam installation" 54 | msgstr "" 55 | 56 | msgid "Make search asynchronous" 57 | msgstr "" 58 | -------------------------------------------------------------------------------- /po/extra/nr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/nv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/ny.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/oc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/oj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/om.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/or.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/os.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/pa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/extra/ps.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/qu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:06+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/si.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2015-12-16 07:08+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/sma.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:34+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/sq.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2018-05-07 12:28-0700\n" 6 | "PO-Revision-Date: 2016-08-29 23:32+0000\n" 7 | "Last-Translator: Indrit Bashkimi \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | #: data/io.elementary.appcenter.appdata.xml.in:8 17 | msgid "AppCenter" 18 | msgstr "" 19 | 20 | #: data/io.elementary.appcenter.appdata.xml.in:9 21 | #: data/io.elementary.appcenter.desktop.in.in:4 22 | msgid "Browse and manage apps" 23 | msgstr "Shfleto dhe menaxho programet" 24 | 25 | #: data/io.elementary.appcenter.appdata.xml.in:11 26 | msgid "" 27 | "An app store for indie and open source developers. Browse by categories or " 28 | "search and discover new apps. AppCenter is also used for updating your " 29 | "system to the latest and greatest version for new features and fixes." 30 | msgstr "" 31 | 32 | #: data/io.elementary.appcenter.appdata.xml.in:191 33 | msgid "elementary LLC." 34 | msgstr "" 35 | 36 | #: data/io.elementary.appcenter.desktop.in.in:3 37 | msgid "@APP_NAME@" 38 | msgstr "" 39 | 40 | #: data/io.elementary.appcenter.desktop.in.in:6 41 | msgid "@DESKTOP_ICON@" 42 | msgstr "" 43 | 44 | #: data/io.elementary.appcenter.desktop.in.in:7 45 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 46 | msgstr "" 47 | 48 | #: data/io.elementary.appcenter.desktop.in.in:18 49 | msgid "Check for Updates" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /po/extra/uz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 6 | "PO-Revision-Date: 2015-12-16 06:51+0000\n" 7 | "Last-Translator: Corentin Noël \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-03-14 06:26+0000\n" 14 | "X-Generator: Launchpad (build 18331)\n" 15 | 16 | msgid "AppCenter" 17 | msgstr "" 18 | 19 | msgid "Browse and manage apps" 20 | msgstr "" 21 | 22 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 23 | msgstr "" 24 | 25 | msgid "About AppCenter" 26 | msgstr "" 27 | 28 | msgid "" 29 | "An app store for indie and open source developers. Browse by categories or " 30 | "search and discover new apps. AppCenter is also used for updating your " 31 | "system to the latest and greatest version for new features and fixes." 32 | msgstr "" 33 | 34 | msgid "Bug fixes and improve perfomance." 35 | msgstr "" 36 | 37 | msgid "Various bug fixes and performance improvements" 38 | msgstr "" 39 | 40 | msgid "New translations" 41 | msgstr "" 42 | 43 | msgid "Fix crash caused by entries with missing packages" 44 | msgstr "" 45 | 46 | msgid "Add capability to search by category and apply minor bug fixes." 47 | msgstr "" 48 | 49 | msgid "It is now possible to search apps inside a category" 50 | msgstr "" 51 | 52 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 53 | msgstr "" 54 | 55 | msgid "" 56 | "Search perfomance has beeen improved, the category name is now shown on the " 57 | "headbar and minor bugs have been fixed." 58 | msgstr "" 59 | 60 | msgid "Fix Steam installation" 61 | msgstr "" 62 | 63 | msgid "Make search asynchronous" 64 | msgstr "" 65 | -------------------------------------------------------------------------------- /po/extra/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2017-04-02 13:03-0700\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | msgid "AppCenter" 9 | msgstr "" 10 | 11 | msgid "Browse and manage apps" 12 | msgstr "" 13 | 14 | msgid "install;uninstall;remove;catalogue;store;apps;updates;software;" 15 | msgstr "" 16 | 17 | msgid "About AppCenter" 18 | msgstr "" 19 | 20 | msgid "" 21 | "An app store for indie and open source developers. Browse by categories or " 22 | "search and discover new apps. AppCenter is also used for updating your " 23 | "system to the latest and greatest version for new features and fixes." 24 | msgstr "" 25 | 26 | msgid "Bug fixes and improve perfomance." 27 | msgstr "" 28 | 29 | msgid "Various bug fixes and performance improvements" 30 | msgstr "" 31 | 32 | msgid "New translations" 33 | msgstr "" 34 | 35 | msgid "Fix crash caused by entries with missing packages" 36 | msgstr "" 37 | 38 | msgid "Add capability to search by category and apply minor bug fixes." 39 | msgstr "" 40 | 41 | msgid "It is now possible to search apps inside a category" 42 | msgstr "" 43 | 44 | msgid "Prevent multiple authentication dialogs when resuming from suspend" 45 | msgstr "" 46 | 47 | msgid "" 48 | "Search perfomance has beeen improved, the category name is now shown on the " 49 | "headbar and minor bugs have been fixed." 50 | msgstr "" 51 | 52 | msgid "Fix Steam installation" 53 | msgstr "" 54 | 55 | msgid "Make search asynchronous" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: ['--directory='+meson.source_root(), '--from-code=UTF-8'] 3 | ) 4 | subdir('extra') 5 | -------------------------------------------------------------------------------- /src/Core/Task.vala: -------------------------------------------------------------------------------- 1 | // -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*- 2 | /*- 3 | * Copyright (c) 2014-2016 elementary LLC. (https://elementary.io) 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | * 18 | * Authored by: Corentin Noël 19 | */ 20 | 21 | public class AppCenterCore.Task : Pk.Task { 22 | public override void untrusted_question (uint request, Pk.Results results) { 23 | user_accepted (request); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Services/DBusInterfaces.vala: -------------------------------------------------------------------------------- 1 | // -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*- 2 | /*- 3 | * Copyright (c) 2014-2016 elementary LLC. (https://elementary.io) 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | /* Power and system control */ 20 | [DBus (name = "org.freedesktop.login1.Manager")] 21 | interface SystemInterface : Object { 22 | public abstract void reboot (bool interactive) throws IOError; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /src/Widgets/AppListRow.vala: -------------------------------------------------------------------------------- 1 | // -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*- 2 | /*- 3 | * Copyright (c) 2016 elementary LLC. (https://elementary.io) 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | * 18 | * Authored by: Jeremy Wootten 19 | */ 20 | 21 | namespace AppCenter.Widgets { 22 | /** Interface implemented by PackageRow and HeaderRow and used to 23 | * determine sort order **/ 24 | public interface AppListRow : Gtk.ListBoxRow { 25 | public abstract bool get_update_available (); 26 | public abstract bool get_is_os_updates (); 27 | public abstract bool get_is_driver (); 28 | public abstract bool get_is_updating (); 29 | public abstract string get_name_label (); 30 | public abstract bool has_package (); 31 | public abstract AppCenterCore.Package? get_package (); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Widgets/Carousel/AuthorCarousel.vala: -------------------------------------------------------------------------------- 1 | /*- 2 | * Copyright (c) 2017 elementary LLC. (https://elementary.io) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see . 16 | * 17 | * Authored by: Adam Bieńkowski 18 | */ 19 | 20 | public class AppCenter.Widgets.AuthorCarousel : Carousel { 21 | private const int AUTHOR_OTHER_APPS_MAX = 10; 22 | 23 | public AppCenterCore.Package target { get; construct; } 24 | 25 | construct { 26 | var author_packages = AppCenterCore.Client.get_default ().get_packages_by_author (target.author, AUTHOR_OTHER_APPS_MAX); 27 | foreach (var author_package in author_packages) { 28 | if (author_package.component.get_id () == target.component.get_id ()) { 29 | continue; 30 | } 31 | 32 | add_package (author_package); 33 | } 34 | } 35 | 36 | public AuthorCarousel (AppCenterCore.Package target) { 37 | Object (target: target); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/Widgets/ReleaseListBox.vala: -------------------------------------------------------------------------------- 1 | /*- 2 | * Copyright (c) 2017 elementary LLC. (https://elementary.io) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see . 16 | * 17 | * Authored by: Adam Bieńkowski 18 | */ 19 | 20 | public class AppCenter.Widgets.ReleaseListBox : Gtk.ListBox { 21 | private const int MIN_RELEASES = 1; 22 | private const int MAX_RELEASES = 5; 23 | 24 | public AppCenterCore.Package package { get; construct; } 25 | 26 | public ReleaseListBox (AppCenterCore.Package package) { 27 | Object (package: package, selection_mode: Gtk.SelectionMode.NONE); 28 | } 29 | 30 | public bool populate () { 31 | var releases = package.get_newest_releases (MIN_RELEASES, MAX_RELEASES); 32 | foreach (var release in releases) { 33 | var row = new ReleaseRow (release); 34 | add (row); 35 | } 36 | 37 | return releases.size > 0; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/config.vala.in: -------------------------------------------------------------------------------- 1 | namespace Build { 2 | public const string APP_NAME = "@APP_NAME@"; 3 | public const string BLACKLIST = "@BLACKLIST@"; 4 | public const string CONFIGDIR = "@CONFIGDIR@"; 5 | public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; 6 | public const string PROJECT_NAME = "@PROJECT_NAME@"; 7 | public const string VERSION = "@VERSION@"; 8 | } 9 | --------------------------------------------------------------------------------