Compare commits

...

14 Commits

109 changed files with 1364 additions and 440 deletions

View File

@ -847,6 +847,65 @@ All AUR users should be familiar with the build process.</property>
<property name="position">3</property>
</packing>
</child>
<child>
<object class="GtkBox" id="box4">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="margin_left">26</property>
<property name="spacing">12</property>
<property name="homogeneous">True</property>
<child>
<object class="GtkSwitch" id="aur_keep_pkgs_button">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="tooltip_text" translatable="yes">Keep built packages</property>
<property name="halign">end</property>
<property name="margin_left">6</property>
<property name="margin_right">6</property>
<property name="margin_start">6</property>
<property name="margin_end">6</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="aur_move_dir_label">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
<property name="hexpand">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkFileChooserButton" id="aur_move_dir_file_chooser">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">end</property>
<property name="margin_left">24</property>
<property name="action">select-folder</property>
<property name="title" translatable="yes"/>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">2</property>
</packing>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">3</property>
</packing>
</child>
</object>
<packing>
<property name="name">aur</property>

View File

@ -28,5 +28,19 @@
Directory where to build packages that come from the AUR
</description>
</key>
<key name="aur-keep-pkgs" type="b">
<default>false</default>
<summary>Copy AUR packages</summary>
<description>
Save built packages on disk
</description>
</key>
<key name="move-directory" type="s">
<default l10n="messages">""</default>
<summary>AUR package directory</summary>
<description>
Directory where to move built packages that come from the AUR
</description>
</key>
</schema>
</schemalist>

View File

@ -43,7 +43,6 @@
<message xml:lang="el">Απαιτείται πιστοποίηση</message>
<message xml:lang="de">Authentifizierung erforderlich</message>
<message xml:lang="da">Godkendelse er påkrævet</message>
<message xml:lang="cs">Je vyžadováno ověření</message>
<message xml:lang="ca_ES">Cal autenticació</message>
<message xml:lang="ca">Cal autenticació</message>
<message xml:lang="bg">Изисква се идентификация</message>
@ -51,6 +50,7 @@
<message xml:lang="ast">Ríquese l'autenticación</message>
<message xml:lang="ar">صلاحيات مطلوبة</message>
<message xml:lang="ka">საჭიროა ავთენტიფიკაცია</message>
<message xml:lang="cs">Je vyžadováno ověření</message>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>auth_admin_keep</allow_inactive>

View File

@ -1,7 +1,7 @@
### AutoVala Project ###
autovala_version: 30
project_name: pamac
project_version: 7.2.1
project_version: 7.3.0
vala_version: 0.48
custom: data/systemd/pamac-system.service /usr/lib/systemd/system
@ -22,7 +22,7 @@ define: KDE_TRAY
vapidir: src/vapis
vala_binary: src/pamac-clean-cache/pamac-clean-cache
*version: 7.2.1
*version: 7.3.0
vala_local_package: Pamac
vala_vapi: ../vapis/libalpm.vapi
vala_package: posix
@ -32,7 +32,7 @@ vala_check_package: json-glib-1.0
*vala_source: clean_cache.vala
vala_binary: src/pamac-install/pamac-install
*version: 7.2.1
*version: 7.3.0
use_gresource: pamac_installer_gresource_xml
vala_local_package: Pamac
vala_vapi: ../vapis/libalpm.vapi
@ -45,7 +45,7 @@ vala_check_package: json-glib-1.0
*vala_source: progress_dialog.vala
vala_binary: src/pamac-manager/pamac-manager
*version: 7.2.1
*version: 7.3.0
alias: pamac-updater
use_gresource: pamac_manager_gresource_xml
vala_local_package: Pamac
@ -60,7 +60,7 @@ vala_check_package: json-glib-1.0
*vala_source: manager_window.vala
vala_binary: src/pamac-system-daemon/pamac-system-daemon
*version: 7.2.1
*version: 7.3.0
vala_local_package: Pamac
vala_package: posix
vala_check_package: gtk+-3.0
@ -75,7 +75,7 @@ vala_check_package: polkit-gobject-1
*vala_source: system_daemon.vala
vala_binary: src/pamac-tray/pamac-tray
*version: 7.2.1
*version: 7.3.0
vala_local_package: Pamac
vala_package: posix
vala_check_package: json-glib-1.0
@ -97,7 +97,7 @@ end
*vala_source: tray.vala
vala_binary: src/pamac-user-daemon/pamac-user-daemon
*version: 7.2.1
*version: 7.3.0
vala_local_package: Pamac
vala_package: posix
vala_check_package: gtk+-3.0
@ -111,7 +111,7 @@ vala_check_package: libsoup-2.4
vala_library: src/pamac
*version: 7.2.1
*version: 7.3.0
*namespace: Pamac
use_gresource: pamac_transaction_gresource_xml
*vala_package: posix

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Afrikaans (http://www.transifex.com/manjarolinux/manjaro-"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -14,8 +14,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Arabic (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -607,6 +607,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr " حول العالم"
@ -795,6 +799,10 @@ msgstr "بحث في AUR بشكل افتراضي"
msgid "Check for updates from AUR"
msgstr " AUR تحقق من وجود تحديثات من "
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -13,8 +13,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Asturian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -593,6 +593,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundiu"
@ -784,6 +788,10 @@ msgstr "Guetar n'AUR por defeutu"
msgid "Check for updates from AUR"
msgstr "Comprobar anovamientos d'AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -774,6 +778,10 @@ msgstr "AUR-da axtarmaq"
msgid "Check for updates from AUR"
msgstr "AUR-dan yeniliklərin yoxlanılması"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Belarusian (http://www.transifex.com/manjarolinux/manjaro-"
@ -595,6 +595,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -781,6 +785,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -14,8 +14,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-08-01 11:22+0000\n"
"Last-Translator: Galin Iskrenov <loot270@abv.bg>\n"
"Language-Team: Bulgarian (http://www.transifex.com/manjarolinux/manjaro-"
@ -594,6 +594,10 @@ msgstr "Брой версии от всеки пакет запазени в к
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "По света"
@ -784,6 +788,10 @@ msgstr "Търсене в AUR по подразбиране "
msgid "Check for updates from AUR"
msgstr "Проверка за актуализации от AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Премахване само версиите на деинсталираните пакети"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Bengali (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Bosnian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -16,8 +16,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 14:18+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -596,6 +596,10 @@ msgstr "Nombre de versions de cada paquet per mantenir a la memòria cau"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Tot el món"
@ -789,6 +793,10 @@ msgstr "Cerca a l'AUR per defecte"
msgid "Check for updates from AUR"
msgstr "Comprova si hi ha actualitzacions de l'AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Elimina només les versions dels paquets desinstal·lats"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Catalan (Spain) (http://www.transifex.com/manjarolinux/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -1,5 +1,5 @@
#! /bin/sh
xgettext --from-code=UTF-8 --add-location=file \
--package-name=Pamac --msgid-bugs-address=cromer@cromnix.org \
--package-name=Pamac --msgid-bugs-address=chris@cromer.cl \
--files-from=files_to_translate --keyword=translatable --output=pamac.pot

View File

@ -14,8 +14,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Czech (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -33,7 +33,7 @@ msgstr "Neznámý"
#: ../src/pamac-user-daemon/user_daemon.vala
#: ../src/pamac-manager/manager_window.vala
msgid "Explicitly installed"
msgstr "explicitně nainstalován"
msgstr "Explicitně nainstalováno"
#: ../src/pamac-user-daemon/user_daemon.vala
#: ../src/pamac-manager/manager_window.vala
@ -597,6 +597,10 @@ msgstr "Počet verzí od každého balíčku udržovaného v paměti cache."
msgid "Build directory"
msgstr "Složka pro sestavování"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Celosvětový"
@ -788,6 +792,10 @@ msgstr "Hledat v AUR defaultně"
msgid "Check for updates from AUR"
msgstr "Zkontrolovat aktualizace z AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Odstranit pouze verze odinstalovaných balíčků"
@ -818,4 +826,4 @@ msgstr "Vybrat ignorované aktualizace"
#~ msgstr "Generování bylo úspěšné"
#~ msgid "Generation failed"
#~ msgstr "Generování selhalo"
#~ msgstr "Generování selhalo"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/manjarolinux/"
@ -594,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -780,6 +784,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Welsh (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -594,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -780,6 +784,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -18,8 +18,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Danish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -598,6 +598,10 @@ msgstr "Antal versioner af hver pakke der skal gemmes i cache"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Worldwide"
@ -789,6 +793,10 @@ msgstr "Søg i AUR som standard"
msgid "Check for updates from AUR"
msgstr "Tjek efter opdateringer fra AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Fjern kun versioner af ikke-installerede pakker"

View File

@ -25,9 +25,9 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"PO-Revision-Date: 2021-07-08 16:25+0200\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: German (http://www.transifex.com/manjarolinux/manjaro-pamac/"
"language/de/)\n"
@ -92,17 +92,17 @@ msgstr "Paket %s hat keine gültige Architektur"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "unable to satisfy dependency '%s' required by %s"
msgstr ""
msgstr "Kann Abhängigkeit '%s' von %s nicht erfüllen"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "installing %s (%s) breaks dependency '%s' required by %s"
msgstr ""
msgstr "Installation von %s (%s) verletzt Abhängigkeit '%s' von %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "removing %s breaks dependency '%s' required by %s"
msgstr ""
msgstr "Entfernen von %s verletzt Abhängigkeit '%s' von %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
@ -112,7 +112,7 @@ msgstr "%s und %s stehen im Konflikt zueinander"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s needs to be removed but it is a locked package"
msgstr "%s soll entfernt werden, ist aber ein gesperrtes Paket "
msgstr "%s soll entfernt werden, ist aber ein gesperrtes Paket"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to commit transaction"
@ -190,7 +190,7 @@ msgstr "Wird neu installiert"
#: ../src/transaction.vala
msgid "To upgrade"
msgstr ""
msgstr "Zu aktualisieren"
#: ../src/transaction.vala ../src/pamac-manager/manager_window.vala
msgid "Total download size"
@ -344,11 +344,11 @@ msgstr "Es gibt nichts zu tun"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
msgstr "Transaktion erfolgreich"
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
msgstr "Die Transaktion wurde erfolgreich abgeschlossen"
#: ../src/transaction.vala
msgid "Transaction successfully finished"
@ -356,15 +356,17 @@ msgstr "Vorgang erfolgreich abgeschlossen"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
msgstr "Transaktion fehlgeschlagen"
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
"Die Transaktion ist fehlgeschlagen und es wurden keine Pakete aktualisiert/"
"installiert"
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
msgstr "Kann Datenbank nicht sperren!"
#: ../src/pamac-tray/tray.vala ../src/pamac-manager/manager_window.vala
msgid "Your system is up-to-date"
@ -396,7 +398,7 @@ msgstr "Pamac wird bereits ausgeführt"
#: ../src/pamac-manager/manager.vala
msgid "Refresh Databases"
msgstr ""
msgstr "Datenbanken aktualisieren"
#: ../src/pamac-manager/manager.vala ../data/interface/manager_window.ui
msgid "View History"
@ -417,7 +419,7 @@ msgstr "Über"
#: ../src/pamac-manager/manager.vala
msgid "Quit"
msgstr ""
msgstr "Schließen"
#: ../src/pamac-manager/manager_window.vala
msgid "Deselect"
@ -425,7 +427,7 @@ msgstr "Abwählen"
#: ../src/pamac-manager/manager_window.vala
msgid "Upgrade"
msgstr ""
msgstr "Aktualisieren"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Install"
@ -480,11 +482,11 @@ msgstr "Paketquelle"
#: ../src/pamac-manager/manager_window.vala
msgid "Download size"
msgstr ""
msgstr "Download Größe"
#: ../src/pamac-manager/manager_window.vala
msgid "Installed size"
msgstr ""
msgstr "Installierte Größe"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Groups"
@ -603,7 +605,11 @@ msgstr "Anzahl der im Cache verbleibenden Paketversionen"
#: ../src/preferences_dialog.vala
msgid "Build directory"
msgstr ""
msgstr "Build Verzeichnis"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr "Paket Verzeichnis"
#: ../src/preferences_dialog.vala
msgid "Worldwide"
@ -664,7 +670,7 @@ msgstr "Paketquellen"
#: ../data/interface/manager_window.ui
msgid "Updates"
msgstr ""
msgstr "Aktualisierungen"
#: ../data/interface/manager_window.ui
msgid "Version"
@ -724,7 +730,7 @@ msgstr "Suche nach Aktualisierungen"
#: ../data/interface/preferences_dialog.ui
msgid "Update files databases (more details but slower)"
msgstr ""
msgstr "Aktualisiere Datei-Datenbanken (mehr Details, aber langsamer)"
#: ../data/interface/preferences_dialog.ui
msgid "Hide tray icon when no update available"
@ -742,19 +748,19 @@ msgstr "Allgemein"
#: ../data/interface/preferences_dialog.ui
msgid "Background color:"
msgstr ""
msgstr "Hintergrund Farbe:"
#: ../data/interface/preferences_dialog.ui
msgid "Text color:"
msgstr ""
msgstr "Text Farbe:"
#: ../data/interface/preferences_dialog.ui
msgid "Font:"
msgstr ""
msgstr "Schrift:"
#: ../data/interface/preferences_dialog.ui
msgid "Terminal"
msgstr ""
msgstr "Terminal"
#: ../data/interface/preferences_dialog.ui
msgid "Use mirrors from:"
@ -798,6 +804,10 @@ msgstr "Suche standardmäßig im AUR"
msgid "Check for updates from AUR"
msgstr "Suche nach Aktualisierungen aus dem AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr "Behalte erstellte Pakete"
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Entferne nur Versionen von deinstallierten Paketen"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: German (Germany) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -19,8 +19,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Greek (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -599,6 +599,10 @@ msgstr "Αριθμός των εκδόσεων για κάθε πακέτο πο
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Παγκόσμιο"
@ -790,6 +794,10 @@ msgstr "Αναζήτηση στο AUR από προεπιλογή"
msgid "Check for updates from AUR"
msgstr "Έλεγχος για αναβαθμίσεις από το AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Διέγραψε μόνο τις εκδόσεις των απεγκατεστημένων πακέτων."

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Greek (Greece) (http://www.transifex.com/manjarolinux/manjaro-"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Παγκόσμιο"
@ -779,6 +783,10 @@ msgstr "Αναζήτηση στο AUR από προεπιλογή"
msgid "Check for updates from AUR"
msgstr "Έλεγχος για αναβαθμίσεις από το AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Διέγραψε μόνο τις εκδόσεις των απεγκατεστημένων πακέτων."

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/"
@ -590,6 +590,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Worldwide"
@ -781,6 +785,10 @@ msgstr "Search in AUR by default"
msgid "Check for updates from AUR"
msgstr "Check for updates from AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Esperanto (http://www.transifex.com/manjarolinux/manjaro-"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -19,8 +19,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -599,6 +599,10 @@ msgstr "Número de versiones de cada paquete a guardar en cache"
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundial"
@ -793,6 +797,10 @@ msgstr "Buscar en AUR por defecto"
msgid "Check for updates from AUR"
msgstr "Comprobar actualizaciones desde AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Eliminar sólo las versiones de los paquetes desinstalados"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (Latin America) (http://www.transifex.com/"
@ -591,6 +591,10 @@ msgstr "Número de versiones de cada paquete a mantener en caché"
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundial"
@ -784,6 +788,10 @@ msgstr "Buscar en AUR por defecto"
msgid "Check for updates from AUR"
msgstr "Comprobar actualizaciones desde AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Remover sólo las versiones de paquetes desinstalados"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/manjarolinux/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -774,6 +778,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Spanish (El Salvador) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr "Carpeta de compilación"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Estonian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -590,6 +590,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -778,6 +782,10 @@ msgstr "Vaikimisi otsi AURist"
msgid "Check for updates from AUR"
msgstr "Kontrolli uuendusi AURist"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Basque (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -592,6 +592,10 @@ msgstr "Katxean gorde beharreko pakete bakotzeko bertsio kopurua"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundu mailakoa"
@ -783,6 +787,10 @@ msgstr "Bilatu AURen lehenetsita"
msgid "Check for updates from AUR"
msgstr "Egiaztatu AUReko eguneraketak"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Kendu deinstalatutako paketeen bertsioak besterik ez"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Persian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -774,6 +778,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -17,8 +17,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Persian (Iran) (http://www.transifex.com/manjarolinux/manjaro-"
@ -594,6 +594,10 @@ msgstr "تعدادی از نسخه های هر بسته را در حافظه م
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "در سراسر جهان"
@ -782,6 +786,10 @@ msgstr "جستجوی در AUR به صورت پیش فرض"
msgid "Check for updates from AUR"
msgstr "بررسی بروزرسانی از AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "فقط حذف نسخه های بسته های حذف شده"

View File

@ -16,8 +16,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Finnish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -596,6 +596,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Maailmanlaajuinen"
@ -784,6 +788,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Faroese (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -589,6 +589,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -775,6 +779,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -20,8 +20,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-31 13:03+0000\n"
"Last-Translator: Charles Monzat <superboa@hotmail.fr>\n"
"Language-Team: French (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -600,6 +600,10 @@ msgstr "Nombre de versions de chaque paquet à conserver dans le cache "
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Monde entier"
@ -793,6 +797,10 @@ msgstr "Rechercher depuis AUR par défaut"
msgid "Check for updates from AUR"
msgstr "Vérifier les mises à jour depuis AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Supprimer seulement les versions de paquets désinstallés"

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Galician (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -588,6 +588,10 @@ msgstr "Número de versións de cada paquete para gardar na caché"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "En todo o Mundo"
@ -781,6 +785,10 @@ msgstr "Buscar en AUR por defecto"
msgid "Check for updates from AUR"
msgstr "Comprobar actualizacións dende AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Eliminar só as versións de paquetes non instalados"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Hebrew (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "כלל עולמי"
@ -780,6 +784,10 @@ msgstr "חפש בתוך AUR באופן שגרתי"
msgid "Check for updates from AUR"
msgstr "בדוק עדכונים מתוך AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "הסר רק את הגרסאות של חבילות שהוסרו"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Hindi (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr "डिफ़ॉल्ट रूप से AUR में खोजें"
msgid "Check for updates from AUR"
msgstr "AUR से अद्यतन के लिए जाँच करें"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Hindi (India) (http://www.transifex.com/manjarolinux/manjaro-"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-08-02 13:28+0000\n"
"Last-Translator: Lovro Kudelić <lovro.kudelic@outlook.com>\n"
"Language-Team: Croatian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -596,6 +596,10 @@ msgstr "Broj različitih verzija paketa za spremiti u predmemoriju"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Globalno"
@ -787,6 +791,10 @@ msgstr "Uvijek traži u AUR-u"
msgid "Check for updates from AUR"
msgstr "Provjeri ažuriranja iz AUR-a"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Ukloni samo verzije deinstaliranih paketa"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/manjarolinux/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/manjarolinux/manjaro-"
@ -592,6 +592,10 @@ msgstr "A cache- ben csomagonként megtartandó példányok száma:"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Világszerte"
@ -783,6 +787,10 @@ msgstr "Keresés AUR -ban alapértelmezetten"
msgid "Check for updates from AUR"
msgstr "AUR frissítések keresése"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Csak az eltávolított csomagok verzióinak eltávolítása"

View File

@ -23,8 +23,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/manjarolinux/manjaro-"
@ -600,6 +600,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Seluruh dunia"
@ -791,6 +795,10 @@ msgstr "Cari di AUR sebagai baku"
msgid "Check for updates from AUR"
msgstr "Periksa pembaruan dari AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Icelandic (http://www.transifex.com/manjarolinux/manjaro-"
@ -590,6 +590,10 @@ msgstr "Fjöldi af útgáfum af hverjum pakka til að halda í skyndiminni"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Út um allan heim"
@ -781,6 +785,10 @@ msgstr "Leita sjálfgefið í AUR"
msgid "Check for updates from AUR"
msgstr "Athuga með uppfærslur frá AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Aðeins fjarlægja útgáfum af eyddum pökkum"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Icelandic (Iceland) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -21,8 +21,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Italian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -601,6 +601,10 @@ msgstr "Numero di versioni di ogni pacchetto da conservare nella cache"
msgid "Build directory"
msgstr "Cartella di costruzione"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mondiale"
@ -792,6 +796,10 @@ msgstr "Cerca in AUR come impostazione predefinita."
msgid "Check for updates from AUR"
msgstr "Controlla aggiornamenti da AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Rimuovi solo le versioni dei pacchetti disinstallati"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Italian (Italy) (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Japanese (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -588,6 +588,10 @@ msgstr "各パッケージのバージョン番号をキャッシュに保存す
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "ワールドワイド"
@ -779,6 +783,10 @@ msgstr "デフォルトでAURを検索する"
msgid "Check for updates from AUR"
msgstr "AUR 更新の確認"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "アンインストールしたバージョンのみ削除"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2020-01-02 12:41-0300\n"
"Last-Translator: zura davitashvili <zdavitashvili0@gmail.com>\n"
"Language-Team: Georgian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -593,6 +593,10 @@ msgstr "ქეშში დასატოვებელი თითოეუ
msgid "Build directory"
msgstr "აგების კატალოგი"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "მსოფლიოს მასშტაბით"
@ -784,6 +788,10 @@ msgstr "ავტომატურად AUR-შიც მოიძებნო
msgid "Check for updates from AUR"
msgstr "განახლებების შემოწმება AUR-იდან"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "მხოლოდ წაშლილი პაკეტების ვერსიების მოცილება"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Korean (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -774,6 +778,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 15:15+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/manjarolinux/manjaro-"
@ -594,6 +594,10 @@ msgstr "Podėlyje laikomas kiekvieno paketo versijų skaičius"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Viso pasaulio"
@ -785,6 +789,10 @@ msgstr "Pagal numatymą ieškoti AUR saugykloje"
msgid "Check for updates from AUR"
msgstr "Tikrinti atnaujinimus iš AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Šalinti tik pašalintų paketų versijas"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Malayalam (http://www.transifex.com/manjarolinux/manjaro-"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Malay (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -585,6 +585,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -771,6 +775,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -23,8 +23,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/manjarolinux/"
@ -605,6 +605,10 @@ msgstr "Antall versjoner av hver pakke som skal beholdes i hurtiglageret"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Verdensomspennende"
@ -796,6 +800,10 @@ msgstr "Søk i AUR som standard"
msgid "Check for updates from AUR"
msgstr "Se etter oppdateringer fra AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Bare fjern versjoner av ikke-installerte pakker"

View File

@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 09:20+0000\n"
"Last-Translator: Heimen Stoffels <vistausss@outlook.com>\n"
"Language-Team: Dutch (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -603,6 +603,10 @@ msgstr "Aantal in de cache te houden versies van elk pakket"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Wereldwijd"
@ -794,6 +798,10 @@ msgstr "Stel zoeken in AUR als standaard in"
msgid "Check for updates from AUR"
msgstr "Controleer AUR voor opwaarderingen"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Alleen versies verwijderen van gedeïnstalleerde pakketten"

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/manjarolinux/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Wereldwijd "
@ -779,6 +783,10 @@ msgstr "Zoek automatisch in AUR"
msgid "Check for updates from AUR"
msgstr "Zoeken naar updates van de AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 09:19+0000\n"
"Last-Translator: Heimen Stoffels <vistausss@outlook.com>\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/manjarolinux/"
@ -593,6 +593,10 @@ msgstr "Aantal in de cache te houden versies van elk pakket"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Wereldwijd"
@ -784,6 +788,10 @@ msgstr "Standaard in AUR zoeken"
msgid "Check for updates from AUR"
msgstr "Controleren op AUR-updates"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Alleen versies verwijderen van gedeïnstalleerde pakketten"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/manjarolinux/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-04-01 21:04-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -586,6 +586,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -772,6 +776,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -18,8 +18,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-08-02 11:35+0000\n"
"Last-Translator: Piotr Strębski <strebski@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -606,6 +606,10 @@ msgstr "Liczba wersji każdego pakietu do przechowywania w pamięci podręcznej"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Ogólnoświatowe"
@ -798,6 +802,10 @@ msgstr "Wyszukuj domyślnie w AUR"
msgid "Check for updates from AUR"
msgstr "Sprawdź aktualizacje w AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Usuń tylko wersje odinstalowanych pakietów"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Polish (Poland) (http://www.transifex.com/manjarolinux/"
@ -595,6 +595,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -781,6 +785,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -1,5 +1,5 @@
# Translation of Pamac-Classic.
# Copyright (C) 2017 Chris Cromer <cromer@cromnix.org>
# Copyright (C) 2017 Chris Cromer <chris@cromer.cl>
# Copyright (C) 2013-2016 Manjaro Developers <manjaro-dev@manjaro.org>
# This file is distributed under the same license as the Pamac package.
# Guillaume Benoit <guillaume@manjaro.org>, 2013-2016.
@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Pamac-Classic\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2017-10-17 08:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Portuguese (http://www.transifex.com/manjarolinux/manjaro-"
@ -588,6 +588,10 @@ msgstr "Número de versões de cada pacote a manter na cache"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundial"
@ -780,6 +784,10 @@ msgstr "Pesquisar no AUR por pré-definição"
msgid "Check for updates from AUR"
msgstr "Verificar se há atualizações do AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Remover apenas as versões de pacotes desinstalados"

View File

@ -25,8 +25,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/manjarolinux/"
@ -605,6 +605,10 @@ msgstr "Número de versões de cada pacote a manter na cache"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundial"
@ -797,6 +801,10 @@ msgstr "Pesquisar no AUR por padrão"
msgid "Check for updates from AUR"
msgstr "Verificar atualizações do AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Remova apenas as versões de pacotes desinstalados"

View File

@ -16,8 +16,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/manjarolinux/"
@ -596,6 +596,10 @@ msgstr "Número de versões de cada pacote a manter na cache"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundial"
@ -788,6 +792,10 @@ msgstr "Pesquisar no AUR por padrão"
msgid "Check for updates from AUR"
msgstr "Verificar se há atualizações do AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Remover apenas as versões de pacotes desinstalados"

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Romanian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -596,6 +596,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mondial"
@ -786,6 +790,10 @@ msgstr "Caută în AUR implicit"
msgid "Check for updates from AUR"
msgstr "Verifică actualizări din AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -26,8 +26,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Russian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -614,6 +614,10 @@ msgstr "Сохранять в кэше предыдущие версии пак
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Мировой"
@ -805,6 +809,10 @@ msgstr "Поиск в AUR по умолчанию"
msgid "Check for updates from AUR"
msgstr "Проверить обновления AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Удалять из кэша предыдущие версии только для удалённых пакетов"

View File

@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Sinhala (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -589,6 +589,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -775,6 +779,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -13,8 +13,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 06:06+0000\n"
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -597,6 +597,10 @@ msgstr "Počet verzií každého balíka, ktoré ponechať vo vyrovnávacej pam
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Celého sveta"
@ -789,6 +793,10 @@ msgstr "Predvolene vyhľadávať v repozitári AUR"
msgid "Check for updates from AUR"
msgstr "Kontrolovať aktualizácie z repozitára AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Odstrániť iba verzie odinštalovaných balíkov"

View File

@ -14,8 +14,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/manjarolinux/manjaro-"
@ -601,6 +601,10 @@ msgstr "Število verzij za vsak paket shranjenih v predpomnilniku"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Svetovno"
@ -793,6 +797,10 @@ msgstr "Privzeto iskanje v AUR"
msgid "Check for updates from AUR"
msgstr "Preveri za posodobitve iz AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Odstrani le različice nenameščenih paketov"

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/manjarolinux/"
@ -594,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -780,6 +784,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Serbian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -594,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Широм света"
@ -782,6 +786,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -13,8 +13,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/manjarolinux/"
@ -597,6 +597,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -783,6 +787,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr "Proveri ažuriranja iz AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Serbian (Serbia) (http://www.transifex.com/manjarolinux/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/"
@ -591,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -777,6 +781,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -16,8 +16,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Swedish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -596,6 +596,10 @@ msgstr "Antal versioner av varje paket att behålla i cachen"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Världsomspännande"
@ -787,6 +791,10 @@ msgstr "Sök i AUR som standard"
msgid "Check for updates from AUR"
msgstr "Leta efter uppdateringar i AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Ta endast bort gamla versioner av borttagna paket"

View File

@ -12,8 +12,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-08-04 06:07+0000\n"
"Last-Translator: Demiray Muhterem <mdemiray@msn.com>\n"
"Language-Team: Turkish (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -594,6 +594,10 @@ msgstr "Önbellekte tutlacak her bir paketin sürüm sayısı"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Küresel"
@ -785,6 +789,10 @@ msgstr "Varsayılan olarak AUR depolarında da ara"
msgid "Check for updates from AUR"
msgstr "AUR deposundaki güncellemelere bak"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Sadece kaldırılabilir paket sürümlerini kaldır"

View File

@ -19,8 +19,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Ukrainian (http://www.transifex.com/manjarolinux/manjaro-"
@ -603,6 +603,10 @@ msgstr "Кількість версій кожного пакунка збері
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "По всьому світу"
@ -794,6 +798,10 @@ msgstr "Шукати в AUR типово"
msgid "Check for updates from AUR"
msgstr "Перевірка оновлень AUR"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "Видалити лишень версії вилучиних пакунків"

View File

@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Urdu (Pakistan) (http://www.transifex.com/manjarolinux/"
@ -588,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "بین القوامی"
@ -776,6 +780,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Uzbek (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -10,8 +10,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Vietnamese (http://www.transifex.com/manjarolinux/manjaro-"
@ -587,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -773,6 +777,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Chinese (http://www.transifex.com/manjarolinux/manjaro-pamac/"
@ -584,6 +584,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@ -770,6 +774,10 @@ msgstr ""
msgid "Check for updates from AUR"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr ""

View File

@ -13,8 +13,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/manjarolinux/"
@ -590,6 +590,10 @@ msgstr "每个软件包保留在缓存中的版本数目"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "全世界"
@ -778,6 +782,10 @@ msgstr "默认在 AUR 中搜索"
msgid "Check for updates from AUR"
msgstr "从 AUR 检查更新"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "只清除已卸载软件包的版本"

View File

@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2021-07-10 15:58-0400\n"
"PO-Revision-Date: 2017-07-30 12:17+0000\n"
"Last-Translator: Jeff Huang <s8321414@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/manjarolinux/"
@ -588,6 +588,10 @@ msgstr "每個軟體包要保留在快取中的版本數量"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "全世界"
@ -776,6 +780,10 @@ msgstr "預設在 AUR 中搜尋"
msgid "Check for updates from AUR"
msgstr "自 AUR 檢查更新"
#: ../data/interface/preferences_dialog.ui
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "僅移除未安裝的軟體包版本"

View File

@ -51,7 +51,6 @@ public class AlpmConfig {
string? dbpath;
string? logfile;
string? gpgdir;
string? arch;
int usesyslog;
public int checkspace;
GLib.List<string> cachedirs;
@ -62,6 +61,7 @@ public class AlpmConfig {
GLib.List<string> noupgrades;
GLib.List<string> holdpkgs;
GLib.List<string> syncfirsts;
GLib.List<string> architectures;
Alpm.Signature.Level siglevel;
Alpm.Signature.Level localfilesiglevel;
Alpm.Signature.Level remotefilesiglevel;
@ -93,6 +93,7 @@ public class AlpmConfig {
noupgrades = new GLib.List<string> ();
holdpkgs = new GLib.List<string> ();
syncfirsts = new GLib.List<string> ();
architectures = new GLib.List<string> ();
usesyslog = 0;
checkspace = 0;
siglevel = Alpm.Signature.Level.PACKAGE | Alpm.Signature.Level.PACKAGE_OPTIONAL | Alpm.Signature.Level.DATABASE | Alpm.Signature.Level.DATABASE_OPTIONAL;
@ -130,8 +131,8 @@ public class AlpmConfig {
// rootdir is defined because it contains configuration data.
gpgdir = "/etc/pacman.d/gnupg/";
}
if (arch == null) {
arch = Posix.utsname().machine;
if (architectures.length () == 0) {
architectures.append (Posix.utsname().machine);
}
}
@ -171,7 +172,9 @@ public class AlpmConfig {
handle.logfile = logfile;
}
handle.gpgdir = gpgdir;
handle.arch = arch;
foreach (unowned string arch in architectures) {
handle.add_architecture (arch);
}
handle.usesyslog = usesyslog;
handle.checkspace = checkspace;
handle.defaultsiglevel = siglevel;
@ -202,7 +205,9 @@ public class AlpmConfig {
repo.siglevel = merge_siglevel (siglevel, repo.siglevel, repo.siglevel_mask);
unowned Alpm.DB db = handle.register_syncdb (repo.name, repo.siglevel);
foreach (unowned string url in repo.urls) {
db.add_server (url.replace ("$repo", repo.name).replace ("$arch", handle.arch));
foreach (unowned string arch in architectures) {
db.add_server (url.replace ("$repo", repo.name).replace ("$arch", arch));
}
}
if (repo.usage == 0) {
db.usage = Alpm.DB.Usage.ALL;
@ -272,10 +277,12 @@ public class AlpmConfig {
} else if (key == "LogFile") {
logfile = val;
} else if (key == "Architecture") {
if (val == "auto") {
arch = Posix.utsname ().machine;
} else {
arch = val;
foreach (unowned string arch in val.split (" ")) {
if (val == "auto") {
architectures.append (Posix.utsname ().machine);
} else {
architectures.append (arch);
}
}
} else if (key == "UseSysLog") {
usesyslog = 1;

View File

@ -27,7 +27,7 @@ namespace Pamac {
class ChooseIgnorepkgsDialog : Gtk.Dialog {
[GtkChild]
public Gtk.TreeView treeview;
public unowned Gtk.TreeView treeview;
public Gtk.ListStore pkgs_list;

View File

@ -4,7 +4,7 @@ cfg_pamac.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('datadir'
cfg_pamac.set('GETTEXT_PACKAGE', 'pamac')
cfg_pamac.set('RELEASE_NAME', 'pamac')
cfg_pamac.set('PREFIX', get_option('prefix'))
cfg_pamac.set('VERSION', '7.2.1')
cfg_pamac.set('VERSION', '7.3.0')
cfg_pamac.set('TESTSRCDIR', meson.source_root())
cfgfile_1 = configure_file(
@ -70,7 +70,7 @@ Pamac_library = shared_library('Pamac', pamac_sources,
vala_args: pamac_vala_args,
c_args: pamac_c_args,
link_args: pamac_link_args,
version: '7.2.1',
version: '7.3.0',
soversion: '7',
install: true,
install_dir: [true, true, true, true])
@ -100,7 +100,7 @@ pamac_requires += ['vte-2.91']
pamac_requires += ['x11']
pkg_mod = import('pkgconfig')
pkg_mod.generate(libraries : Pamac_library,
version : '7.2.1',
version : '7.3.0',
name : 'Pamac',
filebase : 'Pamac',
description : 'Pamac',

View File

@ -4,7 +4,7 @@ cfg_pamac_clean_cache.set('PKGDATADIR', join_paths(get_option('prefix'),get_opti
cfg_pamac_clean_cache.set('GETTEXT_PACKAGE', 'pamac')
cfg_pamac_clean_cache.set('RELEASE_NAME', 'pamac')
cfg_pamac_clean_cache.set('PREFIX', get_option('prefix'))
cfg_pamac_clean_cache.set('VERSION', '7.2.1')
cfg_pamac_clean_cache.set('VERSION', '7.3.0')
cfg_pamac_clean_cache.set('TESTSRCDIR', meson.source_root())
cfgfile_4 = configure_file(

View File

@ -4,7 +4,7 @@ cfg_pamac_install.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('
cfg_pamac_install.set('GETTEXT_PACKAGE', 'pamac')
cfg_pamac_install.set('RELEASE_NAME', 'pamac')
cfg_pamac_install.set('PREFIX', get_option('prefix'))
cfg_pamac_install.set('VERSION', '7.2.1')
cfg_pamac_install.set('VERSION', '7.3.0')
cfg_pamac_install.set('TESTSRCDIR', meson.source_root())
cfgfile_5 = configure_file(

View File

@ -26,11 +26,11 @@ namespace Pamac {
class ProgressDialog : Gtk.ApplicationWindow {
[GtkChild]
public Gtk.Box box;
public unowned Gtk.Box box;
[GtkChild]
public Gtk.Button close_button;
public unowned Gtk.Button close_button;
[GtkChild]
public Gtk.Expander expander;
public unowned Gtk.Expander expander;
public ProgressDialog () {
Object ();

View File

@ -26,7 +26,7 @@ namespace Pamac {
class HistoryDialog : Gtk.Dialog {
[GtkChild]
public Gtk.TextView textview;
public unowned Gtk.TextView textview;
public HistoryDialog (Gtk.ApplicationWindow window) {
int use_header_bar;

View File

@ -53,88 +53,88 @@ namespace Pamac {
// manager objects
[GtkChild]
public Gtk.Stack main_stack;
public unowned Gtk.Stack main_stack;
[GtkChild]
Gtk.Button button_back;
unowned Gtk.Button button_back;
[GtkChild]
Gtk.MenuButton button_menu;
unowned Gtk.MenuButton button_menu;
#if ENABLE_HAMBURGER
[GtkChild]
Gtk.ModelButton preferences_button;
unowned Gtk.ModelButton preferences_button;
#else
[GtkChild]
Gtk.HeaderBar headerbar;
unowned Gtk.HeaderBar headerbar;
#endif
[GtkChild]
Gtk.TreeView packages_treeview;
unowned Gtk.TreeView packages_treeview;
[GtkChild]
Gtk.TreeViewColumn packages_state_column;
unowned Gtk.TreeViewColumn packages_state_column;
#if DISABLE_AUR
[GtkChild]
Gtk.ScrolledWindow aur_scrolledwindow;
unowned Gtk.ScrolledWindow aur_scrolledwindow;
#else
[GtkChild]
Gtk.TreeView aur_treeview;
unowned Gtk.TreeView aur_treeview;
[GtkChild]
Gtk.TreeViewColumn aur_state_column;
unowned Gtk.TreeViewColumn aur_state_column;
#endif
[GtkChild]
public Gtk.Stack filters_stack;
public unowned Gtk.Stack filters_stack;
[GtkChild]
Gtk.StackSwitcher filters_stackswitcher;
unowned Gtk.StackSwitcher filters_stackswitcher;
[GtkChild]
Gtk.SearchEntry search_entry;
unowned Gtk.SearchEntry search_entry;
[GtkChild]
Gtk.TreeView search_treeview;
unowned Gtk.TreeView search_treeview;
[GtkChild]
Gtk.TreeView groups_treeview;
unowned Gtk.TreeView groups_treeview;
[GtkChild]
Gtk.TreeView states_treeview;
unowned Gtk.TreeView states_treeview;
[GtkChild]
Gtk.TreeView repos_treeview;
unowned Gtk.TreeView repos_treeview;
[GtkChild]
Gtk.Stack packages_stack;
unowned Gtk.Stack packages_stack;
[GtkChild]
Gtk.StackSwitcher packages_stackswitcher;
unowned Gtk.StackSwitcher packages_stackswitcher;
[GtkChild]
Gtk.Label updated_label;
unowned Gtk.Label updated_label;
[GtkChild]
Gtk.Stack properties_stack;
unowned Gtk.Stack properties_stack;
#if DISABLE_AUR
#else
[GtkChild]
Gtk.StackSwitcher properties_stackswitcher;
unowned Gtk.StackSwitcher properties_stackswitcher;
#endif
[GtkChild]
Gtk.Grid deps_grid;
unowned Gtk.Grid deps_grid;
[GtkChild]
Gtk.Grid details_grid;
unowned Gtk.Grid details_grid;
[GtkChild]
Gtk.ScrolledWindow files_scrolledwindow;
unowned Gtk.ScrolledWindow files_scrolledwindow;
[GtkChild]
Gtk.Label name_label;
unowned Gtk.Label name_label;
[GtkChild]
Gtk.Label desc_label;
unowned Gtk.Label desc_label;
[GtkChild]
Gtk.Label link_label;
unowned Gtk.Label link_label;
[GtkChild]
Gtk.Label licenses_label;
unowned Gtk.Label licenses_label;
[GtkChild]
Gtk.ToggleButton remove_togglebutton;
unowned Gtk.ToggleButton remove_togglebutton;
[GtkChild]
Gtk.ToggleButton reinstall_togglebutton;
unowned Gtk.ToggleButton reinstall_togglebutton;
[GtkChild]
Gtk.ToggleButton install_togglebutton;
unowned Gtk.ToggleButton install_togglebutton;
[GtkChild]
Gtk.TextView files_textview;
unowned Gtk.TextView files_textview;
[GtkChild]
Gtk.Box transaction_infobox;
unowned Gtk.Box transaction_infobox;
[GtkChild]
Gtk.Button details_button;
unowned Gtk.Button details_button;
[GtkChild]
Gtk.Button apply_button;
unowned Gtk.Button apply_button;
[GtkChild]
Gtk.Button cancel_button;
unowned Gtk.Button cancel_button;
// menu
Gtk.Menu right_click_menu;

View File

@ -4,7 +4,7 @@ cfg_pamac_manager.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('
cfg_pamac_manager.set('GETTEXT_PACKAGE', 'pamac')
cfg_pamac_manager.set('RELEASE_NAME', 'pamac')
cfg_pamac_manager.set('PREFIX', get_option('prefix'))
cfg_pamac_manager.set('VERSION', '7.2.1')
cfg_pamac_manager.set('VERSION', '7.3.0')
cfg_pamac_manager.set('TESTSRCDIR', meson.source_root())
cfgfile_6 = configure_file(

View File

@ -4,7 +4,7 @@ cfg_pamac_system_daemon.set('PKGDATADIR', join_paths(get_option('prefix'),get_op
cfg_pamac_system_daemon.set('GETTEXT_PACKAGE', 'pamac')
cfg_pamac_system_daemon.set('RELEASE_NAME', 'pamac')
cfg_pamac_system_daemon.set('PREFIX', get_option('prefix'))
cfg_pamac_system_daemon.set('VERSION', '7.2.1')
cfg_pamac_system_daemon.set('VERSION', '7.3.0')
cfg_pamac_system_daemon.set('TESTSRCDIR', meson.source_root())
cfgfile_7 = configure_file(

View File

@ -183,12 +183,12 @@ namespace Pamac {
trans_commit_finished (false);
return;
} else {
alpm_handle.eventcb = (Alpm.EventCallBack) cb_event;
alpm_handle.progresscb = (Alpm.ProgressCallBack) cb_progress;
alpm_handle.questioncb = (Alpm.QuestionCallBack) cb_question;
alpm_handle.fetchcb = (Alpm.FetchCallBack) cb_fetch;
alpm_handle.totaldlcb = (Alpm.TotalDownloadCallBack) cb_totaldownload;
alpm_handle.logcb = (Alpm.LogCallBack) cb_log;
alpm_handle.set_eventcb((Alpm.EventCallBack) cb_event, null);
alpm_handle.set_progresscb((Alpm.ProgressCallBack) cb_progress, null);
alpm_handle.set_questioncb((Alpm.QuestionCallBack) cb_question, null);
alpm_handle.set_fetchcb((Alpm.FetchCallBack) cb_fetch, null);
alpm_handle.set_dlcb((Alpm.DownloadCallBack) cb_download, null);
alpm_handle.set_logcb((Alpm.LogCallBack) cb_log, null);
lockfile = GLib.File.new_for_path (alpm_handle.lockfile);
var pamac_config = new Pamac.Config ();
if (pamac_config.update_files_db) {
@ -196,12 +196,12 @@ namespace Pamac {
} else {
files_handle = alpm_config.get_handle (false);
}
files_handle.eventcb = (Alpm.EventCallBack) cb_event;
files_handle.progresscb = (Alpm.ProgressCallBack) cb_progress;
files_handle.questioncb = (Alpm.QuestionCallBack) cb_question;
files_handle.fetchcb = (Alpm.FetchCallBack) cb_fetch;
files_handle.totaldlcb = (Alpm.TotalDownloadCallBack) cb_totaldownload;
files_handle.logcb = (Alpm.LogCallBack) cb_log;
files_handle.set_eventcb((Alpm.EventCallBack) cb_event, null);
files_handle.set_progresscb((Alpm.ProgressCallBack) cb_progress, null);
files_handle.set_questioncb((Alpm.QuestionCallBack) cb_question, null);
files_handle.set_fetchcb((Alpm.FetchCallBack) cb_fetch, null);
files_handle.set_dlcb((Alpm.DownloadCallBack) cb_download, null);
files_handle.set_logcb((Alpm.LogCallBack) cb_log, null);
}
}
@ -475,26 +475,19 @@ namespace Pamac {
private bool update_dbs (Alpm.Handle handle, int force) {
bool success = false;
unowned Alpm.List<unowned Alpm.DB> syncdbs = handle.syncdbs;
while (syncdbs != null) {
if (cancellable.is_cancelled ()) {
break;
}
unowned Alpm.DB db = syncdbs.data;
if (db.update (force) >= 0) {
// We should always succeed if at least one DB was upgraded - we may possibly
// fail later with unresolved deps, but that should be rare, and would be expected
success = true;
} else {
Alpm.Errno errnos = handle.errno ();
current_error.errnos = (uint) errnos;
if (errnos != 0) {
// download error details are set in cb_fetch
if (errnos != Alpm.Errno.EXTERNAL_DOWNLOAD) {
current_error.details = { Alpm.strerror (errnos) };
}
if (handle.update_dbs (syncdbs, force) >= 0) {
// We should always succeed if at least one DB was upgraded - we may possibly
// fail later with unresolved deps, but that should be rare, and would be expected
success = true;
} else {
Alpm.Errno errnos = handle.errno ();
current_error.errnos = (uint) errnos;
if (errnos != 0) {
// download error details are set in cb_fetch
if (errnos != Alpm.Errno.EXTERNAL_DOWNLOAD) {
current_error.details = { Alpm.strerror (errnos) };
}
}
syncdbs.next ();
}
return success;
}
@ -1268,7 +1261,7 @@ namespace Pamac {
};
trans_commit_finished (false);
} else {
alpm_handle.questioncb = (Alpm.QuestionCallBack) cb_question;
alpm_handle.set_questioncb((Alpm.QuestionCallBack) cb_question, null);
lockfile = GLib.File.new_for_path (alpm_handle.lockfile);
// fake aur db
alpm_handle.register_syncdb ("aur", 0);
@ -1720,7 +1713,7 @@ private void write_log_file (string event) {
}
}
private void cb_event (Alpm.Event.Data data) {
private void cb_event (void *ctx, Alpm.Event.Data data) {
string[] details = {};
uint secondary_type = 0;
switch (data.type) {
@ -1778,13 +1771,14 @@ private void cb_event (Alpm.Event.Data data) {
case Alpm.Event.Type.SCRIPTLET_INFO:
details += data.scriptlet_info_line;
break;
case Alpm.Event.Type.PKGDOWNLOAD_START:
case Alpm.Event.Type.PKG_RETRIEVE_START:
// do not emit event when download is cancelled
if (system_daemon.cancellable.is_cancelled ()) {
return;
}
details += data.pkgdownload_file;
break;
system_daemon.emit_totaldownload (data.pkg_retrieve_total_size);
// event will be emitted by cb_fetch
return;
case Alpm.Event.Type.OPTDEP_REMOVAL:
details += data.optdep_removal_pkg.name;
details += data.optdep_removal_optdep.compute_string ();
@ -1804,7 +1798,7 @@ private void cb_event (Alpm.Event.Data data) {
system_daemon.emit_event ((uint) data.type, secondary_type, details);
}
private void cb_question (Alpm.Question.Data data) {
private void cb_question (void *ctx, Alpm.Question.Data data) {
switch (data.type) {
case Alpm.Question.Type.INSTALL_IGNOREPKG:
// Do not install package in IgnorePkg/IgnoreGroup
@ -1861,7 +1855,7 @@ private void cb_question (Alpm.Question.Data data) {
}
}
private void cb_progress (Alpm.Progress progress, string pkgname, int percent, uint n_targets, uint current_target) {
private void cb_progress (void *ctx, Alpm.Progress progress, string pkgname, int percent, uint n_targets, uint current_target) {
if (percent == 0) {
system_daemon.emit_progress ((uint) progress, pkgname, (uint) percent, n_targets, current_target);
system_daemon.timer.start ();
@ -1878,7 +1872,7 @@ private void cb_progress (Alpm.Progress progress, string pkgname, int percent, u
private uint64 prevprogress;
private int cb_download (void* data, uint64 dltotal, uint64 dlnow, uint64 ultotal, uint64 ulnow) {
private int cb_curldownload (void* data, uint64 dltotal, uint64 dlnow, uint64 ultotal, uint64 ulnow) {
if (unlikely (system_daemon.cancellable.is_cancelled ())) {
return 1;
@ -1907,7 +1901,7 @@ private int cb_download (void* data, uint64 dltotal, uint64 dlnow, uint64 ultota
return 0;
}
private int cb_fetch (string fileurl, string localpath, int force) {
private int cb_fetch (void *ctx, string fileurl, string localpath, int force) {
if (system_daemon.cancellable.is_cancelled ()) {
return -1;
}
@ -1917,12 +1911,14 @@ private int cb_fetch (string fileurl, string localpath, int force) {
var destfile = GLib.File.new_for_path (localpath + url.get_basename ());
var tempfile = GLib.File.new_for_path (destfile.get_path () + ".part");
system_daemon.emit_event(Alpm.Event.Type.PKG_RETRIEVE_START, 0, {url.get_basename ()});
system_daemon.curl.reset ();
system_daemon.curl.setopt (Curl.Option.FAILONERROR, 1L);
system_daemon.curl.setopt (Curl.Option.CONNECTTIMEOUT, 30L);
system_daemon.curl.setopt (Curl.Option.FILETIME, 1L);
system_daemon.curl.setopt (Curl.Option.FOLLOWLOCATION, 1L);
system_daemon.curl.setopt (Curl.Option.XFERINFOFUNCTION, cb_download);
system_daemon.curl.setopt (Curl.Option.XFERINFOFUNCTION, cb_curldownload);
system_daemon.curl.setopt (Curl.Option.LOW_SPEED_LIMIT, 1L);
system_daemon.curl.setopt (Curl.Option.LOW_SPEED_TIME, 30L);
system_daemon.curl.setopt (Curl.Option.NETRC, Curl.NetRCOption.OPTIONAL);
@ -1946,8 +1942,8 @@ private int cb_fetch (string fileurl, string localpath, int force) {
// start from scratch only download if our local is out of date.
system_daemon.curl.setopt (Curl.Option.TIMECONDITION, Curl.TimeCond.IFMODSINCE);
FileInfo info = destfile.query_info ("time::modified", 0);
TimeVal time = info.get_modification_time ();
system_daemon.curl.setopt (Curl.Option.TIMEVALUE, time.tv_sec);
DateTime time = info.get_modification_date_time ();
system_daemon.curl.setopt (Curl.Option.TIMEVALUE, time.to_unix());
} else if (tempfile.query_exists ()) {
// a previous partial download exists, resume from end of file.
FileInfo info = tempfile.query_info ("standard::size", 0);
@ -2082,11 +2078,13 @@ private int cb_fetch (string fileurl, string localpath, int force) {
return ret;
}
private void cb_totaldownload (uint64 total) {
system_daemon.emit_totaldownload (total);
private void cb_download (void* ctx, string filename, Alpm.Download.Event event_type, void* event_data) {
if (event_type == Alpm.Download.Event.COMPLETED) {
system_daemon.emit_totaldownload (((Alpm.Download.Completed) event_data).total);
}
}
private void cb_log (Alpm.LogLevel level, string fmt, va_list args) {
private void cb_log (void *ctx, Alpm.LogLevel level, string fmt, va_list args) {
// do not log errors when download is cancelled
if (system_daemon.cancellable.is_cancelled ()) {
return;

Some files were not shown because too many files have changed in this diff Show More