31 Commits

Author SHA1 Message Date
7324482ef5 update translation files with newest text 2021-07-10 16:06:46 -04:00
cdd9088d91 Merge pull request 'Add option to keep AUR packages' (#11) from matthiakl/pamac-classic:store_aur_pkgs into master
Reviewed-on: #11
2021-07-10 15:58:09 -04:00
matthiakl
7a9a241181 Use GLib.File instead of cp 2021-07-10 20:35:09 +02:00
matthiakl
11e1ba2564 Merge branch 'master' into store_aur_pkgs 2021-07-10 19:59:10 +02:00
fa9a403714 prepare for 7.3.0 2021-07-10 13:30:23 -04:00
a9661508cb Merge pull request 'Compatibility with libalpm 13.0.0' (#10) from matthiakl/pamac-classic:libalpm_13 into master
Reviewed-on: #10
2021-07-10 13:15:19 -04:00
matthiakl
f3d4c04f35 Resolve warnings 2021-07-09 16:20:58 +02:00
matthiakl
4d14ca0fcf Fix pkg retrieve event handling 2021-07-09 16:08:13 +02:00
matthiakl
b5a6f05654 Resolve some deprecation warnings 2021-07-09 14:25:05 +02:00
matthiakl
10722140f3 Fix compilation errors 2021-07-09 14:00:59 +02:00
matthiakl
fb8724826e Update vapi for libalpm 13 2021-07-09 12:11:27 +02:00
matthiakl
24b9105207 Updated German translation 2021-07-08 16:28:43 +02:00
matthiakl
b518a15229 Option to store built AUR packages in a custom directory 2021-07-08 16:09:00 +02:00
4dcfa3ff98 Minor cosmetic change to cs.po (#8)
Minor cosmetic change to cs.po

this entry looks a bit weird among others in the state list
2020-04-11 08:23:02 -04:00
62a9402dac prepare for 7.2.1 2020-04-01 21:04:31 -03:00
6b8f93fe7e Update 'po/cs.po' (#7)
Fix typo in last string

Fix typo in previous commit

Update 'po/cs.po'
2020-03-31 19:51:26 -03:00
8ca16ace45 [UPDATE] Georgian(įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜) translation (#6)
Upload files to 'po'

Delete 'po/ka.po'
2020-03-31 19:50:56 -03:00
06672f6f1f add notification of transaction finished 2020-03-29 21:51:10 -03:00
49dc0c20a0 prepare 7.1.3 2020-03-12 21:22:58 -03:00
d3fe4c0bae fix vala 0.48 build 2020-03-12 21:22:12 -03:00
9b9880e65d remove old cmake stuff 2020-03-12 19:48:24 -03:00
9d0aa6f36c update readme to remove cmake references 2020-01-02 12:51:43 -03:00
1d44f7b034 prepare 7.1.2 2020-01-02 12:43:51 -03:00
625f8df4aa Georgian(įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜) translation (#2)
Merged Georgian translation
2020-01-02 12:19:07 -03:00
53ba5f24b3 update to 7.1.1 2019-10-23 15:05:37 -03:00
6a6175478a fix incorrect cases in switch for libalpm 5.2 2019-10-23 15:04:48 -03:00
b6144a7164 update to work with libalpm 5.2 2019-10-23 14:41:05 -03:00
e35b4c3ada Fix build with new version of vala 2019-09-17 19:18:57 -03:00
ac4595a8d4 new version 2019-07-19 08:44:16 -04:00
285431e0ab fix tray 2019-07-19 08:42:19 -04:00
cd1f361c51 fix path assertion error 2019-07-19 08:32:30 -04:00
116 changed files with 3845 additions and 2619 deletions

View File

@@ -34,47 +34,6 @@ A graphical package manager for pacman
- Vala: 0.38
- AutoVala: 1.2.0 (optional to regenerate CMake and Meson files)
## Using CMake with GNU Make
```
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_INSTALL_SYSCONFDIR=/etc
make
make install
```
### Extra build flags
- -DDISABLE_AUR=ON (to disable AUR in Pamac)
- -DKDE_TRAY=ON (to build kde tray icon instead of gtk tray icon)
- -DENABLE_UPDATE_ICON=ON (to install the update desktop entry)
- -DICON_UPDATE=OFF (to disable updating the icon cache)
- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu)
## Using CMake with Ninja
```
mkdir build
cd build
cmake .. \
-GNinja
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_INSTALL_SYSCONFDIR=/etc
ninja
ninja install
```
### Extra build flags
- -DDISABLE_AUR=ON (to disable AUR in Pamac)
- -DKDE_TRAY=ON (to build kde tray icon instead of gtk tray icon)
- -DENABLE_UPDATE_ICON=ON (to install the update desktop entry)
- -DICON_UPDATE=OFF (to disable updating the icon cache)
- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu)
## Using Meson with Ninja
```
@@ -92,24 +51,4 @@ ninja install
- -DKDE_TRAY=ON (to build kde tray icon instead of gtk tray icon)
- -DENABLE_UPDATE_ICON=ON (to install the update desktop entry)
- -DICON_UPDATE=OFF (to disable updating the icon cache)
- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu)
## Using configure wrapper
The configure script is just a wrapper for CMake, in the background the build process is the same as using CMake with GNU Make.
```
./configure --prefix=/usr \
--libdir=/usr/lib \
--sysconfdir=/etc
make
make install
```
### Extra configure options
- --disable-aur (to disable Aur in Pamac)
- --enable-kde-tray (to build kde tray icon instead of gtk tray icon)
- --enable-update-desktop (to install the update desktop entry)
- --disable-icon-update (to disable updating the icon cache)
- --enable-hamburger (to build with the classic hamburger menu)
- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu)

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,13 +43,14 @@
<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>
<message xml:lang="az_AZ">Kimlik tələb olunur</message>
<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

@@ -22,7 +22,7 @@ if KDE_TRAY
appindicator3_0_1_dep = dependency('appindicator3-0.1')
endif
atk_dep = dependency('atk')
cairo_dep = dependency('cairo')
cairo_gobject_dep = dependency('cairo-gobject')
gdk_3_0_dep = dependency('gdk-3.0')
gdk_pixbuf_2_0_dep = dependency('gdk-pixbuf-2.0')
gio_2_0_dep = dependency('gio-2.0')

View File

@@ -1,8 +1,8 @@
### AutoVala Project ###
autovala_version: 30
project_name: pamac
project_version: 7.0.0
vala_version: 0.44
project_version: 7.3.0
vala_version: 0.48
custom: data/systemd/pamac-system.service /usr/lib/systemd/system
custom: data/systemd/pamac-cleancache.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.0.0
*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.0.0
*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.0.0
*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.0.0
*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.0.0
*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.0.0
*version: 7.3.0
vala_local_package: Pamac
vala_package: posix
vala_check_package: gtk+-3.0
@@ -111,12 +111,13 @@ vala_check_package: libsoup-2.4
vala_library: src/pamac
*version: 7.0.0
*version: 7.3.0
*namespace: Pamac
use_gresource: pamac_transaction_gresource_xml
*vala_package: posix
vala_check_package: libnotify
*vala_check_package: atk
*vala_check_package: cairo
*vala_check_package: cairo-gobject
*vala_check_package: gdk-3.0
*vala_check_package: gdk-pixbuf-2.0
*vala_check_package: gio-2.0

View File

@@ -1 +1 @@
af ar ast az_AZ be bg bn bs bs_BA ca ca_ES cs cs_CZ cy da de de_CH de_DE el el_GR en_GB eo es es_419 es_AR es_ES es_MX es_SV et eu fa fa_IR fi fo fr gl he hi hi_IN hr hr_HR hu id is is_IS it it_IT ja ka ko lt ml ms nb nl nl_BE nl_NL nn pl pl_PL pt pt_BR pt_PT ro ru si sk sl sl_SI sr sr@latin sr_RS sr_RS@latin sv tr uk ur_PK uz vi zh zh_CN zh_TW
cs ka af ar ast az_AZ be bg bn bs bs_BA ca ca_ES cs_CZ cy da de de_CH de_DE el el_GR en_GB eo es es_419 es_AR es_ES es_MX es_SV et eu fa fa_IR fi fo fr gl he hi hi_IN hr hr_HR hu id is is_IS it it_IT ja ko lt ml ms nb nl nl_BE nl_NL nn pl pl_PL pt pt_BR pt_PT ro ru si sk sl sl_SI sr sr@latin sr_RS sr_RS@latin sv tr uk ur_PK uz vi zh zh_CN zh_TW

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: 2017-11-11 23:01-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-"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -244,27 +244,6 @@ msgstr "تفقد Ł‚Ų§ŲØŁ„ŁŠŲ© ال؄ندماج"
msgid "Loading packages files"
msgstr "ŲŖŲ­Ł…ŁŠŁ„ الحزم"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "فحص ؄ندماج ŲÆŁŠŁ„ŲŖŲ§"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ŲŖŁŲ¹ŁŠŁ„ ŲÆŁŠŁ„ŲŖŲ§"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Ł…ŁˆŁ„ŲÆ %s ŲØŁ€ %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "نجح ŲŖŁˆŁ„ŁŠŲÆ"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "فؓل ŲŖŁˆŁ„ŁŠŲÆ"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -357,10 +336,26 @@ msgstr "_غلق"
msgid "Nothing to do"
msgstr "لا يوجد ؓيؔ Ł„Ł„Ł‚ŁŠŲ§Ł… به"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "ŲŖŁ… ؄نهاؔ Ų§Ł„Ų¹Ł…Ł„ŁŠŲ© بنجاح"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -612,6 +607,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr " Ų­ŁˆŁ„ العالم"
@@ -800,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 ""
@@ -815,3 +818,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "اختيار تجاهل Ų§Ł„ŲŖŲ±Ł‚ŁŠŲ§ŲŖ"
#~ msgid "Checking delta integrity"
#~ msgstr "فحص ؄ندماج ŲÆŁŠŁ„ŲŖŲ§"
#~ msgid "Applying deltas"
#~ msgstr "ŲŖŁŲ¹ŁŠŁ„ ŲÆŁŠŁ„ŲŖŲ§"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Ł…ŁˆŁ„ŲÆ %s ŲØŁ€ %s"
#~ msgid "Generation succeeded"
#~ msgstr "نجح ŲŖŁˆŁ„ŁŠŲÆ"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -242,27 +242,6 @@ msgstr "Comprobando integridĆ”"
msgid "Loading packages files"
msgstr "Comprobando paquetes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Comprobando integridĆ” delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltes"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Xenerando %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Xeneración esitosa"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Xeneración fallida"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -351,10 +330,26 @@ msgstr "_Zarrar"
msgid "Nothing to do"
msgstr "Un res pa faer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Tresaición finada con ésitu"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -598,6 +593,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mundiu"
@@ -789,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 ""
@@ -804,3 +807,19 @@ msgstr "CachƩ"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Escueyi los anovamientos inoraos"
#~ msgid "Checking delta integrity"
#~ msgstr "Comprobando integridĆ” delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltes"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Xenerando %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "Xeneración esitosa"
#~ msgid "Generation failed"
#~ msgstr "Xeneración fallida"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltanın tətbiqi"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generasiya uğursuzdur"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_Bağlamaq"
msgid "Nothing to do"
msgstr "Etməli bir şey yoxdur"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Tranzaksiya uğurla qurtardı"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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 +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 ""
@@ -794,3 +797,9 @@ msgstr "Keş"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Applying deltas"
#~ msgstr "Deltanın tətbiqi"
#~ msgid "Generation failed"
#~ msgstr "Generasiya uğursuzdur"

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: 2017-11-11 23:01-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-"
@@ -238,27 +238,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -600,6 +595,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -786,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: 2017-11-11 23:01-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-"
@@ -243,27 +243,6 @@ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° за Ń†ŃŠ»Š¾ŃŃ‚Š½Š¾ŃŃ‚"
msgid "Loading packages files"
msgstr "ЗарежГане на пакетни файлове"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° на Гелта целостта"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ŠŸŃ€ŠøŠ»Š°Š³Š°Š½Šµ на Гелта фрагментите"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Генериране на %s с %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Генерирането е успешно"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Генерирането се провали"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -352,10 +331,26 @@ msgstr "_Затвори"
msgid "Nothing to do"
msgstr "ŠŠøŃ‰Š¾ за правене"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Успешно Š·Š°Š²ŃŠŃ€ŃˆŠµŠ½Š° Ń‚Ń€Š°Š½Š·Š°ŠŗŃ†ŠøŃ"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr "Брой версии от всеки пакет запазени в Šŗ
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "По света"
@@ -789,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 "ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ само версиите на Геинсталираните пакети"
@@ -804,3 +807,19 @@ msgstr "Кеш"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Š˜Š·Š±Š¾Ń€ на пренебрегнати Š½Š°Š“Š³Ń€Š°Š¶Š“Š°Š½ŠøŃ"
#~ msgid "Checking delta integrity"
#~ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° на Гелта целостта"
#~ msgid "Applying deltas"
#~ msgstr "ŠŸŃ€ŠøŠ»Š°Š³Š°Š½Šµ на Гелта фрагментите"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Генериране на %s с %s"
#~ msgid "Generation succeeded"
#~ msgstr "Генерирането е успешно"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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/"
@@ -245,27 +245,6 @@ msgstr "Comprovant-ne la integritat"
msgid "Loading packages files"
msgstr "Carregant els fitxers dels paquets"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Comprovant la integritat delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicant deltes"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generant %s amb %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generació acabada correctament"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "La generació ha fallat"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -354,10 +333,26 @@ msgstr "_Tanca"
msgid "Nothing to do"
msgstr "Res per fer."
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transacció acabada amb èxit"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,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"
@@ -794,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"
@@ -809,3 +812,19 @@ msgstr "Memòria cau"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Trieu les actualitzacions ignorades"
#~ msgid "Checking delta integrity"
#~ msgstr "Comprovant la integritat delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicant deltes"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generant %s amb %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generació acabada correctament"
#~ msgid "Generation failed"
#~ msgstr "La generació ha fallat"

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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "Comprovant integritat"
msgid "Loading packages files"
msgstr "Carregant els fitxers dels paquets"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Comprovant la integritat delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicant deltes"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generant %s amb %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generació acabada correctament"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "La generació ha fallat"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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 ""
@@ -797,3 +800,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Comprovant la integritat delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicant deltes"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generant %s amb %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generació acabada correctament"
#~ msgid "Generation failed"
#~ msgstr "La generació ha fallat"

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

101
po/cs.po
View File

@@ -10,12 +10,12 @@
# Ondrej Cesik <ondrej.cesik@gmail.com>, 2017
# philm <philm@manjaro.org>, 2015
# Scibex <kroupa@wvw.cz>, 2013
# halfark <vojtechprecechtel@gmail.com>, 2014,2016
# Pavel Dvorak <dvorapa~seznam~cz>, 2020
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2017-11-11 23:01-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
@@ -81,17 +81,17 @@ msgstr "balƭček %s nemĆ” platnou architekturu"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "unable to satisfy dependency '%s' required by %s"
msgstr ""
msgstr "nenĆ­ možnĆ© zĆ­skat zĆ”vislost ā€ž%sā€œ požadovanou balƭčkem %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "installing %s (%s) breaks dependency '%s' required by %s"
msgstr ""
msgstr "instalace %s (%s) rozbije zĆ”vislost ā€ž%sā€œ požadovanou balƭčkem %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "removing %s breaks dependency '%s' required by %s"
msgstr ""
msgstr "odinstalace %s rozbije zĆ”vislost ā€ž%sā€œ požadovanou balƭčkem %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
@@ -179,7 +179,7 @@ msgstr "Pro přeinstalaci"
#: ../src/transaction.vala
msgid "To upgrade"
msgstr ""
msgstr "Pro aktualizaci"
#: ../src/transaction.vala ../src/pamac-manager/manager_window.vala
msgid "Total download size"
@@ -243,27 +243,6 @@ msgstr "Kontrola integrity"
msgid "Loading packages files"
msgstr "NačƭtĆ”nĆ­ balƭčkÅÆ"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Kontrola integrity rozdĆ­lÅÆ"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "AplikovÔní rozdílů"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "GenerovƔnƭ %s s %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "GenerovĆ”nĆ­ bylo ĆŗspěŔnĆ©"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "GenerovƔnƭ bylo selhalo"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -353,13 +332,29 @@ msgstr "_Zavřít"
msgid "Nothing to do"
msgstr "Spolu nesouvisĆ­"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr "Transakce ĆŗspěŔnĆ”"
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr "Transakce byla ĆŗspěŔně dokončena"
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakce ĆŗspěŔně dokončena"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr "Transakce neĆŗspěŔnĆ”"
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr "Transakce neĆŗspěŔnĆ” a žÔdnĆ© balƭčky nebyly aktualizovĆ”ny/nainstalovĆ”ny"
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
msgstr "Nelze uzamknout databƔzi!"
#: ../src/pamac-tray/tray.vala ../src/pamac-manager/manager_window.vala
msgid "Your system is up-to-date"
@@ -392,7 +387,7 @@ msgstr "Pamac je již spuÅ”těn"
#: ../src/pamac-manager/manager.vala
msgid "Refresh Databases"
msgstr ""
msgstr "Aktualizovat databƔze"
#: ../src/pamac-manager/manager.vala ../data/interface/manager_window.ui
msgid "View History"
@@ -413,7 +408,7 @@ msgstr "O programu"
#: ../src/pamac-manager/manager.vala
msgid "Quit"
msgstr ""
msgstr "Ukončit"
#: ../src/pamac-manager/manager_window.vala
msgid "Deselect"
@@ -421,7 +416,7 @@ msgstr "ZruÅ”it výběr"
#: ../src/pamac-manager/manager_window.vala
msgid "Upgrade"
msgstr ""
msgstr "Aktualizace"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Install"
@@ -477,11 +472,11 @@ msgstr "RepozitÔř"
#: ../src/pamac-manager/manager_window.vala
msgid "Download size"
msgstr ""
msgstr "Velikost stahovanĆ”"
#: ../src/pamac-manager/manager_window.vala
msgid "Installed size"
msgstr ""
msgstr "Velikost instalace"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Groups"
@@ -600,6 +595,10 @@ msgstr "Počet verzĆ­ od každĆ©ho balƭčku udržovanĆ©ho v paměti cache."
#: ../src/preferences_dialog.vala
msgid "Build directory"
msgstr "Složka pro sestavovÔní"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
@@ -661,7 +660,7 @@ msgstr "RepozitÔře"
#: ../data/interface/manager_window.ui
msgid "Updates"
msgstr ""
msgstr "Aktualizace"
#: ../data/interface/manager_window.ui
msgid "Version"
@@ -721,7 +720,7 @@ msgstr "Kontrola aktualizacĆ­"
#: ../data/interface/preferences_dialog.ui
msgid "Update files databases (more details but slower)"
msgstr ""
msgstr "Aktualizovat databÔze souborů (více detailů, ale pomalejŔí)"
#: ../data/interface/preferences_dialog.ui
msgid "Hide tray icon when no update available"
@@ -737,19 +736,19 @@ msgstr "ObecnƩ"
#: ../data/interface/preferences_dialog.ui
msgid "Background color:"
msgstr ""
msgstr "Barva pozadĆ­:"
#: ../data/interface/preferences_dialog.ui
msgid "Text color:"
msgstr ""
msgstr "Barva textu:"
#: ../data/interface/preferences_dialog.ui
msgid "Font:"
msgstr ""
msgstr "PĆ­smo:"
#: ../data/interface/preferences_dialog.ui
msgid "Terminal"
msgstr ""
msgstr "TerminƔl"
#: ../data/interface/preferences_dialog.ui
msgid "Use mirrors from:"
@@ -793,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ÅÆ"
@@ -808,3 +811,19 @@ msgstr "Mezipaměń"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Vybrat ignorovanƩ aktualizace"
#~ msgid "Checking delta integrity"
#~ msgstr "Kontrola integrity rozdĆ­lÅÆ"
#~ msgid "Applying deltas"
#~ msgstr "AplikovÔní rozdílů"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "GenerovƔnƭ %s s %s"
#~ msgid "Generation succeeded"
#~ msgstr "GenerovĆ”nĆ­ bylo ĆŗspěŔnĆ©"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -785,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -785,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: 2017-11-11 23:01-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/"
@@ -247,27 +247,6 @@ msgstr "Verificerer pakkernes integritet"
msgid "Loading packages files"
msgstr "IndlƦser pakke-filer"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Checker deltas integritet"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "IndsƦtter deltaer"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Genererer %s med %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generation lykkedes"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generation fejlede"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -356,10 +335,26 @@ msgstr "_Luk"
msgid "Nothing to do"
msgstr "Intet at gĆøre"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaktion fuldfĆørt succesfuldt"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -603,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"
@@ -794,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"
@@ -809,3 +812,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "VƦlg Ignorerede Opgraderinger"
#~ msgid "Checking delta integrity"
#~ msgstr "Checker deltas integritet"
#~ msgid "Applying deltas"
#~ msgstr "IndsƦtter deltaer"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Genererer %s med %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generation lykkedes"
#~ msgid "Generation failed"
#~ msgstr "Generation fejlede"

105
po/de.po
View File

@@ -25,9 +25,9 @@
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2017-11-11 23:01-0300\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Report-Msgid-Bugs-To: chris@cromer.cl\n"
"POT-Creation-Date: 2020-03-29 21:48-0300\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"
@@ -254,27 +254,6 @@ msgstr "Integrität wird überprüft"
msgid "Loading packages files"
msgstr "Paketdateien werden geladen"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Überprüfe Delta-Integrität"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Wende Deltas an"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Erstelle %s mit %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Erstellung erfolgreich"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Erstellung fehlgeschlagen"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -363,13 +342,31 @@ msgstr "_Schließen"
msgid "Nothing to do"
msgstr "Es gibt nichts zu tun"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr "Transaktion erfolgreich"
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr "Die Transaktion wurde erfolgreich abgeschlossen"
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Vorgang erfolgreich abgeschlossen"
#: ../src/transaction.vala
msgid "Transaction failed"
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"
@@ -401,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"
@@ -422,7 +419,7 @@ msgstr "Über"
#: ../src/pamac-manager/manager.vala
msgid "Quit"
msgstr ""
msgstr "Schließen"
#: ../src/pamac-manager/manager_window.vala
msgid "Deselect"
@@ -430,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"
@@ -485,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"
@@ -608,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"
@@ -669,7 +670,7 @@ msgstr "Paketquellen"
#: ../data/interface/manager_window.ui
msgid "Updates"
msgstr ""
msgstr "Aktualisierungen"
#: ../data/interface/manager_window.ui
msgid "Version"
@@ -729,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"
@@ -747,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:"
@@ -803,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"
@@ -818,3 +823,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Zu ignorierende Aktualisierungen auswƤhlen"
#~ msgid "Checking delta integrity"
#~ msgstr "Überprüfe Delta-Integrität"
#~ msgid "Applying deltas"
#~ msgstr "Wende Deltas an"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Erstelle %s mit %s"
#~ msgid "Generation succeeded"
#~ msgstr "Erstellung erfolgreich"
#~ msgid "Generation failed"
#~ msgstr "Erstellung fehlgeschlagen"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -248,27 +248,6 @@ msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚"
msgid "Loading packages files"
msgstr "Ī¦ĻŒĻĻ„Ļ‰ĻƒĪ· αρχείων πακέτων"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚ delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Εφαρμογή deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Δημιουργία %s με %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Ī— Γημιουργία ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪµ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚!"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Ī— Γημιουργία απέτυχε."
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -357,10 +336,26 @@ msgstr "Κλείσιμο"
msgid "Nothing to do"
msgstr "Δεν υπάρχει τίποτε να γίνει"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Οι ενέργειες ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪ±Ī½ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -604,6 +599,10 @@ msgstr "Ī‘ĻĪ¹ĪøĪ¼ĻŒĻ‚ των ĪµĪŗĪ“ĻŒĻƒĪµĻ‰Ī½ για κάθε πακέτο πο
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Παγκόσμιο"
@@ -795,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 "Ī”Ī¹Ī­Ī³ĻĪ±ĻˆĪµ μόνο τις ĪµĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ των Ī±Ļ€ĪµĪ³ĪŗĪ±Ļ„ĪµĻƒĻ„Ī·Ī¼Ī­Ī½Ļ‰Ī½ πακέτων."
@@ -810,3 +813,19 @@ msgstr "Αποθήκη"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Επιλέξτε αγνοημένες Ī±Ī½Ī±Ī²Ī±ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚"
#~ msgid "Checking delta integrity"
#~ msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚ delta"
#~ msgid "Applying deltas"
#~ msgstr "Εφαρμογή deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Δημιουργία %s με %s"
#~ msgid "Generation succeeded"
#~ msgstr "Ī— Γημιουργία ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪµ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚!"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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-"
@@ -237,27 +237,6 @@ msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚"
msgid "Loading packages files"
msgstr "Ī¦ĻŒĻĻ„Ļ‰ĻƒĪ· αρχείων πακέτων"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚ delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Εφαρμογή deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Δημιουργία %s με %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Ī— Γημιουργία ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪµ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚!"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Ī— Γημιουργία απέτυχε."
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "Κλείσιμο"
msgid "Nothing to do"
msgstr "Δεν υπάρχει τίποτε να γίνει"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Οι ενέργειες ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪ±Ī½ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Παγκόσμιο"
@@ -784,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 "Ī”Ī¹Ī­Ī³ĻĪ±ĻˆĪµ μόνο τις ĪµĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ των Ī±Ļ€ĪµĪ³ĪŗĪ±Ļ„ĪµĻƒĻ„Ī·Ī¼Ī­Ī½Ļ‰Ī½ πακέτων."
@@ -799,3 +802,19 @@ msgstr "Αποθήκη"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Επέλεξε τις αγνοημένες Ī±Ī½Ī±Ī²Ī±ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚"
#~ msgid "Checking delta integrity"
#~ msgstr "ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ī±ĪŗĪµĻĪ±Ī¹ĻŒĻ„Ī·Ļ„Ī±Ļ‚ delta"
#~ msgid "Applying deltas"
#~ msgstr "Εφαρμογή deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Δημιουργία %s με %s"
#~ msgid "Generation succeeded"
#~ msgstr "Ī— Γημιουργία ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪµ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚!"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -239,27 +239,6 @@ msgstr "Checking integrity"
msgid "Loading packages files"
msgstr "Loading package files"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Checking delta integrity"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Applying deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generating %s with %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generation succeeded"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generation failed"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr "_Close"
msgid "Nothing to do"
msgstr "Nothing to do"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaction successfully finished"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -595,6 +590,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Worldwide"
@@ -786,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 ""
@@ -801,3 +804,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Choose Ignored Upgrades"
#~ msgid "Checking delta integrity"
#~ msgstr "Checking delta integrity"
#~ msgid "Applying deltas"
#~ msgstr "Applying deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generating %s with %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generation succeeded"
#~ msgid "Generation failed"
#~ msgstr "Generation failed"

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: 2017-11-11 23:01-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-"
@@ -240,27 +240,6 @@ msgstr "Kontrolanta integrecon"
msgid "Loading packages files"
msgstr "Ŝarĝanta pakaĵajn dosierojn"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr "_Ferm"
msgid "Nothing to do"
msgstr "Nenio por fari"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Finita sukcese transakcio"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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/"
@@ -248,27 +248,6 @@ msgstr "Verificando la integridad de los paquetes"
msgid "Loading packages files"
msgstr "Cargando archivos de paquetes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Verificando la integridad delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generando %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generación de paquete satisfactoria"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generación de paquete fallida"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -357,10 +336,26 @@ msgstr "_Cerrar"
msgid "Nothing to do"
msgstr "Nada que hacer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Operación finalizada con éxito"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -604,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"
@@ -798,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"
@@ -814,6 +817,22 @@ msgstr "Cache"
msgid "Choose Ignored Upgrades"
msgstr "Elegir actualizaciones ignoradas"
#~ msgid "Checking delta integrity"
#~ msgstr "Verificando la integridad delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generando %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generación de paquete satisfactoria"
#~ msgid "Generation failed"
#~ msgstr "Generación de paquete fallida"
#~ msgid "Background color"
#~ msgstr "Color de fondo"

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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "Comprobando integridad"
msgid "Loading packages files"
msgstr "Cargando archivos de paquetes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Revisando integridad delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generando %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generación exitosa"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generación fallida"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr "...Cerrar"
msgid "Nothing to do"
msgstr "Nada que hacer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "La transacción ha sido completada satisfactoriamente"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,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"
@@ -789,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"
@@ -805,6 +808,22 @@ msgstr "CachƩ"
msgid "Choose Ignored Upgrades"
msgstr "Elegir Actualizaciones Ignoradas"
#~ msgid "Checking delta integrity"
#~ msgstr "Revisando integridad delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generando %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generación exitosa"
#~ msgid "Generation failed"
#~ msgstr "Generación fallida"
#~ msgid "Background color"
#~ msgstr "Color de fondo"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,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 ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,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 ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr "Revisando la integridad"
msgid "Loading packages files"
msgstr "Cargando archivos de paquete"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Revisando la integridad delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generando %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "La generación tuvo éxito"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "La generación ha fallado"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_Cerrar"
msgid "Nothing to do"
msgstr "Nada que hacer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transacción completada correctamente"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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 ""
@@ -779,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 ""
@@ -794,3 +797,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Revisando la integridad delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generando %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "La generación tuvo éxito"
#~ msgid "Generation failed"
#~ msgstr "La generación ha fallado"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,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 ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -239,27 +239,6 @@ msgstr "Tervikluse kontroll"
msgid "Loading packages files"
msgstr "Faili pakettide laadimine"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Kontrollitakse deltapakettide terviklust"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltapaketide rakendamine"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Genereerib %s abil %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Genereerimine Ƶnnestus"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Genereerimine ebaƵnnestus"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr "_Sulge"
msgid "Nothing to do"
msgstr "Pole midagi teha"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Tehingud edukalt lƵpetatud"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -595,6 +590,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -783,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 ""
@@ -798,3 +801,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Vali Ignoreeritud Uuendused"
#~ msgid "Checking delta integrity"
#~ msgstr "Kontrollitakse deltapakettide terviklust"
#~ msgid "Applying deltas"
#~ msgstr "Deltapaketide rakendamine"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Genereerib %s abil %s"
#~ msgid "Generation succeeded"
#~ msgstr "Genereerimine Ƶnnestus"
#~ msgid "Generation failed"
#~ msgstr "Genereerimine ebaƵnnestus"

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: 2017-11-11 23:01-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/"
@@ -241,27 +241,6 @@ msgstr "Osotasuna egiaztatzen"
msgid "Loading packages files"
msgstr "Paketeen fitxategiak kargatzen"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Deltaren osotasuna egiaztatzen"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltak aplikatzen"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "%s sortzen %s erabilita"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Sormena ongi burutu da"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Sormenak huts egin du"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr "_Itxi"
msgid "Nothing to do"
msgstr "Ezer ez egiteko"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakzioa ongi burutu da"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -597,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"
@@ -788,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"
@@ -803,3 +806,19 @@ msgstr "Katxea"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Hautatu ezikusitako bertsio-berritzeak"
#~ msgid "Checking delta integrity"
#~ msgstr "Deltaren osotasuna egiaztatzen"
#~ msgid "Applying deltas"
#~ msgstr "Deltak aplikatzen"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "%s sortzen %s erabilita"
#~ msgid "Generation succeeded"
#~ msgstr "Sormena ongi burutu da"
#~ msgid "Generation failed"
#~ msgstr "Sormenak huts egin du"

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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "Ś†Ś©ā€ŒŚ©Ų±ŲÆŁ† ŪŒŚ©Ł¾Ų§Ų±Ś†ŚÆŪŒ"
msgid "Loading packages files"
msgstr "بارگذاری ŁŲ§ŪŒŁ„ā€ŒŁ‡Ų§ŪŒ ŲØŲ³ŲŖŁ‡ā€ŒŁ‡Ų§"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "ŲŖŁˆŁ„ŪŒŲÆ %s ŲØŲ§ %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr ""
msgid "Nothing to do"
msgstr "کاری برای انجام دادن وجود ندارد"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "تراکنؓ ŲØŲ§ Ł…ŁˆŁŁ‚ŪŒŲŖ به Ł¾Ų§ŪŒŲ§Ł† رسید"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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 +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 ""
@@ -794,3 +797,7 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "ŲŖŁˆŁ„ŪŒŲÆ %s ŲØŲ§ %s"

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: 2017-11-11 23:01-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-"
@@ -246,27 +246,6 @@ msgstr "Ś†Ś©ā€ŒŚ©Ų±ŲÆŁ† ŪŒŚ©Ł¾Ų§Ų±Ś†ŚÆŪŒ"
msgid "Loading packages files"
msgstr "بارگذاری ŁŲ§ŪŒŁ„ā€ŒŁ‡Ų§ŪŒ ŲØŲ³ŲŖŁ‡ā€ŒŁ‡Ų§"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Ś†Ś©ā€ŒŚ©Ų±ŲÆŁ† ŪŒŚ©Ł¾Ų§Ų±Ś†ŚÆŪŒ"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "اعمال جزئیات"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "ŲŖŁˆŁ„ŪŒŲÆ %s ŲØŲ§ %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "ŲŖŁˆŁ„ŪŒŲÆ ŲØŲ§ Ł…ŁˆŁŁ‚ŪŒŲŖ انجام Ų“ŲÆ!"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ŲŖŁˆŁ„ŪŒŲÆ ؓکست خورد."
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -354,10 +333,26 @@ msgstr "_بستن"
msgid "Nothing to do"
msgstr "کاری برای انجام دادن وجود ندارد"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "تراکنؓ ŲØŲ§ Ł…ŁˆŁŁ‚ŪŒŲŖ به Ł¾Ų§ŪŒŲ§Ł† رسید"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr "تعدادی Ų§Ų² نسخه Ł‡Ų§ŪŒ هر بسته Ų±Ų§ ŲÆŲ± حافظه Ł…
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "ŲÆŲ± Ų³Ų±Ų§Ų³Ų± جهان"
@@ -787,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 "فقط حذف نسخه Ł‡Ų§ŪŒ بسته Ł‡Ų§ŪŒ حذف ؓده"
@@ -802,3 +805,19 @@ msgstr "حافظه Ł…ŁˆŁ‚ŲŖ"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "انتخاب ŲØŲ±ŁˆŲ²Ų±Ų³Ų§Ł†ŪŒ Ł‡Ų§ŪŒ صرف نظرؓده"
#~ msgid "Checking delta integrity"
#~ msgstr "Ś†Ś©ā€ŒŚ©Ų±ŲÆŁ† ŪŒŚ©Ł¾Ų§Ų±Ś†ŚÆŪŒ"
#~ msgid "Applying deltas"
#~ msgstr "اعمال جزئیات"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "ŲŖŁˆŁ„ŪŒŲÆ %s ŲØŲ§ %s"
#~ msgid "Generation succeeded"
#~ msgstr "ŲŖŁˆŁ„ŪŒŲÆ ŲØŲ§ Ł…ŁˆŁŁ‚ŪŒŲŖ انجام Ų“ŲÆ!"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -245,27 +245,6 @@ msgstr "Tarkastetaan eheyttƤ"
msgid "Loading packages files"
msgstr "Ladataan paketin tiedostoja"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Tarkistetaan delta-eheyttƤ"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Asetetaan deltoja"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Luodaan %s deltalla %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Luominen onnistui"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Luominen epƤonnistui"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -354,10 +333,26 @@ msgstr "_Sulje"
msgid "Nothing to do"
msgstr "Ei mitƤƤn tehtƤvƤƤ"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Toimenpide suoritettu onnistuneesti"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,6 +596,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Maailmanlaajuinen"
@@ -789,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 ""
@@ -804,3 +807,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Tarkistetaan delta-eheyttƤ"
#~ msgid "Applying deltas"
#~ msgstr "Asetetaan deltoja"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Luodaan %s deltalla %s"
#~ msgid "Generation succeeded"
#~ msgstr "Luominen onnistui"
#~ msgid "Generation failed"
#~ msgstr "Luominen epƤonnistui"

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: 2017-11-11 23:01-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/"
@@ -238,27 +238,6 @@ msgstr "Kannar heilskap"
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -594,6 +589,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -780,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: 2017-11-11 23:01-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/"
@@ -249,27 +249,6 @@ msgstr "VƩrification de l'intƩgritƩ des paquets"
msgid "Loading packages files"
msgstr "Chargement des fichiers des paquets"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "VƩrification de l'intƩgritƩ des deltas"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Application des deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "GƩnƩration de %s avec %s "
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "GƩnƩration rƩussie"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "GƩnƩration ƩchouƩe"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -358,10 +337,26 @@ msgstr "_Fermer"
msgid "Nothing to do"
msgstr "Rien Ć  faire"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaction terminée avec succès"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -605,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"
@@ -798,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"
@@ -813,3 +816,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Choix des mises Ć  jour Ć  ignorer"
#~ msgid "Checking delta integrity"
#~ msgstr "VƩrification de l'intƩgritƩ des deltas"
#~ msgid "Applying deltas"
#~ msgstr "Application des deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "GƩnƩration de %s avec %s "
#~ msgid "Generation succeeded"
#~ msgstr "GƩnƩration rƩussie"
#~ msgid "Generation failed"
#~ msgstr "GƩnƩration ƩchouƩe"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr "Verificando a integridade dos paquetes"
msgid "Loading packages files"
msgstr "Carga de ficheiros de paquetes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Comprobando a integridade delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Xerando %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Xeración do paquete satisfactoria"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Xeración do paquete fallida"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_Pechar"
msgid "Nothing to do"
msgstr "Nada que facer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Operación concluída con éxito"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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"
@@ -786,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"
@@ -801,3 +804,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Escolla actualizacións ignorados"
#~ msgid "Checking delta integrity"
#~ msgstr "Comprobando a integridade delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Xerando %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "Xeración do paquete satisfactoria"
#~ msgid "Generation failed"
#~ msgstr "Xeración do paquete fallida"

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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "×›×¢×Ŗ בוחן ×©×œ×ž×•×Ŗ"
msgid "Loading packages files"
msgstr "×›×¢×Ŗ טוען קבצי ×—×‘×™×œ×•×Ŗ"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "×›×¢×Ŗ בוחן ×©×œ×ž×•×Ŗ ×“×œ×Ŗ×"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "×›×¢×Ŗ מחיל ×“×œ×Ŗ×"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "×›×¢×Ŗ מפיק %s בעזרת %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "הפקה צלחה"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "הפקה נכשלה"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr "_הגור"
msgid "Nothing to do"
msgstr "אין מה ×œ×¢×©×•×Ŗ"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "×˜×Ø× ×–×§×¦×™×” ×”×”×Ŗ×™×™×ž×” בהצלחה"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "כלל עולמי"
@@ -785,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 "ההר רק את הגרהאות של ×—×‘×™×œ×•×Ŗ שהוהרו"
@@ -800,3 +803,19 @@ msgstr "מטמון"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "בחר ×©×“×Ø×•×’×™× ×ž× ×•×›×Ø×™×"
#~ msgid "Checking delta integrity"
#~ msgstr "×›×¢×Ŗ בוחן ×©×œ×ž×•×Ŗ ×“×œ×Ŗ×"
#~ msgid "Applying deltas"
#~ msgstr "×›×¢×Ŗ מחיל ×“×œ×Ŗ×"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "×›×¢×Ŗ מפיק %s בעזרת %s"
#~ msgid "Generation succeeded"
#~ msgstr "הפקה צלחה"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "अखंऔता ą¤•ą„€ जाँच"
msgid "Loading packages files"
msgstr "ą¤²ą„‹ą¤” ą¤¹ą„‹ रहा ą¤¹ą„ˆ ą¤øą¤‚ą¤•ą„ą¤² ą¤«ą¤¾ą¤‡ą¤²ą„‡ą¤‚"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ą¤”ą„‡ą¤²ą„ą¤Ÿą¤¾ अखंऔता ą¤•ą„€ जाँच"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ą¤”ą„‡ą¤²ą„ą¤Ÿą¤¾ ą¤²ą¤¾ą¤—ą„‚ करना"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ą¤œą¤Øą¤°ą„‡ą¤¶ą¤Ø विफल ą¤¹ą„ą¤†"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr "_बंद"
msgid "Nothing to do"
msgstr "ऐसा ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„ą¤› ą¤­ą„€ ą¤Øą¤¹ą„€ą¤‚"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "ą¤²ą„‡ą¤Ø - ą¤¦ą„‡ą¤Ø ą¤øą¤«ą¤²ą¤¤ą¤¾ą¤Ŗą„‚ą¤°ą„ą¤µą¤• ą¤øą¤®ą¤¾ą¤Ŗą„ą¤¤"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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 ""
@@ -797,3 +800,12 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "ą¤‰ą¤Ŗą„‡ą¤•ą„ą¤·ą¤æą¤¤ ą¤‰ą¤Øą„ą¤Øą¤Æą¤Ø ą¤šą„ą¤Øą„‡ą¤‚"
#~ msgid "Checking delta integrity"
#~ msgstr "ą¤”ą„‡ą¤²ą„ą¤Ÿą¤¾ अखंऔता ą¤•ą„€ जाँच"
#~ msgid "Applying deltas"
#~ msgstr "ą¤”ą„‡ą¤²ą„ą¤Ÿą¤¾ ą¤²ą¤¾ą¤—ą„‚ करना"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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-"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -242,27 +242,6 @@ msgstr "Provjeravam integritet"
msgid "Loading packages files"
msgstr "Učitavam datoteke paketa"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Provjeravam delta integritet"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Potvrđujem delte"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Stvaram %s sa %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Stvaranje uspjeŔno zavrŔeno"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Stvaranje nije uspjelo"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -352,10 +331,26 @@ msgstr "_Zatvori"
msgid "Nothing to do"
msgstr "NiŔta za učiniti"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakcija uspjeŔno zavrŔena"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,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"
@@ -792,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"
@@ -807,3 +810,19 @@ msgstr "Predmemorija"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Odaberi ignorirane nadogradnje"
#~ msgid "Checking delta integrity"
#~ msgstr "Provjeravam delta integritet"
#~ msgid "Applying deltas"
#~ msgstr "Potvrđujem delte"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Stvaram %s sa %s"
#~ msgid "Generation succeeded"
#~ msgstr "Stvaranje uspjeŔno zavrŔeno"
#~ msgid "Generation failed"
#~ msgstr "Stvaranje nije uspjelo"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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-"
@@ -241,27 +241,6 @@ msgstr "EgysĆ©gessĆ©g ellenőrzĆ©se"
msgid "Loading packages files"
msgstr "CsomagfƔjlok betƶltƩse"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "EgysĆ©gessĆ©g ellenőrzĆ©se"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "VƔltozƔsok alkalmazƔsa"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "LƩtrehoz %s ezzel %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Sikeresen LƩtrehozva"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Nem sikerült létrehozni"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr "BezƔr"
msgid "Nothing to do"
msgstr "Semmi teendő"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "A tranzakció sikeresen végrehajtódott"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -597,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"
@@ -788,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"
@@ -803,3 +806,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "A figyelmen kívül hagyott frissítések kivÔlasztÔsa"
#~ msgid "Checking delta integrity"
#~ msgstr "EgysĆ©gessĆ©g ellenőrzĆ©se"
#~ msgid "Applying deltas"
#~ msgstr "VƔltozƔsok alkalmazƔsa"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "LƩtrehoz %s ezzel %s"
#~ msgid "Generation succeeded"
#~ msgstr "Sikeresen LƩtrehozva"
#~ msgid "Generation failed"
#~ msgstr "Nem sikerült létrehozni"

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: 2017-11-11 23:01-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-"
@@ -252,27 +252,6 @@ msgstr "Memeriksa integritas"
msgid "Loading packages files"
msgstr "Pemuatan berkas paket"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Memeriksa integritas delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Menerapkan deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Menghasilkan %s dengan %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Menghasilkan berhasil"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Menghasilkan gagal"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -360,10 +339,26 @@ msgstr "_Tutup"
msgid "Nothing to do"
msgstr "Tidak ada yang harus dilakukan"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaksi sukses terselesaikan"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -605,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"
@@ -796,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 ""
@@ -811,3 +814,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Memilih Abaian Pembaruan"
#~ msgid "Checking delta integrity"
#~ msgstr "Memeriksa integritas delta"
#~ msgid "Applying deltas"
#~ msgstr "Menerapkan deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Menghasilkan %s dengan %s"
#~ msgid "Generation succeeded"
#~ msgstr "Menghasilkan berhasil"
#~ msgid "Generation failed"
#~ msgstr "Menghasilkan gagal"

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: 2017-11-11 23:01-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-"
@@ -239,27 +239,6 @@ msgstr "Athuga gƦưi"
msgid "Loading packages files"
msgstr "Hleư inn pakkaskrƔm"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Athuga gƦưi mismunaskrƔa"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Virkja mismunaskrƔr"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Útbý %s með %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Tókst að útbúa"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Mistókst að útbúa"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr "_Loka"
msgid "Nothing to do"
msgstr "Ekkert sem hƦgt er aư gera"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Aðgerð lokið - tókst"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -595,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"
@@ -786,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"
@@ -801,3 +804,19 @@ msgstr "Skyndiminni"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Velja hunsaưar uppfƦrslur"
#~ msgid "Checking delta integrity"
#~ msgstr "Athuga gƦưi mismunaskrƔa"
#~ msgid "Applying deltas"
#~ msgstr "Virkja mismunaskrƔr"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Útbý %s með %s"
#~ msgid "Generation succeeded"
#~ msgstr "Tókst að útbúa"
#~ msgid "Generation failed"
#~ msgstr "Mistókst að útbúa"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -250,27 +250,6 @@ msgstr "Verifica dell'integritĆ  dei pacchetti"
msgid "Loading packages files"
msgstr "Caricamento dei file dei pacchetti"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Controllo dell'integritĆ  dei delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Applicazione dei delta"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generazione %s con %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generazione riuscita"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generazione fallita"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -359,10 +338,26 @@ msgstr "_Chiudi"
msgid "Nothing to do"
msgstr "Niente da fare"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transazione completata con successo"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr "Impossibile bloccare il database!"
@@ -606,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"
@@ -797,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"
@@ -812,3 +815,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Scegli aggiornamenti da ignorare"
#~ msgid "Checking delta integrity"
#~ msgstr "Controllo dell'integritĆ  dei delta"
#~ msgid "Applying deltas"
#~ msgstr "Applicazione dei delta"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generazione %s con %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generazione riuscita"
#~ msgid "Generation failed"
#~ msgstr "Generazione fallita"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "ćƒ•ć‚”ć‚¤ćƒ«ć®ę•“åˆę€§ć‚’ē¢ŗčŖäø­"
msgid "Loading packages files"
msgstr "ćƒ‘ćƒƒć‚±ćƒ¼ć‚øćƒ•ć‚”ć‚¤ćƒ«ć®ćƒ­ćƒ¼ćƒ‰äø­"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "å·®åˆ†ć®ē¢ŗčŖäø­"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "å·®åˆ†ć®é©ē”Øäø­"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "%s恧%sć‚’ē”Ÿęˆ"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "ćƒ‘ćƒƒć‚±ćƒ¼ć‚øć®ē”ŸęˆćŒęˆåŠŸć—ć¾ć—ćŸ"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ćƒ‘ćƒƒć‚±ćƒ¼ć‚øć®ē”ŸęˆćŒå¤±ę•—ć—ć¾ć—ćŸ"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr "é–‰ć˜ć‚‹ļ¼ˆ_C)"
msgid "Nothing to do"
msgstr "ä½•ć‚‚ć™ć‚‹ć“ćØćŒć‚ć‚Šć¾ć›ć‚“"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "å‡¦ē†ćŒę­£åøøć«ēµ‚äŗ†ć—ć¾ć—ćŸć€‚"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,6 +588,10 @@ msgstr "å„ćƒ‘ćƒƒć‚±ćƒ¼ć‚øć®ćƒćƒ¼ć‚øćƒ§ćƒ³ē•Ŗå·ć‚’ć‚­ćƒ£ćƒƒć‚·ćƒ„ć«äæå­˜ć™
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "ćƒÆćƒ¼ćƒ«ćƒ‰ćƒÆć‚¤ćƒ‰"
@@ -784,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 "ć‚¢ćƒ³ć‚¤ćƒ³ć‚¹ćƒˆćƒ¼ćƒ«ć—ćŸćƒćƒ¼ć‚øćƒ§ćƒ³ć®ćæå‰Šé™¤"
@@ -799,3 +802,19 @@ msgstr "ć‚­ćƒ£ćƒƒć‚·ćƒ„"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "ē„”č¦–ć™ć‚‹ć‚¢ćƒƒćƒ—ć‚°ćƒ¬ćƒ¼ćƒ‰ć‚’éøęŠž"
#~ msgid "Checking delta integrity"
#~ msgstr "å·®åˆ†ć®ē¢ŗčŖäø­"
#~ msgid "Applying deltas"
#~ msgstr "å·®åˆ†ć®é©ē”Øäø­"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "%s恧%sć‚’ē”Ÿęˆ"
#~ msgid "Generation succeeded"
#~ msgstr "ćƒ‘ćƒƒć‚±ćƒ¼ć‚øć®ē”ŸęˆćŒęˆåŠŸć—ć¾ć—ćŸ"
#~ msgid "Generation failed"
#~ msgstr "ćƒ‘ćƒƒć‚±ćƒ¼ć‚øć®ē”ŸęˆćŒå¤±ę•—ć—ć¾ć—ćŸ"

403
po/ka.po
View File

@@ -6,357 +6,357 @@
# Translators:
# arabuli <arabulibeqa@yahoo.com>, 2015
# arabuli <arabulibeqa@yahoo.com>, 2015
# giorgi shashviashvili <giorgishashviashvili@outlook.com>, 2019
# zura davitashvili <zdavitashvili0@gmail.com>, 2019-2020
msgid ""
msgstr ""
"Project-Id-Version: manjaro-pamac\n"
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
"POT-Creation-Date: 2017-11-11 23:01-0300\n"
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
"Last-Translator: philm <philm@manjaro.org>\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/"
"language/ka/)\n"
"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.2.4\n"
#: ../src/pamac-user-daemon/user_daemon.vala
msgid "Unknown"
msgstr ""
msgstr "įƒ£įƒŖįƒœįƒįƒ‘įƒ˜"
#: ../src/pamac-user-daemon/user_daemon.vala
#: ../src/pamac-manager/manager_window.vala
msgid "Explicitly installed"
msgstr ""
msgstr "įƒ’įƒįƒœįƒ–įƒ įƒįƒ® įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ˜"
#: ../src/pamac-user-daemon/user_daemon.vala
#: ../src/pamac-manager/manager_window.vala
msgid "Installed as a dependency for another package"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ˜įƒ, įƒ įƒįƒ’įƒįƒ įƒŖ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ įƒ”įƒ®įƒ•įƒ įƒžįƒįƒ™įƒ”įƒ¢įƒ˜įƒ”įƒ—įƒ•įƒ˜įƒ”"
#: ../src/pamac-user-daemon/user_daemon.vala
msgid "Yes"
msgstr ""
msgstr "įƒ“įƒ˜įƒįƒ®"
#: ../src/pamac-user-daemon/user_daemon.vala
msgid "No"
msgstr ""
msgstr "არა"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to initialize alpm library"
msgstr ""
msgstr "alpm įƒ‘įƒ˜įƒ‘įƒšįƒ˜įƒįƒ—įƒ”įƒ™įƒ˜įƒ” įƒ¬įƒįƒ›įƒįƒ¬įƒ§įƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala ../src/transaction.vala
msgid "Authentication failed"
msgstr ""
msgstr "įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to synchronize any databases"
msgstr ""
msgstr "įƒ•įƒ”įƒ įƒŖįƒ”įƒ įƒ—įƒ˜ įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ˜įƒ” įƒ”įƒ˜įƒœįƒ„įƒ įƒįƒœįƒ˜įƒ–įƒįƒŖįƒ˜įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to init transaction"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ˜įƒ” įƒ¬įƒįƒ›įƒįƒ¬įƒ§įƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to prepare transaction"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ˜įƒ” įƒ›įƒįƒ›įƒ–įƒįƒ“įƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "target not found: %s"
msgstr ""
msgstr "įƒ›įƒ˜įƒ–įƒįƒœįƒ˜ įƒ•įƒ”įƒ  įƒ›įƒįƒ˜įƒ«įƒ”įƒ‘įƒœįƒ: %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "package %s does not have a valid architecture"
msgstr ""
msgstr "įƒžįƒįƒ™įƒ”įƒ¢ %s-ე არ įƒįƒ„įƒ•įƒ” įƒ“įƒįƒØįƒ•įƒ”įƒ‘įƒ£įƒšįƒ˜ įƒįƒ įƒ„įƒ˜įƒ¢įƒ”įƒ„įƒ¢įƒ£įƒ įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "unable to satisfy dependency '%s' required by %s"
msgstr ""
msgstr "įƒØįƒ”įƒ£įƒ«įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜įƒ %s-(ი)ე įƒ›įƒ˜įƒ”įƒ  įƒ›įƒįƒ—įƒ®įƒįƒ•įƒœįƒ˜įƒšįƒ˜ '%s' įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒ™įƒ›įƒįƒ§įƒįƒ¤įƒ˜įƒšįƒ”įƒ‘įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "installing %s (%s) breaks dependency '%s' required by %s"
msgstr ""
"%s (%s)-(ი)ე įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ įƒįƒ–įƒ˜įƒįƒœįƒ”įƒ‘įƒ” įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒįƒ” '%s', įƒ įƒįƒ›įƒ”įƒšįƒ”įƒįƒŖ įƒ›įƒįƒ˜įƒ—įƒ®įƒįƒ•įƒ” %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "removing %s breaks dependency '%s' required by %s"
msgstr ""
msgstr "%s-(ი)ე įƒ›įƒįƒŖįƒ˜įƒšįƒ”įƒ‘įƒ įƒįƒ–įƒ˜įƒįƒœįƒ”įƒ‘įƒ” įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒįƒ” '%s', įƒ įƒįƒ›įƒ”įƒšįƒ”įƒįƒŖ įƒ›įƒįƒ˜įƒ—įƒ®įƒįƒ•įƒ” %s"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s and %s are in conflict"
msgstr ""
msgstr "%s įƒ“įƒ %s არიან įƒ™įƒįƒœįƒ¤įƒšįƒ˜įƒ„įƒ¢įƒØįƒ˜"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s needs to be removed but it is a locked package"
msgstr ""
msgstr "%s įƒ£įƒœįƒ“įƒ įƒ›įƒįƒŖįƒ˜įƒšįƒ“įƒ”įƒ”, įƒ›įƒįƒ’įƒ įƒįƒ› იე įƒ©įƒįƒ™įƒ”įƒ¢įƒ˜įƒšįƒ˜ įƒžįƒįƒ™įƒ”įƒ¢įƒ˜įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
msgid "Failed to commit transaction"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ˜įƒ” įƒ’įƒįƒœįƒ®įƒįƒ įƒŖįƒ˜įƒ”įƒšįƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s exists in both %s and %s"
msgstr ""
msgstr "%s įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ” %s-შიც įƒ“įƒ %s-შიც"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s: %s already exists in filesystem"
msgstr ""
msgstr "%s: %s įƒ£įƒ™įƒ•įƒ” įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ” ფაილურ įƒ”įƒ˜įƒ”įƒ¢įƒ”įƒ›įƒįƒØįƒ˜"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s is invalid or corrupted"
msgstr ""
msgstr "%s įƒįƒ įƒįƒ”įƒ¬įƒįƒ įƒ˜įƒ ან įƒ“įƒįƒ–įƒ˜įƒįƒœįƒ”įƒ‘įƒ£įƒšįƒ˜įƒ"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr ""
msgstr "įƒ įƒįƒ’įƒįƒ įƒŖ ჩანე %s įƒØįƒ”įƒ›įƒŖįƒ˜įƒ įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ: %jd/%jd įƒ‘įƒįƒ˜įƒ¢įƒ˜\n"
#: ../src/pamac-system-daemon/system_daemon.vala
#, c-format
msgid "failed retrieving file '%s' from %s : %s\n"
msgstr ""
msgstr "'%s' ფაილიე įƒ›įƒ˜įƒ¦įƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ %s : %s-(ი)įƒ“įƒįƒœ\n"
#: ../src/transaction.vala
msgid "Copy"
msgstr ""
msgstr "აელი"
#: ../src/transaction.vala
msgid "Refreshing mirrors list"
msgstr ""
msgstr "įƒįƒ®įƒšįƒ“įƒ”įƒ‘įƒ įƒ”įƒįƒ įƒ™įƒ”įƒ”įƒ‘įƒ˜įƒ” ეია"
#: ../src/transaction.vala
msgid "Synchronizing package databases"
msgstr "įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ˜įƒ” įƒ”įƒ˜įƒœįƒ„įƒ įƒįƒœįƒ˜įƒ–įƒįƒŖįƒ˜įƒ"
msgstr "įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ”įƒ‘įƒ˜ įƒ”įƒ˜įƒœįƒ„įƒ įƒįƒœįƒ˜įƒ–įƒ˜įƒ įƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "Starting full system upgrade"
msgstr ""
msgstr "įƒ˜įƒ¬įƒ§įƒ”įƒ‘įƒ įƒ”įƒ˜įƒ”įƒ¢įƒ”įƒ›įƒ˜įƒ” ერული įƒ’įƒįƒœįƒįƒ®įƒįƒšįƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "Preparing"
msgstr ""
msgstr "įƒ›įƒ–įƒįƒ“įƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
#, c-format
msgid "Choose a provider for %s"
msgstr ""
msgstr "%s-(ი)įƒ”įƒ—įƒ•įƒ˜įƒ” įƒ›įƒįƒ›įƒ¬įƒįƒ“įƒ”įƒ‘įƒšįƒ˜įƒ” įƒįƒ įƒ©įƒ”įƒ•įƒ"
#: ../src/transaction.vala
msgid "To remove"
msgstr ""
msgstr "įƒ›įƒįƒŖįƒ˜įƒšįƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "To downgrade"
msgstr ""
msgstr "įƒ“įƒįƒ„įƒ•įƒ”įƒ˜įƒ—įƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "To build"
msgstr ""
msgstr "įƒįƒ˜įƒ’įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "To install"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "To reinstall"
msgstr ""
msgstr "įƒ®įƒ”įƒšįƒįƒ®įƒšįƒ įƒ“įƒįƒ§įƒ”įƒœįƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
msgid "To upgrade"
msgstr ""
msgstr "įƒ’įƒįƒœįƒįƒ®įƒšįƒ“įƒ”įƒ‘įƒ"
#: ../src/transaction.vala ../src/pamac-manager/manager_window.vala
msgid "Total download size"
msgstr ""
msgstr "įƒ©įƒįƒ›įƒįƒ¢įƒ•įƒ˜įƒ įƒ—įƒ•įƒ˜įƒ” ერული įƒ–įƒįƒ›įƒ"
#: ../src/transaction.vala
#, c-format
msgid "Building %s"
msgstr ""
msgstr "įƒ˜įƒ’įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
msgid "Transaction cancelled"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ’įƒįƒ£įƒ„įƒ›įƒ“įƒ"
#: ../src/transaction.vala
msgid "Checking dependencies"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
msgid "Checking file conflicts"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ ფაილიე įƒ™įƒįƒœįƒ¤įƒšįƒ˜įƒ„įƒ¢įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
msgid "Resolving dependencies"
msgstr ""
msgstr "įƒ’įƒ•įƒįƒ įƒ“įƒ”įƒ‘įƒ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
msgid "Checking inter-conflicts"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ įƒØįƒ˜įƒ“įƒ įƒ™įƒįƒœįƒ¤įƒšįƒ˜įƒ„įƒ¢įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "Installing %s"
msgstr ""
msgstr "įƒ§įƒ”įƒœįƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
#, c-format
msgid "Upgrading %s"
msgstr ""
msgstr "įƒįƒ®įƒšįƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
#, c-format
msgid "Reinstalling %s"
msgstr ""
msgstr "įƒ®įƒ”įƒšįƒįƒ®įƒšįƒ įƒ§įƒ”įƒœįƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
#, c-format
msgid "Downgrading %s"
msgstr ""
msgstr "įƒ„įƒ•įƒ”įƒ˜įƒ—įƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
#, c-format
msgid "Removing %s"
msgstr ""
msgstr "įƒ”įƒŖįƒ˜įƒšįƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
msgid "Checking integrity"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ įƒ›įƒ—įƒšįƒ˜įƒįƒœįƒįƒ‘įƒ"
#: ../src/transaction.vala
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
msgstr "įƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ”įƒ‘įƒ įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ¤įƒįƒ˜įƒšįƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
msgstr ""
msgstr "įƒ™įƒįƒœįƒ¤įƒ˜įƒ’įƒ£įƒ įƒ˜įƒ įƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
msgid "Downloading"
msgstr ""
msgstr "įƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ”įƒ‘įƒ"
#: ../src/transaction.vala
#, c-format
msgid "Downloading %s"
msgstr ""
msgstr "įƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
msgid "Checking available disk space"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ įƒ“įƒ˜įƒ”įƒ™įƒ–įƒ” įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜ įƒ”įƒ˜įƒ•įƒ įƒŖįƒ”"
#: ../src/transaction.vala
#, c-format
msgid "%s optionally requires %s"
msgstr ""
msgstr "%s įƒ›įƒ”įƒįƒ įƒ”įƒ®įƒįƒ įƒ˜įƒ”įƒ®įƒįƒ•įƒœįƒįƒ“ įƒ›įƒįƒ˜įƒ—įƒ®įƒįƒ•įƒ” %s-ე"
#: ../src/transaction.vala
#, c-format
msgid "Database file for %s does not exist"
msgstr ""
msgstr "%s-(ი)įƒ”įƒ—įƒ•įƒ˜įƒ” įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ˜įƒ” ფაილი არ įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”"
#: ../src/transaction.vala
msgid "Checking keyring"
msgstr ""
msgstr "įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ‘įƒ įƒ’įƒįƒ”įƒįƒ¦įƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒįƒ”įƒ®įƒ›įƒ"
#: ../src/transaction.vala
msgid "Downloading required keys"
msgstr ""
msgstr "įƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ”įƒ‘įƒ įƒ”įƒįƒ­įƒ˜įƒ įƒ įƒ’įƒįƒ”įƒįƒ¦įƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "%s installed as %s.pacnew"
msgstr ""
msgstr "%s įƒ“įƒįƒ§įƒ”įƒœįƒ“įƒ įƒ įƒįƒ’įƒįƒ įƒŖ %s.pacnew"
#: ../src/transaction.vala
#, c-format
msgid "%s installed as %s.pacsave"
msgstr ""
msgstr "%s įƒ“įƒįƒ§įƒ”įƒœįƒ“įƒ įƒ įƒįƒ’įƒįƒ įƒŖ %s.pacsave"
#: ../src/transaction.vala
msgid "Running pre-transaction hooks"
msgstr ""
msgstr "įƒ”įƒØįƒ•įƒ”įƒ‘įƒ įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒįƒ›įƒ“įƒ”įƒšįƒ˜ įƒ™įƒįƒ•įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
msgid "Running post-transaction hooks"
msgstr ""
msgstr "įƒ”įƒØįƒ•įƒ”įƒ‘įƒ įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒ›įƒ“įƒ’įƒįƒ›įƒ˜ įƒ™įƒįƒ•įƒ”įƒ‘įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "About %u seconds remaining"
msgstr ""
msgstr "įƒ“įƒįƒ įƒ©įƒ”įƒœįƒ˜įƒšįƒ˜įƒ įƒ“įƒįƒįƒ®įƒšįƒįƒ”įƒ‘įƒ˜įƒ— %u įƒ¬įƒįƒ›įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "About %lu minute remaining"
msgid_plural "About %lu minutes remaining"
msgstr[0] ""
msgstr[0] "įƒ“įƒįƒ įƒ©įƒ”įƒœįƒ˜įƒšįƒ˜įƒ įƒ“įƒįƒįƒ®įƒšįƒįƒ”įƒ‘įƒ˜įƒ— %lu įƒ¬įƒ£įƒ—įƒ˜"
msgstr[1] "įƒ“įƒįƒ įƒ©įƒ”įƒœįƒ˜įƒšįƒ˜įƒ įƒ“įƒįƒįƒ®įƒšįƒįƒ”įƒ‘įƒ˜įƒ— %lu įƒ¬įƒ£įƒ—įƒ˜"
#: ../src/transaction.vala
#, c-format
msgid "Refreshing %s"
msgstr ""
msgstr "įƒįƒ®įƒšįƒ“įƒ”įƒ‘įƒ %s"
#: ../src/transaction.vala
msgid "Error"
msgstr ""
msgstr "įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ"
#: ../src/transaction.vala
msgid "Warning"
msgstr ""
msgstr "įƒ’įƒįƒ¤įƒ įƒ—įƒ®įƒ˜įƒšįƒ”įƒ‘įƒ"
#: ../src/transaction.vala ../data/interface/progress_dialog.ui
#: ../data/interface/history_dialog.ui
msgid "_Close"
msgstr ""
msgstr "įƒ“įƒįƒ®įƒ£įƒ įƒ•įƒ"
#: ../src/transaction.vala
msgid "Nothing to do"
msgstr ""
msgstr "įƒ’įƒįƒ”įƒįƒ™įƒ”įƒ—įƒ”įƒ‘įƒ”įƒšįƒ˜ įƒįƒ įƒįƒ¤įƒ”įƒ įƒ˜įƒ"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ¬įƒįƒ įƒ›įƒįƒ¢įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ"
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ¬įƒįƒ įƒ›įƒįƒ¢įƒ”įƒ‘įƒ˜įƒ— įƒ“įƒįƒ”įƒ įƒ£įƒšįƒ“įƒ"
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ¬įƒįƒ įƒ›įƒįƒ¢įƒ”įƒ‘įƒ˜įƒ— įƒ“įƒįƒ”įƒ įƒ£įƒšįƒ“įƒ"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ"
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ įƒ“įƒ įƒįƒ įƒŖįƒ”įƒ įƒ—įƒ˜ įƒžįƒįƒ™įƒ”įƒ¢įƒ˜ არ įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ£įƒšįƒ/įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ"
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
msgstr "įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ˜įƒ” įƒ©įƒįƒ™įƒ”įƒ¢įƒ•įƒ įƒØįƒ”įƒ£įƒ«įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜įƒ!"
#: ../src/pamac-tray/tray.vala ../src/pamac-manager/manager_window.vala
msgid "Your system is up-to-date"
msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒ”įƒ˜įƒ”įƒ¢įƒ”įƒ›įƒ įƒ£įƒįƒ®įƒšįƒ”įƒ”įƒ˜įƒ"
msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒ”įƒ˜įƒ”įƒ¢įƒ”įƒ›įƒ įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ£įƒšįƒ˜įƒ"
#: ../src/pamac-tray/tray.vala ../src/pamac-manager/manager_window.vala
msgid "Package Manager"
@@ -364,35 +364,36 @@ msgstr "įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒ›įƒįƒ įƒ—įƒ•įƒ”įƒšįƒ˜"
#: ../src/pamac-tray/tray.vala
msgid "_Quit"
msgstr "_įƒ’įƒįƒ›įƒįƒ”įƒ•įƒšįƒ"
msgstr "įƒ’įƒįƒ”įƒ•įƒšįƒ"
#: ../src/pamac-tray/tray.vala
#, c-format
msgid "%u available update"
msgid_plural "%u available updates"
msgstr[0] "%u įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜ įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
msgstr[0] "įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜įƒ %u įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
msgstr[1] "įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜įƒ %u įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
#: ../src/pamac-tray/tray.vala ../src/pamac-manager/manager_window.vala
#: ../data/interface/progress_dialog.ui ../data/interface/manager_window.ui
msgid "Details"
msgstr ""
msgstr "įƒ“įƒ”įƒ¢įƒįƒšįƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager.vala
msgid "Pamac is already running"
msgstr ""
msgstr "Pamac įƒ£įƒ™įƒ•įƒ” įƒ’įƒįƒØįƒ•įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ"
#: ../src/pamac-manager/manager.vala
msgid "Refresh Databases"
msgstr ""
msgstr "įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager.vala ../data/interface/manager_window.ui
msgid "View History"
msgstr ""
msgstr "įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ˜įƒ” įƒœįƒįƒ®įƒ•įƒ"
#: ../src/pamac-manager/manager.vala ../src/pamac-manager/manager_window.vala
#: ../data/interface/manager_window.ui
msgid "Install Local Packages"
msgstr ""
msgstr "įƒįƒ“įƒ’įƒ˜įƒšįƒįƒ‘įƒ įƒ˜įƒ•įƒ˜ įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager.vala ../data/interface/manager_window.ui
msgid "Preferences"
@@ -400,307 +401,314 @@ msgstr "įƒžįƒįƒ įƒįƒ›įƒ”įƒ¢įƒ įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager.vala ../data/interface/manager_window.ui
msgid "About"
msgstr ""
msgstr "įƒØįƒ”įƒ”įƒįƒ®įƒ”įƒ‘"
#: ../src/pamac-manager/manager.vala
msgid "Quit"
msgstr ""
msgstr "įƒ’įƒįƒ”įƒ•įƒšįƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Deselect"
msgstr ""
msgstr "įƒ›įƒįƒœįƒ˜įƒØįƒ•įƒœįƒ˜įƒ” įƒ’įƒįƒ£įƒ„įƒ›įƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Upgrade"
msgstr ""
msgstr "įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Install"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Remove"
msgstr ""
msgstr "įƒ›įƒįƒŖįƒ˜įƒšįƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Waiting for another package manager to quit"
msgstr ""
msgstr "įƒ•įƒ£įƒŖįƒ“įƒ˜įƒ— įƒ”įƒ®įƒ•įƒ įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒ›įƒįƒ įƒ—įƒ•įƒ”įƒšįƒ˜įƒ” įƒ›įƒ£įƒØįƒįƒįƒ‘įƒ˜įƒ” įƒ“įƒįƒ”įƒ įƒ£įƒšįƒ”įƒ‘įƒįƒ”"
#: ../src/pamac-manager/manager_window.vala
#, c-format
msgid "%u pending operation"
msgid_plural "%u pending operations"
msgstr[0] ""
msgstr[0] "įƒ›įƒįƒšįƒįƒ“įƒ˜įƒœįƒØįƒ˜įƒ %u įƒįƒžįƒ”įƒ įƒįƒŖįƒ˜įƒ"
msgstr[1] "įƒ›įƒįƒšįƒįƒ“įƒ˜įƒœįƒØįƒ˜įƒ %u įƒįƒžįƒ”įƒ įƒįƒŖįƒ˜įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Installed"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Orphans"
msgstr ""
msgstr "įƒįƒ‘įƒšįƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Foreign"
msgstr ""
msgstr "įƒ£įƒŖįƒ®įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Pending"
msgstr ""
msgstr "įƒ›įƒįƒšįƒįƒ“įƒ˜įƒœįƒØįƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Install Reason"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ›įƒ˜įƒ–įƒ”įƒ–įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Mark as explicitly installed"
msgstr ""
msgstr "įƒ’įƒįƒœįƒ–įƒ įƒįƒ® įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒįƒ“ įƒ›įƒįƒœįƒ˜įƒØįƒ•įƒœįƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Licenses"
msgstr ""
msgstr "įƒšįƒ˜įƒŖįƒ”įƒœįƒ–įƒ˜įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Repository"
msgstr ""
msgstr "įƒ”įƒįƒŖįƒįƒ•įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Download size"
msgstr ""
msgstr "įƒ©įƒįƒ›įƒįƒ¢įƒ•įƒ˜įƒ įƒ—įƒ•įƒ˜įƒ” įƒ–įƒįƒ›įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Installed size"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ˜įƒ” įƒ–įƒįƒ›įƒ"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Groups"
msgstr ""
msgstr "įƒÆįƒ’įƒ£įƒ¤įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Packager"
msgstr ""
msgstr "įƒØįƒ”įƒ›įƒ¤įƒ£įƒ—įƒįƒ•įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Build Date"
msgstr ""
msgstr "įƒįƒ’įƒ”įƒ‘įƒ˜įƒ” įƒ—įƒįƒ įƒ˜įƒ¦įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Install Date"
msgstr ""
msgstr "įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ—įƒįƒ įƒ˜įƒ¦įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Signatures"
msgstr ""
msgstr "įƒ®įƒ”įƒšįƒ›įƒįƒ¬įƒ”įƒ įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Backup files"
msgstr ""
msgstr "įƒ”įƒįƒ įƒ”įƒ–įƒ”įƒ įƒ•įƒ įƒ¤įƒįƒ˜įƒšįƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Depends On"
msgstr ""
msgstr "įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Optional Dependencies"
msgstr ""
msgstr "įƒ›įƒ”įƒįƒ įƒ”įƒ®įƒįƒ įƒ˜įƒ”įƒ®įƒįƒ•įƒįƒœįƒ˜ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Required By"
msgstr ""
msgstr "įƒ›įƒįƒ˜įƒ—įƒ®įƒįƒ•įƒ įƒØįƒ”įƒ›įƒ“įƒ”įƒ’įƒ›įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Optional For"
msgstr ""
msgstr "įƒ›įƒ”įƒįƒ įƒ”įƒ®įƒįƒ įƒ˜įƒ”įƒ®įƒįƒ•įƒįƒœįƒ˜įƒ įƒØįƒ”įƒ›įƒ“įƒ”įƒ’įƒ˜įƒ”įƒ—įƒ•įƒ˜įƒ”"
#: ../src/pamac-manager/manager_window.vala
msgid "Provides"
msgstr ""
msgstr "įƒ’įƒ•įƒ—įƒįƒ•įƒįƒ–įƒįƒ‘įƒ”"
#: ../src/pamac-manager/manager_window.vala
msgid "Replaces"
msgstr ""
msgstr "įƒįƒœįƒįƒŖįƒ•įƒšįƒ”įƒ‘įƒ”"
#: ../src/pamac-manager/manager_window.vala
msgid "Conflicts With"
msgstr ""
msgstr "įƒ™įƒįƒœįƒ¤įƒšįƒ˜įƒ„įƒ¢įƒØįƒ˜įƒ įƒØįƒ”įƒ›įƒ“įƒ”įƒ’įƒ—įƒįƒœ"
#: ../src/pamac-manager/manager_window.vala
msgid "Package Base"
msgstr ""
msgstr "įƒžįƒįƒ™įƒ”įƒ¢įƒ˜įƒ” įƒ‘įƒįƒ–įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Maintainer"
msgstr ""
msgstr "įƒØįƒ”įƒ›įƒ›įƒ£įƒØįƒįƒ•įƒ”įƒ‘įƒ”įƒšįƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "First Submitted"
msgstr ""
msgstr "įƒžįƒ˜įƒ įƒ•įƒ”įƒšįƒįƒ“ įƒ’įƒįƒœįƒ—įƒįƒ•įƒ”įƒ“įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Last Modified"
msgstr ""
msgstr "įƒ‘įƒįƒšįƒįƒ” įƒØįƒ”įƒ˜įƒŖįƒ•įƒšįƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Votes"
msgstr ""
msgstr "įƒ®įƒ›įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Out of Date"
msgstr ""
msgstr "įƒ›įƒįƒ«įƒ•įƒ”įƒšįƒ”įƒ‘įƒ£įƒšįƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Make Dependencies"
msgstr ""
msgstr "įƒįƒ’įƒ”įƒ‘įƒ˜įƒ”įƒ—įƒ•įƒ˜įƒ” įƒ”įƒįƒ­įƒ˜įƒ įƒ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "Check Dependencies"
msgstr ""
msgstr "įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒØįƒ”įƒ›įƒįƒ¬įƒ›įƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui
msgid "Name"
msgstr ""
msgstr "įƒ”įƒįƒ®įƒ”įƒšįƒ˜"
#: ../src/pamac-manager/manager_window.vala
#: ../data/interface/transaction_sum_dialog.ui
#: ../data/interface/manager_window.ui
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "_Cancel"
msgstr ""
msgstr "įƒ’įƒįƒ£įƒ„įƒ›įƒ”įƒ‘įƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "_Open"
msgstr ""
msgstr "įƒ’įƒįƒ®įƒ”įƒœįƒ"
#: ../src/pamac-manager/manager_window.vala
msgid "Alpm Package"
msgstr ""
msgstr "Alpm įƒžįƒįƒ™įƒ”įƒ¢įƒ˜"
#: ../src/pamac-manager/manager_window.vala
msgid "A Gtk3 frontend for libalpm"
msgstr ""
msgstr "Gtk3 įƒ˜įƒœįƒ¢įƒ”įƒ įƒ¤įƒ”įƒ˜įƒ”įƒ˜ libalpm-įƒ˜įƒ”įƒ—įƒ•įƒ˜įƒ”"
#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui
msgid "How often to check for updates, value in hours"
msgstr ""
msgstr "რა įƒ”įƒ˜įƒ®įƒØįƒ˜įƒ įƒ˜įƒ— įƒØįƒ”įƒ›įƒįƒ¬įƒ›įƒ“įƒ”įƒ” įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜, įƒ įƒ˜įƒŖįƒ®įƒ•įƒ˜ įƒ”įƒįƒįƒ—įƒ”įƒ‘įƒØįƒ˜"
#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui
msgid "Number of versions of each package to keep in the cache"
msgstr ""
msgstr "įƒ„įƒ”įƒØįƒØįƒ˜ įƒ“įƒįƒ”įƒįƒ¢įƒįƒ•įƒ”įƒ‘įƒ”įƒšįƒ˜ įƒ—įƒ˜įƒ—įƒįƒ”įƒ£įƒšįƒ˜ įƒžįƒįƒ™įƒ”įƒ¢įƒ˜įƒ” įƒ•įƒ”įƒ įƒ”įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ įƒįƒįƒ“įƒ”įƒœįƒįƒ‘įƒ"
#: ../src/preferences_dialog.vala
msgid "Build directory"
msgstr "įƒįƒ’įƒ”įƒ‘įƒ˜įƒ” įƒ™įƒįƒ¢įƒįƒšįƒįƒ’įƒ˜"
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
msgstr "įƒ›įƒ”įƒįƒ¤įƒšįƒ˜įƒįƒ” įƒ›įƒįƒ”įƒØįƒ¢įƒįƒ‘įƒ˜įƒ—"
#: ../src/preferences_dialog.vala
msgid "Speed"
msgstr ""
msgstr "įƒ”įƒ˜įƒ©įƒ„įƒįƒ įƒ˜įƒ—"
#: ../src/preferences_dialog.vala
msgid "Random"
msgstr ""
msgstr "įƒØįƒ”įƒ›įƒ—įƒ®įƒ•įƒ”įƒ•įƒ˜įƒ—"
#: ../data/polkit/org.pamac.policy.in
msgid "Authentication is required"
msgstr ""
msgstr "įƒ”įƒįƒ­įƒ˜įƒ įƒįƒ įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ"
#: ../data/interface/choose_provider_dialog.ui
msgid "Choose a Provider"
msgstr ""
msgstr "įƒ›įƒįƒ›įƒ¬įƒįƒ“įƒ”įƒ‘įƒšįƒ˜įƒ” įƒįƒ įƒ©įƒ”įƒ•įƒ"
#: ../data/interface/choose_provider_dialog.ui
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose"
msgstr ""
msgstr "įƒįƒ įƒ©įƒ”įƒ•įƒ"
#: ../data/interface/progress_dialog.ui
msgid "Progress"
msgstr ""
msgstr "įƒžįƒ įƒįƒ’įƒ įƒ”įƒ”įƒ˜"
#: ../data/interface/history_dialog.ui
msgid "Pamac History"
msgstr ""
msgstr "Pamac-იე įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ"
#: ../data/interface/transaction_sum_dialog.ui
msgid "Transaction Summary"
msgstr ""
msgstr "įƒ¢įƒ įƒįƒœįƒ–įƒįƒ„įƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒÆįƒįƒ›įƒ”įƒ‘įƒ"
#: ../data/interface/transaction_sum_dialog.ui
msgid "Commit"
msgstr ""
msgstr "įƒ’įƒįƒœįƒ®įƒįƒ įƒŖįƒ˜įƒ”įƒšįƒ”įƒ‘įƒ"
#: ../data/interface/manager_window.ui
msgid "Refresh databases"
msgstr ""
msgstr "įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
#: ../data/interface/manager_window.ui
msgid "Search"
msgstr ""
msgstr "įƒ«įƒ”įƒ‘įƒœįƒ"
#: ../data/interface/manager_window.ui
msgid "State"
msgstr ""
msgstr "ეტატუეი"
#: ../data/interface/manager_window.ui
msgid "Repositories"
msgstr ""
msgstr "įƒ”įƒįƒŖįƒįƒ•įƒ”įƒ‘įƒ˜"
#: ../data/interface/manager_window.ui
msgid "Updates"
msgstr ""
msgstr "įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../data/interface/manager_window.ui
msgid "Version"
msgstr ""
msgstr "įƒ•įƒ”įƒ įƒ”įƒ˜įƒ"
#: ../data/interface/manager_window.ui
msgid "Size"
msgstr ""
msgstr "įƒ–įƒįƒ›įƒ"
#: ../data/interface/manager_window.ui
msgid "Popularity"
msgstr ""
msgstr "įƒžįƒįƒžįƒ£įƒšįƒįƒ įƒįƒ‘įƒ"
#: ../data/interface/manager_window.ui ../data/interface/preferences_dialog.ui
msgid "AUR"
msgstr ""
msgstr "AUR"
#: ../data/interface/manager_window.ui
msgid "Browse"
msgstr ""
msgstr "įƒ“įƒįƒ—įƒ•įƒįƒšįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ"
#: ../data/interface/manager_window.ui
msgid "Reinstall"
msgstr ""
msgstr "įƒ®įƒ”įƒšįƒįƒ®įƒšįƒ įƒ“įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ"
#: ../data/interface/manager_window.ui
msgid "Dependencies"
msgstr ""
msgstr "įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜"
#: ../data/interface/manager_window.ui
msgid "Files"
msgstr ""
msgstr "įƒ¤įƒįƒ˜įƒšįƒ”įƒ‘įƒ˜"
#: ../data/interface/manager_window.ui
msgid "_Apply"
msgstr ""
msgstr "įƒ“įƒįƒ¬įƒ§įƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Remove unrequired dependencies"
msgstr ""
msgstr "įƒįƒ įƒįƒ”įƒįƒ­įƒ˜įƒ įƒ įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒŖįƒ˜įƒšįƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid ""
"When removing a package, also remove its dependencies that are not required "
"by other packages"
msgstr ""
"įƒžįƒįƒ™įƒ”įƒ¢įƒ˜įƒ” įƒ›įƒįƒŖįƒ˜įƒšįƒ”įƒ‘įƒ˜įƒ”įƒįƒ”, įƒįƒ”įƒ”įƒ•įƒ” įƒ›įƒįƒįƒŖįƒ˜įƒšįƒ” įƒ›įƒ˜įƒ”įƒ˜ იე įƒ“įƒįƒ›įƒįƒ™įƒ˜įƒ“įƒ”įƒ‘įƒ£įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜, įƒ įƒįƒ›įƒšįƒ”įƒ‘įƒ˜įƒŖ არ "
"įƒ”įƒ”įƒįƒ­įƒ˜įƒ įƒįƒ”įƒ‘įƒ įƒ”įƒ®įƒ•įƒ įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ”"
#: ../data/interface/preferences_dialog.ui
msgid "Check available disk space"
msgstr ""
msgstr "įƒ“įƒ˜įƒ”įƒ™įƒ–įƒ” įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜ įƒ”įƒ˜įƒ•įƒ įƒŖįƒ˜įƒ” įƒØįƒ”įƒ›įƒįƒ¬įƒ›įƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Check for updates"
@@ -708,51 +716,51 @@ msgstr "įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒØįƒ”įƒ›įƒįƒ¬įƒ›įƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Update files databases (more details but slower)"
msgstr ""
msgstr "įƒ¤įƒįƒ˜įƒšįƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ‘įƒįƒ–įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ(įƒ›įƒ”įƒ¢įƒ˜ įƒ“įƒ”įƒ¢įƒįƒšįƒ˜įƒ, įƒ›įƒįƒ’įƒ įƒįƒ› įƒ£įƒ¤įƒ įƒ įƒœįƒ”įƒšįƒ˜įƒ)"
#: ../data/interface/preferences_dialog.ui
msgid "Hide tray icon when no update available"
msgstr ""
msgstr "įƒ“įƒįƒ›įƒįƒšįƒ” ხატულა įƒšįƒįƒœįƒ’įƒįƒ įƒ–įƒ”, įƒ įƒįƒ“įƒ”įƒ”įƒįƒŖ įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜ არაა įƒ®įƒ”įƒšįƒ›įƒ˜įƒ”įƒįƒ¬įƒ•įƒ“įƒįƒ›įƒ˜"
#: ../data/interface/preferences_dialog.ui
msgid "Ignore upgrades for:"
msgstr ""
msgstr "įƒ’įƒįƒ›įƒįƒ¢įƒįƒ•įƒ” įƒ›įƒįƒ—įƒ˜ įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜:"
#: ../data/interface/preferences_dialog.ui
msgid "General"
msgstr ""
msgstr "įƒ–įƒįƒ’įƒįƒ“įƒ˜"
#: ../data/interface/preferences_dialog.ui
msgid "Background color:"
msgstr ""
msgstr "įƒ¤įƒįƒœįƒ˜įƒ” įƒ¤įƒ”įƒ įƒ˜:"
#: ../data/interface/preferences_dialog.ui
msgid "Text color:"
msgstr ""
msgstr "įƒ¢įƒ”įƒ„įƒ”įƒ¢įƒ˜įƒ” įƒ¤įƒ”įƒ įƒ˜:"
#: ../data/interface/preferences_dialog.ui
msgid "Font:"
msgstr ""
msgstr "შრიფტი:"
#: ../data/interface/preferences_dialog.ui
msgid "Terminal"
msgstr ""
msgstr "įƒ¢įƒ”įƒ įƒ›įƒ˜įƒœįƒįƒšįƒ˜"
#: ../data/interface/preferences_dialog.ui
msgid "Use mirrors from:"
msgstr ""
msgstr "įƒ’įƒįƒ›įƒįƒ˜įƒ§įƒ”įƒœįƒ” įƒ”įƒįƒ įƒ™įƒ”įƒ”įƒ‘įƒ˜:"
#: ../data/interface/preferences_dialog.ui
msgid "Sort mirrors by:"
msgstr ""
msgstr "įƒ”įƒįƒ įƒ™įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒšįƒįƒ’įƒ”įƒ‘įƒ:"
#: ../data/interface/preferences_dialog.ui
msgid "Refresh Mirrors List"
msgstr ""
msgstr "įƒ”įƒįƒ įƒ™įƒ”įƒ”įƒ‘įƒ˜įƒ” ეიიე įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Official Repositories"
msgstr ""
msgstr "įƒįƒ¤įƒ˜įƒŖįƒ˜įƒįƒšįƒ£įƒ įƒ˜ įƒ”įƒįƒŖįƒįƒ•įƒ”įƒ‘įƒ˜"
#: ../data/interface/preferences_dialog.ui
msgid ""
@@ -760,35 +768,42 @@ msgid ""
"problems.\n"
"All AUR users should be familiar with the build process."
msgstr ""
"AUR არიე įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ˜įƒ” įƒ›įƒ˜įƒ”įƒ  įƒØįƒ”įƒ›įƒ£įƒØįƒįƒ•įƒ”įƒ‘įƒ£įƒšįƒ˜ įƒ”įƒįƒŖįƒįƒ•įƒ˜, įƒįƒ›įƒ˜įƒ¢įƒįƒ› იე įƒ¬įƒįƒ įƒ›įƒįƒįƒ“įƒ’įƒ”įƒœįƒ” "
"įƒžįƒįƒ¢įƒ”įƒœįƒŖįƒ˜įƒ£įƒ  įƒ įƒ˜įƒ”įƒ™įƒ”įƒ‘įƒ” įƒ“įƒ įƒžįƒ įƒįƒ‘įƒšįƒ”įƒ›įƒ”įƒ‘įƒ”.\n"
"AUR-იე įƒ§įƒ•įƒ”įƒšįƒ įƒ›įƒįƒ›įƒ®įƒ›įƒįƒ įƒ”įƒ‘įƒ”įƒšįƒ˜ įƒ£įƒœįƒ“įƒ įƒ˜įƒŖįƒœįƒįƒ‘įƒ“įƒ”įƒ” įƒįƒ’įƒ”įƒ‘įƒ˜įƒ” įƒžįƒ įƒįƒŖįƒ”įƒ”įƒ”."
#: ../data/interface/preferences_dialog.ui
msgid "Enable AUR support"
msgstr ""
msgstr "AUR-იე įƒ›įƒ®įƒįƒ įƒ“įƒįƒ­įƒ”įƒ įƒ˜įƒ” įƒ©įƒįƒ įƒ—įƒ•įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Allow Pamac to search and install packages from AUR"
msgstr ""
msgstr "įƒœįƒ”įƒ‘įƒ įƒ“įƒįƒ įƒ—įƒ”įƒ— Pamac-ე, įƒ įƒįƒ› įƒ›įƒįƒ«įƒ”įƒ‘įƒœįƒįƒ” įƒ“įƒ įƒ“įƒįƒįƒ§įƒ”įƒœįƒįƒ” įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜ AUR-įƒ˜įƒ“įƒįƒœ"
#: ../data/interface/preferences_dialog.ui
msgid "Search in AUR by default"
msgstr ""
msgstr "įƒįƒ•įƒ¢įƒįƒ›įƒįƒ¢įƒ£įƒ įƒįƒ“ AUR-შიც įƒ›įƒįƒ˜įƒ«įƒ”įƒ‘įƒœįƒįƒ”"
#: ../data/interface/preferences_dialog.ui
msgid "Check for updates from AUR"
msgstr "įƒ’įƒįƒœįƒįƒ®įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒØįƒ”įƒ›įƒįƒ¬įƒ›įƒ”įƒ‘įƒ AUR-įƒ˜įƒ“įƒįƒœ"
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgid "Keep built packages"
msgstr ""
#: ../data/interface/preferences_dialog.ui
msgid "Remove only the versions of uninstalled packages"
msgstr "įƒ›įƒ®įƒįƒšįƒįƒ“ წაშლილი įƒžįƒįƒ™įƒ”įƒ¢įƒ”įƒ‘įƒ˜įƒ” įƒ•įƒ”įƒ įƒ”įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒŖįƒ˜įƒšįƒ”įƒ‘įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Clean cache"
msgstr ""
msgstr "įƒ„įƒ”įƒØįƒ˜įƒ” įƒ’įƒįƒ¬įƒ›įƒ”įƒœįƒ“įƒ"
#: ../data/interface/preferences_dialog.ui
msgid "Cache"
msgstr ""
msgstr "įƒ„įƒ”įƒØįƒ˜"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr ""
msgid "Loading packages files"
msgstr "꾸러미 ķŒŒģ¼ģ„ ė”œė“œģ¤‘ģž…ė‹ˆė‹¤."
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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 +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: 2017-11-11 23:01-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-"
@@ -240,27 +240,6 @@ msgstr "Tikrinamas vientisumas"
msgid "Loading packages files"
msgstr "Įkeliami paketų failai"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Tikrinamas delta vientisumas"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Pritaikomos deltos"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Kuriama %s su %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Kūrimas sėkmingas"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Kūrimas nepavyko"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr "_Užverti"
msgid "Nothing to do"
msgstr "Nėra ką atlikti"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Operacija sėkmingai užbaigta"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,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"
@@ -790,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"
@@ -805,3 +808,19 @@ msgstr "Podėlis"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Pasirinkti nepaisomus atnaujinimus"
#~ msgid "Checking delta integrity"
#~ msgstr "Tikrinamas delta vientisumas"
#~ msgid "Applying deltas"
#~ msgstr "Pritaikomos deltos"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Kuriama %s su %s"
#~ msgid "Generation succeeded"
#~ msgstr "Kūrimas sėkmingas"
#~ msgid "Generation failed"
#~ msgstr "Kūrimas nepavyko"

View File

@@ -1,2 +1,2 @@
i18n = import('i18n')
i18n.gettext('pamac', languages: ['af', 'ar', 'ast', 'az_AZ', 'be', 'bg', 'bn', 'bs', 'bs_BA', 'ca', 'ca_ES', 'cs', 'cs_CZ', 'cy', 'da', 'de', 'de_CH', 'de_DE', 'el', 'el_GR', 'en_GB', 'eo', 'es', 'es_419', 'es_AR', 'es_ES', 'es_MX', 'es_SV', 'et', 'eu', 'fa', 'fa_IR', 'fi', 'fo', 'fr', 'gl', 'he', 'hi', 'hi_IN', 'hr', 'hr_HR', 'hu', 'id', 'is', 'is_IS', 'it', 'it_IT', 'ja', 'ka', 'ko', 'lt', 'ml', 'ms', 'nb', 'nl', 'nl_BE', 'nl_NL', 'nn', 'pl', 'pl_PL', 'pt', 'pt_BR', 'pt_PT', 'ro', 'ru', 'si', 'sk', 'sl', 'sl_SI', 'sr', 'sr@latin', 'sr_RS', 'sr_RS@latin', 'sv', 'tr', 'uk', 'ur_PK', 'uz', 'vi', 'zh', 'zh_CN', 'zh_TW'])
i18n.gettext('pamac', languages: ['cs', 'ka', 'af', 'ar', 'ast', 'az_AZ', 'be', 'bg', 'bn', 'bs', 'bs_BA', 'ca', 'ca_ES', 'cs_CZ', 'cy', 'da', 'de', 'de_CH', 'de_DE', 'el', 'el_GR', 'en_GB', 'eo', 'es', 'es_419', 'es_AR', 'es_ES', 'es_MX', 'es_SV', 'et', 'eu', 'fa', 'fa_IR', 'fi', 'fo', 'fr', 'gl', 'he', 'hi', 'hi_IN', 'hr', 'hr_HR', 'hu', 'id', 'is', 'is_IS', 'it', 'it_IT', 'ja', 'ko', 'lt', 'ml', 'ms', 'nb', 'nl', 'nl_BE', 'nl_NL', 'nn', 'pl', 'pl_PL', 'pt', 'pt_BR', 'pt_PT', 'ro', 'ru', 'si', 'sk', 'sl', 'sl_SI', 'sr', 'sr@latin', 'sr_RS', 'sr_RS@latin', 'sv', 'tr', 'uk', 'ur_PK', 'uz', 'vi', 'zh', 'zh_CN', 'zh_TW'])

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: 2017-11-11 23:01-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-"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr "Memeriksa integriti"
msgid "Loading packages files"
msgstr "Memuatkan fail pakej"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Memeriksa integriti delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Serapkan delta"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Menjana %s dengan %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr "Tiada untuk dibuat"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaksi berjaya diselesaikan"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -590,6 +585,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -776,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 ""
@@ -791,3 +794,13 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Memeriksa integriti delta"
#~ msgid "Applying deltas"
#~ msgstr "Serapkan delta"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Menjana %s dengan %s"

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: 2017-11-11 23:01-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/"
@@ -254,27 +254,6 @@ msgstr "Sjekker integritet"
msgid "Loading packages files"
msgstr "Laster pakke filer"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Sjekker integritet"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "AnfĆører deltaer"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generer %s med %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generering lyktes"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generering feilet"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -363,10 +342,26 @@ msgstr "_Lukk"
msgid "Nothing to do"
msgstr "Ingenting Ć„ gjĆøre"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transaksjonen avsluttet vellykket"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -610,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"
@@ -801,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"
@@ -816,3 +819,19 @@ msgstr "Hurtiglager"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Velg ignorerte oppdateringer "
#~ msgid "Checking delta integrity"
#~ msgstr "Sjekker integritet"
#~ msgid "Applying deltas"
#~ msgstr "AnfĆører deltaer"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generer %s med %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generering lyktes"
#~ msgid "Generation failed"
#~ msgstr "Generering feilet"

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: 2017-11-11 23:01-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/"
@@ -252,27 +252,6 @@ msgstr "Controle op integriteit"
msgid "Loading packages files"
msgstr "Pakket bestanden laden"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Delta integriteit controleren"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Toepassen delta's"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Genereren %s met %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Genereren gelukt"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Genereren mislukt"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -361,10 +340,26 @@ msgstr "_Sluiten"
msgid "Nothing to do"
msgstr "Niets te doen"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transactie succesvol afgerond"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -608,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"
@@ -799,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"
@@ -814,3 +817,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Kies genegeerde upgrades"
#~ msgid "Checking delta integrity"
#~ msgstr "Delta integriteit controleren"
#~ msgid "Applying deltas"
#~ msgstr "Toepassen delta's"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Genereren %s met %s"
#~ msgid "Generation succeeded"
#~ msgstr "Genereren gelukt"
#~ msgid "Generation failed"
#~ msgstr "Genereren mislukt"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr "Volledigheid nakijken"
msgid "Loading packages files"
msgstr "Pakkettenbestanden binnenhalen"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Delta integriteit verifiƫren"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltas doorvoeren"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "%s genereren met %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generatie succesvol "
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generatie gefaald"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_Sluiten"
msgid "Nothing to do"
msgstr "Niets te doen"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transactie succesvol beƫindigd "
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Wereldwijd "
@@ -784,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 ""
@@ -799,3 +802,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Genegeerde upgrades kiezen "
#~ msgid "Checking delta integrity"
#~ msgstr "Delta integriteit verifiƫren"
#~ msgid "Applying deltas"
#~ msgstr "Deltas doorvoeren"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "%s genereren met %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generatie succesvol "
#~ msgid "Generation failed"
#~ msgstr "Generatie gefaald"

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: 2017-11-11 23:01-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/"
@@ -242,27 +242,6 @@ msgstr "Bezig met controleren van integriteit"
msgid "Loading packages files"
msgstr "Bezig met laden van pakketbestanden"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Bezig met controleren van delta-integriteit"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Bezig met toepassen van delta's"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Bezig met genereren van %s met %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Het genereren is gelukt"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Het genereren is mislukt"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -351,10 +330,26 @@ msgstr "_Sluiten"
msgid "Nothing to do"
msgstr "Niets te doen"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "De overdracht is succesvol afgerond"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -598,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"
@@ -789,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"
@@ -804,3 +807,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Kies genegeerde upgrades"
#~ msgid "Checking delta integrity"
#~ msgstr "Bezig met controleren van delta-integriteit"
#~ msgid "Applying deltas"
#~ msgstr "Bezig met toepassen van delta's"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Bezig met genereren van %s met %s"
#~ msgid "Generation succeeded"
#~ msgstr "Het genereren is gelukt"
#~ msgid "Generation failed"
#~ msgstr "Het genereren is mislukt"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -345,10 +324,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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: 2019-07-06 20:25-0400\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"
@@ -235,27 +235,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -344,10 +323,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -591,6 +586,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -777,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: 2017-11-11 23:01-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/"
@@ -249,27 +249,6 @@ msgstr "Sprawdzanie spójności"
msgid "Loading packages files"
msgstr "Wczytywanie plików pakietów"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Sprawdzanie integralności delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Zastosowywanie delt"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generowanie %s przy użyciu %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generowanie zakończone sukcesem"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generowanie nie powiodło się"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -360,10 +339,26 @@ msgstr "_Zamknij"
msgid "Nothing to do"
msgstr "Nic do zrobienia"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Operacja zakończona sukcesem"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -611,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"
@@ -803,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"
@@ -818,3 +821,19 @@ msgstr "Pamięć podręczna"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Wybierz ignorowane aktualizacje"
#~ msgid "Checking delta integrity"
#~ msgstr "Sprawdzanie integralności delta"
#~ msgid "Applying deltas"
#~ msgstr "Zastosowywanie delt"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generowanie %s przy użyciu %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generowanie zakończone sukcesem"
#~ msgid "Generation failed"
#~ msgstr "Generowanie nie powiodło się"

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: 2017-11-11 23:01-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/"
@@ -238,27 +238,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -349,10 +328,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -600,6 +595,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -786,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: 2017-11-11 23:01-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-"
@@ -237,27 +237,6 @@ msgstr "A verificar a integridade dos pacotes"
msgid "Loading packages files"
msgstr "A carregar ficheiros de pacotes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "A verificar a integridade do delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "A aplicar deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "A gerar %s com %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Geração bem sucedida"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Geração falhou"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_Fechar"
msgid "Nothing to do"
msgstr "Nada a fazer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transacção finalizada com êxito"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,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"
@@ -785,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"
@@ -800,3 +803,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Escolher AtualizaƧƵes Ignoradas"
#~ msgid "Checking delta integrity"
#~ msgstr "A verificar a integridade do delta"
#~ msgid "Applying deltas"
#~ msgstr "A aplicar deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "A gerar %s com %s"
#~ msgid "Generation succeeded"
#~ msgstr "Geração bem sucedida"
#~ msgid "Generation failed"
#~ msgstr "Geração falhou"

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: 2017-11-11 23:01-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/"
@@ -254,27 +254,6 @@ msgstr "Verificando a integridade dos pacotes"
msgid "Loading packages files"
msgstr "Carregando arquivos de pacotes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Verificando a integridade do delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Aplicando deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Gerando %s com %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Geração bem sucedida"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Falha na geração"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -363,10 +342,26 @@ msgstr "_Fechar"
msgid "Nothing to do"
msgstr "Nada para fazer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transação finalizada com êxito"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -610,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"
@@ -802,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"
@@ -817,3 +820,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Escolha atualizaƧƵes ignoradas"
#~ msgid "Checking delta integrity"
#~ msgstr "Verificando a integridade do delta"
#~ msgid "Applying deltas"
#~ msgstr "Aplicando deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Gerando %s com %s"
#~ msgid "Generation succeeded"
#~ msgstr "Geração bem sucedida"
#~ msgid "Generation failed"
#~ msgstr "Falha na geração"

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: 2017-11-11 23:01-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/"
@@ -245,27 +245,6 @@ msgstr "A verificar a integridade dos pacotes"
msgid "Loading packages files"
msgstr "A carregar ficheiros de pacotes"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "A verificar a integridade do delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "A aplicar deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "A gerar %s com %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Geração bem sucedida"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Geração falhou"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -354,10 +333,26 @@ msgstr "_Fechar"
msgid "Nothing to do"
msgstr "Nada a fazer"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transacção finalizada com êxito"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,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"
@@ -793,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"
@@ -808,3 +811,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Escolher AtualizaƧƵes Ignoradas"
#~ msgid "Checking delta integrity"
#~ msgstr "A verificar a integridade do delta"
#~ msgid "Applying deltas"
#~ msgstr "A aplicar deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "A gerar %s com %s"
#~ msgid "Generation succeeded"
#~ msgstr "Geração bem sucedida"
#~ msgid "Generation failed"
#~ msgstr "Geração falhou"

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: 2017-11-11 23:01-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/"
@@ -242,27 +242,6 @@ msgstr "Se verifică integritatea"
msgid "Loading packages files"
msgstr "Se Ć®ncarcă fișierele pachetelor"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Se verifică delta integritatea"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Se aplică delta"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Se generează %s cu %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generare reușită"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generare eșuată"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -352,10 +331,26 @@ msgstr "_Ǝnchide"
msgid "Nothing to do"
msgstr "Nimic de făcut"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Tranzacția s-a terminat cu succes"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,6 +596,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Mondial"
@@ -791,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 ""
@@ -806,3 +809,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Alege actualizări ignorate"
#~ msgid "Checking delta integrity"
#~ msgstr "Se verifică delta integritatea"
#~ msgid "Applying deltas"
#~ msgstr "Se aplică delta"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Se generează %s cu %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generare reușită"
#~ msgid "Generation failed"
#~ msgstr "Generare eșuată"

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: 2017-11-11 23:01-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/"
@@ -257,27 +257,6 @@ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° целостности"
msgid "Loading packages files"
msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° файлов пакетов"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° целостности Š“ŠµŠ»ŃŒŃ‚"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ŠŸŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŠµ Š“ŠµŠ»ŃŒŃ‚"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†ŠøŃ %s с %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†ŠøŃ успешно Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š°"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†ŠøŃ не уГалась"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -368,10 +347,26 @@ msgstr "_Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ"
msgid "Nothing to do"
msgstr "ŠŠµŃ‚ заГаний"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Š¢Ń€Š°Š½Š·Š°ŠŗŃ†ŠøŃ успешно Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š°"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -619,6 +614,10 @@ msgstr "Š”Š¾Ń…Ń€Š°Š½ŃŃ‚ŃŒ в ŠŗŃŃˆŠµ ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠµ версии пак
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "ŠœŠøŃ€Š¾Š²Š¾Š¹"
@@ -810,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 "Š£Š“Š°Š»ŃŃ‚ŃŒ ŠøŠ· ŠŗŃŃˆŠ° ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠµ версии Ń‚Š¾Š»ŃŒŠŗŠ¾ Š“Š»Ń ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Ń… пакетов"
@@ -825,3 +828,19 @@ msgstr "ŠšŃŃˆ"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Š’Ń‹Š±Ń€Š°Ń‚ŃŒ ŠæŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Š½Ń‹Šµ Š¾Š±Š½Š¾Š²Š»ŠµŠ½ŠøŃ"
#~ msgid "Checking delta integrity"
#~ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° целостности Š“ŠµŠ»ŃŒŃ‚"
#~ msgid "Applying deltas"
#~ msgstr "ŠŸŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŠµ Š“ŠµŠ»ŃŒŃ‚"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†ŠøŃ %s с %s"
#~ msgid "Generation succeeded"
#~ msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†ŠøŃ успешно Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š°"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -238,27 +238,6 @@ msgstr "ą·ƒą¶øą·Šą¶“ą·–ą¶»ą·Šą¶«ą¶­ą·Šą·€ą¶ŗ ą¶“ą¶»ą·“ą¶šą·Šą·‚ą· ą¶šą¶»ą¶ŗą·’"
msgid "Loading packages files"
msgstr "ඓැකේජ ඓූරණය ą·€ą·™ą¶øą·’ą¶±ą·Š ඓවතී"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "ą¶šą¶§ą¶ŗą·”ą¶­ą·Šą¶­ ą·ƒą·ą¶»ą·Šą¶®ą¶š ą¶½ą·™ą·ƒ ą¶…ą·€ą·ƒą¶±ą·Š විය"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -594,6 +589,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -780,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: 2017-11-11 23:01-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/"
@@ -243,27 +243,6 @@ msgstr "Kontroluje sa integrita"
msgid "Loading packages files"
msgstr "NačƭtavajĆŗ sa sĆŗbory balĆ­kov"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Kontroluje sa integrita sĆŗÄastĆ­ delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "AplikujĆŗ sa sĆŗÄasti delta"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generuje sa %s s %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generovanie bolo úspeŔné"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generovanie zlyhalo"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -353,10 +332,26 @@ msgstr "_Zavrień"
msgid "Nothing to do"
msgstr "Nič na vykonanie"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakcia bola úspeŔnÔ"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -602,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"
@@ -794,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"
@@ -809,3 +812,19 @@ msgstr "VyrovnÔvacia pamäń"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Voľba ignorovaných aktualizÔcií"
#~ msgid "Checking delta integrity"
#~ msgstr "Kontroluje sa integrita sĆŗÄastĆ­ delta"
#~ msgid "Applying deltas"
#~ msgstr "AplikujĆŗ sa sĆŗÄasti delta"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generuje sa %s s %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generovanie bolo úspeŔné"
#~ msgid "Generation failed"
#~ msgstr "Generovanie zlyhalo"

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: 2017-11-11 23:01-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-"
@@ -244,27 +244,6 @@ msgstr "Preverjanje celovitosti"
msgid "Loading packages files"
msgstr "Nalaganje datotek paketov"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Preverjanje celovitosti delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Apliciranje delt"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generiranje %s z %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generiranje uspeŔno"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generiranje ni bilo uspeŔno"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -355,10 +334,26 @@ msgstr "_Zapri"
msgid "Nothing to do"
msgstr "Ni nobenih opravil"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakcija uspeŔno zaključena"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -606,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"
@@ -798,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"
@@ -813,3 +816,19 @@ msgstr "Predpomnilnik"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Paketi, ki naj se ne posodabljajo"
#~ msgid "Checking delta integrity"
#~ msgstr "Preverjanje celovitosti delta"
#~ msgid "Applying deltas"
#~ msgstr "Apliciranje delt"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generiranje %s z %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generiranje uspeŔno"
#~ msgid "Generation failed"
#~ msgstr "Generiranje ni bilo uspeŔno"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -785,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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€Š° интегритета"
msgid "Loading packages files"
msgstr "Š£Ń‡ŠøŃ‚Š°Š²Š°ŃšŠµ Гатотека пакета"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ŠŸŃ€Š¾Š²ŠµŃ€Š° Гелта интегритета"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ŠŸŃ€ŠøŠ¼ŠµŠ½Šø Гелте"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Š“Ń€Š°Ń’ŠµŃšŠµ %s са %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Š“Ń€Š°Ń’ŠµŃšŠµ успешно"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Š“Ń€Š°Ń’ŠµŃšŠµ неуспешно"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr "_Затвори"
msgid "Nothing to do"
msgstr "ŠŠøŃˆŃ‚Š° за Ń‡ŠøŃšŠµŃšŠµ."
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Š¢Ń€Š°Š½ŃŠ°ŠŗŃ†ŠøŃ˜Š° успешно обављена"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,6 +594,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "Широм света"
@@ -787,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 ""
@@ -802,3 +805,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "ŠŸŃ€Š¾Š²ŠµŃ€Š° Гелта интегритета"
#~ msgid "Applying deltas"
#~ msgstr "ŠŸŃ€ŠøŠ¼ŠµŠ½Šø Гелте"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Š“Ń€Š°Ń’ŠµŃšŠµ %s са %s"
#~ msgid "Generation succeeded"
#~ msgstr "Š“Ń€Š°Ń’ŠµŃšŠµ успешно"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -243,27 +243,6 @@ msgstr "Proveravanje integriteta"
msgid "Loading packages files"
msgstr "Učitavanje datoteka paketa"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Proveravanje integriteta delte"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Primenjivanje delte"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Generisanje %s sa %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generisanje je uspelo"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generisanje nije uspelo"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -353,10 +332,26 @@ msgstr ""
msgid "Nothing to do"
msgstr "NiŔta za uraditi"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Transakcija je uspeŔno zavrŔena"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -602,6 +597,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -788,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 ""
@@ -803,3 +806,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Proveravanje integriteta delte"
#~ msgid "Applying deltas"
#~ msgstr "Primenjivanje delte"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Generisanje %s sa %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generisanje je uspelo"
#~ msgid "Generation failed"
#~ msgstr "Generisanje nije uspelo"

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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -596,6 +591,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -782,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: 2017-11-11 23:01-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/"
@@ -245,27 +245,6 @@ msgstr "Kontrollerar integritet"
msgid "Loading packages files"
msgstr "Laddar paketfiler"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Kontrollerar skillnadsintegritet"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "TillƤmpar skillnader"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Genererar %s med %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Generering lyckades"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Generering misslyckades"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -354,10 +333,26 @@ msgstr "_StƤng"
msgid "Nothing to do"
msgstr "Inget att gƶra"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Ɩverfƶring lyckades"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -601,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"
@@ -792,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"
@@ -807,3 +810,19 @@ msgstr "Cache"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "VƤlj ignorerade paket"
#~ msgid "Checking delta integrity"
#~ msgstr "Kontrollerar skillnadsintegritet"
#~ msgid "Applying deltas"
#~ msgstr "TillƤmpar skillnader"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Genererar %s med %s"
#~ msgid "Generation succeeded"
#~ msgstr "Generering lyckades"
#~ msgid "Generation failed"
#~ msgstr "Generering misslyckades"

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: 2017-11-11 23:01-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/"
@@ -243,27 +243,6 @@ msgstr "Bütünlük Denetleniyor"
msgid "Loading packages files"
msgstr "Paket Dosyalari Yükleniyor"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Delta bütünlüğü kontrol ediliyor"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltalar uygulanıyor"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Oluşturuluyor %s ile %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Oluşturma başarılı"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Oluşturulamadı"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -352,10 +331,26 @@ msgstr "_Kapat"
msgid "Nothing to do"
msgstr "Yapılacak Bir Şey Yok"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Işlem Başarılı"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -599,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"
@@ -790,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"
@@ -805,3 +808,19 @@ msgstr "Ɩnbellek"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "Güncellenmeyecek Paketleri Seç"
#~ msgid "Checking delta integrity"
#~ msgstr "Delta bütünlüğü kontrol ediliyor"
#~ msgid "Applying deltas"
#~ msgstr "Deltalar uygulanıyor"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Oluşturuluyor %s ile %s"
#~ msgid "Generation succeeded"
#~ msgstr "Oluşturma başarılı"
#~ msgid "Generation failed"
#~ msgstr "Oluşturulamadı"

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: 2017-11-11 23:01-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-"
@@ -249,27 +249,6 @@ msgstr "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° цілісності"
msgid "Loading packages files"
msgstr "Š—Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń пакетів файлів"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° цілісності delta"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Š—Š°ŃŃ‚Š¾ŃŃƒŠ²Š°Š½Š½Ń deltas"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†Ń–Ń %s Š· %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "ВГала Š³ŠµŠ½ŠµŃ€Š°Ń†Ń–я"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ŠŠµŠ²Š“Š°Š»Šµ Š³ŠµŠ½ŠµŃ€ŃƒŠ²Š°Š½Š½Ń"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -359,10 +338,26 @@ msgstr "_Закрити"
msgid "Nothing to do"
msgstr "ŠŠµŠ¼Š°Ń” роботи"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "ŠžŠæŠµŃ€Š°Ń†Ń–Ń ŃƒŃŠæŃ–ŃˆŠ½Š¾ Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š°"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -608,6 +603,10 @@ msgstr "ŠšŃ–Š»ŃŒŠŗŃ–ŃŃ‚ŃŒ версій кожного пакунка збері
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "По всьому ŃŠ²Ń–Ń‚Ńƒ"
@@ -799,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 "ВиГалити лишень версії Š²ŠøŠ»ŃƒŃ‡ŠøŠ½ŠøŃ… ŠæŠ°ŠŗŃƒŠ½ŠŗŃ–Š²"
@@ -814,3 +817,19 @@ msgstr "Кеш"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "ŠžŠ±ŠµŃ€Ń–Ń‚ŃŒ ігноровані ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń"
#~ msgid "Checking delta integrity"
#~ msgstr "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° цілісності delta"
#~ msgid "Applying deltas"
#~ msgstr "Š—Š°ŃŃ‚Š¾ŃŃƒŠ²Š°Š½Š½Ń deltas"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Š“ŠµŠ½ŠµŃ€Š°Ń†Ń–Ń %s Š· %s"
#~ msgid "Generation succeeded"
#~ msgstr "ВГала Š³ŠµŠ½ŠµŃ€Š°Ń†Ń–я"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -237,27 +237,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -346,10 +325,26 @@ msgstr "_بند کریں"
msgid "Nothing to do"
msgstr "کرنے کو کچھ Ł†ŪŪŒŚŗ"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "عمل Ś©Ų§Ł…ŪŒŲ§ŲØŪŒ Ų³Ū’ مکمل ہوا"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,6 +588,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "ŲØŪŒŁ† Ų§Ł„Ł‚ŁˆŲ§Ł…ŪŒ"
@@ -781,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: 2017-11-11 23:01-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/"
@@ -239,27 +239,6 @@ msgstr "Butunligi tekshirilmoqda"
msgid "Loading packages files"
msgstr "Paketlar fayllari yuklanmoqda"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "Delta butunligi tekshirilmoqda"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "Deltalar qo'llanilmoqda"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "%s'ni %s bilan yaratilmoqda"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "Yaratish muvaffaqiyatli"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "Yaratish muvaffaqiyatsiz"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr "_Yopish"
msgid "Nothing to do"
msgstr "Vazifalar yo'q"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Tranzaksiya muvaffaqiyatli tugadi"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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 ""
@@ -793,3 +796,19 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#~ msgid "Checking delta integrity"
#~ msgstr "Delta butunligi tekshirilmoqda"
#~ msgid "Applying deltas"
#~ msgstr "Deltalar qo'llanilmoqda"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "%s'ni %s bilan yaratilmoqda"
#~ msgid "Generation succeeded"
#~ msgstr "Yaratish muvaffaqiyatli"
#~ msgid "Generation failed"
#~ msgstr "Yaratish muvaffaqiyatsiz"

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: 2017-11-11 23:01-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-"
@@ -239,27 +239,6 @@ msgstr "Đang kiểm tra tính toàn vẹn"
msgid "Loading packages files"
msgstr "Đang nįŗ”p cĆ”c tệp tin cį»§a cĆ”c gói"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "Đang tįŗ”o lįŗ­p %s vį»›i %s"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "QuÔ trình tẔo lập thành cÓng"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "QuÔ trình tẔo lâp thẄt bẔi"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -347,10 +326,26 @@ msgstr ""
msgid "Nothing to do"
msgstr "KhĆ“ng có gƬ Ä‘į»ƒ thį»±c hiện"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "Chuyển giao kết thúc thành cÓng"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -592,6 +587,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -778,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 ""
@@ -793,3 +796,13 @@ msgstr ""
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr ""
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "Đang tįŗ”o lįŗ­p %s vį»›i %s"
#~ msgid "Generation succeeded"
#~ msgstr "QuÔ trình tẔo lập thành cÓng"
#~ msgid "Generation failed"
#~ msgstr "QuÔ trình tẔo lâp thẄt bẔi"

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: 2017-11-11 23:01-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/"
@@ -236,27 +236,6 @@ msgstr ""
msgid "Loading packages files"
msgstr ""
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr ""
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr ""
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr ""
#: ../src/transaction.vala
msgid "Generation failed"
msgstr ""
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -344,10 +323,26 @@ msgstr ""
msgid "Nothing to do"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -589,6 +584,10 @@ msgstr ""
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr ""
@@ -775,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: 2017-11-11 23:01-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/"
@@ -242,27 +242,6 @@ msgstr "ę­£åœØę£€ęŸ„å®Œę•“ę€§"
msgid "Loading packages files"
msgstr "ę­£åœØč½½å…„åŒ…ę–‡ä»¶"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ę­£åœØę£€ęŸ„å¢žé‡å®Œę•“ę€§"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ę­£åœØåŗ”ē”Øå¢žé‡"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "ę­£åœØē”Ÿęˆ %s ļ¼ˆä½æē”Ø %s )"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "ē”ŸęˆęˆåŠŸ"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ē”Ÿęˆå¤±č“„"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -350,10 +329,26 @@ msgstr "关闭(_C)"
msgid "Nothing to do"
msgstr "ę— éœ€åšä»»ä½•äŗ‹"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "äŗ‹åŠ”ęˆåŠŸå®Œęˆ"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -595,6 +590,10 @@ msgstr "ęÆäøŖč½Æä»¶åŒ…äæē•™åœØē¼“å­˜äø­ēš„ē‰ˆęœ¬ę•°ē›®"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "å…Øäø–ē•Œ"
@@ -783,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 "åŖęø…é™¤å·²åøč½½č½Æä»¶åŒ…ēš„ē‰ˆęœ¬"
@@ -798,3 +801,19 @@ msgstr "ē¼“å­˜"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "é€‰ę‹©åæ½ē•„ēš„ę›“ę–°"
#~ msgid "Checking delta integrity"
#~ msgstr "ę­£åœØę£€ęŸ„å¢žé‡å®Œę•“ę€§"
#~ msgid "Applying deltas"
#~ msgstr "ę­£åœØåŗ”ē”Øå¢žé‡"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "ę­£åœØē”Ÿęˆ %s ļ¼ˆä½æē”Ø %s )"
#~ msgid "Generation succeeded"
#~ msgstr "ē”ŸęˆęˆåŠŸ"
#~ msgid "Generation failed"
#~ 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: 2017-11-11 23:01-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/"
@@ -240,27 +240,6 @@ msgstr "ę­£åœØęŖ¢ęŸ„č»Ÿé«”åŒ…å®Œę•“ę€§"
msgid "Loading packages files"
msgstr "ę­£åœØč¼‰å…„å„—ä»¶ęŖ”ę”ˆ"
#: ../src/transaction.vala
msgid "Checking delta integrity"
msgstr "ę­£åœØęŖ¢ęŸ„å¢žé‡åŒ…å®Œę•“ę€§"
#: ../src/transaction.vala
msgid "Applying deltas"
msgstr "ę­£åœØå„—ē”Øå¢žé‡åŒ…"
#: ../src/transaction.vala
#, c-format
msgid "Generating %s with %s"
msgstr "ę­£åœØē”Ÿęˆ %s (使用 %s)"
#: ../src/transaction.vala
msgid "Generation succeeded"
msgstr "ē”ŸęˆęˆåŠŸ"
#: ../src/transaction.vala
msgid "Generation failed"
msgstr "ē”Ÿęˆå¤±ę•—"
#: ../src/transaction.vala
#, c-format
msgid "Configuring %s"
@@ -348,10 +327,26 @@ msgstr "關閉(_C)"
msgid "Nothing to do"
msgstr "å·²ē„”äŗ‹åÆä½œ"
#: ../src/transaction.vala
msgid "Transaction successful"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction has been completed successfully"
msgstr ""
#: ../src/transaction.vala
msgid "Transaction successfully finished"
msgstr "äŗ‹å‹™č™•ē†ęˆåŠŸå®Œęˆ"
#: ../src/transaction.vala
msgid "Transaction failed"
msgstr ""
#: ../src/transaction.vala
msgid "The transaction failed and no packages have been updated/installed"
msgstr ""
#: ../src/pamac-install/installer.vala
msgid "Unable to lock database!"
msgstr ""
@@ -593,6 +588,10 @@ msgstr "ęÆå€‹č»Ÿé«”åŒ…č¦äæē•™åœØåæ«å–äø­ēš„ē‰ˆęœ¬ę•øé‡"
msgid "Build directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Package directory"
msgstr ""
#: ../src/preferences_dialog.vala
msgid "Worldwide"
msgstr "å…Øäø–ē•Œ"
@@ -781,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 "åƒ…ē§»é™¤ęœŖå®‰č£ēš„č»Ÿé«”åŒ…ē‰ˆęœ¬"
@@ -796,3 +799,19 @@ msgstr "åæ«å–"
#: ../data/interface/choose_ignorepkgs_dialog.ui
msgid "Choose Ignored Upgrades"
msgstr "éøå–å·²åæ½ē•„ēš„ę›“ę–°"
#~ msgid "Checking delta integrity"
#~ msgstr "ę­£åœØęŖ¢ęŸ„å¢žé‡åŒ…å®Œę•“ę€§"
#~ msgid "Applying deltas"
#~ msgstr "ę­£åœØå„—ē”Øå¢žé‡åŒ…"
#, c-format
#~ msgid "Generating %s with %s"
#~ msgstr "ę­£åœØē”Ÿęˆ %s (使用 %s)"
#~ msgid "Generation succeeded"
#~ msgstr "ē”ŸęˆęˆåŠŸ"
#~ msgid "Generation failed"
#~ msgstr "ē”Ÿęˆå¤±ę•—"

View File

@@ -1,6 +1,7 @@
posix
libnotify
atk
cairo
cairo-gobject
gdk-3.0
gdk-pixbuf-2.0
gio-2.0

View File

@@ -51,8 +51,6 @@ public class AlpmConfig {
string? dbpath;
string? logfile;
string? gpgdir;
string? arch;
double deltaratio;
int usesyslog;
public int checkspace;
GLib.List<string> cachedirs;
@@ -63,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;
@@ -94,9 +93,9 @@ 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;
deltaratio = 0.7;
siglevel = Alpm.Signature.Level.PACKAGE | Alpm.Signature.Level.PACKAGE_OPTIONAL | Alpm.Signature.Level.DATABASE | Alpm.Signature.Level.DATABASE_OPTIONAL;
localfilesiglevel = Alpm.Signature.Level.USE_DEFAULT;
remotefilesiglevel = Alpm.Signature.Level.USE_DEFAULT;
@@ -132,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);
}
}
@@ -173,8 +172,9 @@ public class AlpmConfig {
handle.logfile = logfile;
}
handle.gpgdir = gpgdir;
handle.arch = arch;
handle.deltaratio = deltaratio;
foreach (unowned string arch in architectures) {
handle.add_architecture (arch);
}
handle.usesyslog = usesyslog;
handle.checkspace = checkspace;
handle.defaultsiglevel = siglevel;
@@ -205,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;
@@ -275,13 +277,13 @@ 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 == "UseDelta") {
deltaratio = double.parse (val);
} else if (key == "UseSysLog") {
usesyslog = 1;
} else if (key == "CheckSpace") {

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

@@ -51,7 +51,7 @@ namespace Pamac {
}
public struct ErrorInfos {
public uint errno;
public uint errnos;
public string message;
public string[] details;
public ErrorInfos () {

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.0.0')
cfg_pamac.set('VERSION', '7.3.0')
cfg_pamac.set('TESTSRCDIR', meson.source_root())
cfgfile_1 = configure_file(
@@ -12,8 +12,9 @@ cfgfile_1 = configure_file(
output: 'Config.vala',
configuration: cfg_pamac)
pamac_deps = [atk_dep]
pamac_deps += [cairo_dep]
pamac_deps = [libnotify_dep]
pamac_deps += [atk_dep]
pamac_deps += [cairo_gobject_dep]
pamac_deps += [gdk_3_0_dep]
pamac_deps += [gdk_pixbuf_2_0_dep]
pamac_deps += [gio_2_0_dep]
@@ -64,18 +65,27 @@ pamac_deps += [meson.get_compiler('c').find_library('m', required : false)]
pamac_link_args = ['-rdynamic']
Pamac_library = shared_library('Pamac', pamac_sources,
vala_gir: 'Pamac-1.0.gir',
dependencies: pamac_deps,
vala_args: pamac_vala_args,
c_args: pamac_c_args,
link_args: pamac_link_args,
version: '7.0.0',
version: '7.3.0',
soversion: '7',
install: true,
install_dir: [true, true, true])
install_dir: [true, true, true, true])
g_ir_compiler = find_program('g-ir-compiler')
custom_target('Pamac typelib', command: [g_ir_compiler, '--shared-library=libPamac', '--output', '@OUTPUT@', join_paths(meson.current_build_dir(), 'Pamac-1.0.gir')],
output: 'Pamac-1.0.typelib',
depends: Pamac_library,
install: true,
install_dir: join_paths(get_option('libdir'), 'girepository-1.0'))
pamac_requires = []
pamac_requires += ['libnotify']
pamac_requires += ['atk']
pamac_requires += ['cairo']
pamac_requires += ['cairo-gobject']
pamac_requires += ['gdk-3.0']
pamac_requires += ['gdk-pixbuf-2.0']
pamac_requires += ['gio-2.0']
@@ -90,7 +100,7 @@ pamac_requires += ['vte-2.91']
pamac_requires += ['x11']
pkg_mod = import('pkgconfig')
pkg_mod.generate(libraries : Pamac_library,
version : '7.0.0',
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.0.0')
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.0.0')
cfg_pamac_install.set('VERSION', '7.3.0')
cfg_pamac_install.set('TESTSRCDIR', meson.source_root())
cfgfile_5 = configure_file(

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