Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
90ffcb5fd3 | |||
f545ec85d7 | |||
0a192c6f62 |
@@ -1,8 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
ENABLE_VARS="kde-tray|ON|KDE_TRAY update-desktop|ON|ENABLE_UPDATE_ICON"
|
||||
ENABLE_VARS="kde-tray|ON|KDE_TRAY update-desktop|ON|ENABLE_UPDATE_ICON hamburger|ON|ENABLE_HAMBURGER"
|
||||
ENABLE_KDE_TRAY_DOC="build with kde tray and appindicator instead of gtk3 tray"
|
||||
ENABLE_ENABLE_UPDATE_ICON_DOC="install the update desktop entry"
|
||||
ENABLE_ENABLE_HAMBURGER_DOC="build with the classic hamburger menu"
|
||||
DISABLE_VARS="aur|ON|DISABLE_AUR icon-update|OFF|ICON_UPDATE"
|
||||
DISABLE_DISABLE_AUR_DOC="disable the AUR in pamac"
|
||||
DISABLE_ICON_UPDATE_DOC="disable the update of the icon cache after installing"
|
||||
|
4
.gitignore
vendored
4
.gitignore
vendored
@@ -6,7 +6,3 @@ data/interface/#*#
|
||||
PKGBUILD
|
||||
*.pkg.tar.xz
|
||||
*.pkg.tar.xz.sig
|
||||
/build
|
||||
.bzrignore
|
||||
.hgignore
|
||||
data/local/
|
||||
|
@@ -10,6 +10,7 @@ option(ICON_UPDATE "Update the icon cache after installing" ON)
|
||||
option(BUILD_VALADOC "Build API documentation if Valadoc is available" OFF)
|
||||
option(DISABLE_AUR "DISABLE_AUR" OFF)
|
||||
option(ENABLE_UPDATE_ICON "ENABLE_UPDATE_ICON" OFF)
|
||||
option(ENABLE_HAMBURGER "ENABLE_HAMBURGER" OFF)
|
||||
option(KDE_TRAY "KDE_TRAY" OFF)
|
||||
|
||||
if( NOT CMAKE_BUILD_TYPE )
|
||||
|
12
README.md
12
README.md
@@ -32,7 +32,7 @@ A graphical package manager for pacman
|
||||
- appindicator-gtk3 (optional to build KDE tray icon)
|
||||
- CMake
|
||||
- Vala: 0.38
|
||||
- AutoVala: 1.1.2 (optional to regenerate CMake and Meson files)
|
||||
- AutoVala: 1.2.0 (optional to regenerate CMake and Meson files)
|
||||
|
||||
## Using CMake with GNU Make
|
||||
|
||||
@@ -44,6 +44,7 @@ cmake .. \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR=/etc
|
||||
make
|
||||
make install
|
||||
```
|
||||
### Extra build flags
|
||||
|
||||
@@ -51,6 +52,7 @@ make
|
||||
- -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
|
||||
|
||||
@@ -63,6 +65,7 @@ cmake .. \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR=/etc
|
||||
ninja
|
||||
ninja install
|
||||
```
|
||||
### Extra build flags
|
||||
|
||||
@@ -70,6 +73,7 @@ ninja
|
||||
- -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
|
||||
|
||||
@@ -80,6 +84,7 @@ meson \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc
|
||||
ninja
|
||||
ninja install
|
||||
```
|
||||
### Extra build flags
|
||||
|
||||
@@ -87,6 +92,7 @@ ninja
|
||||
- -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
|
||||
|
||||
@@ -97,6 +103,7 @@ The configure script is just a wrapper for CMake, in the background the build pr
|
||||
--libdir=/usr/lib \
|
||||
--sysconfdir=/etc
|
||||
make
|
||||
make install
|
||||
```
|
||||
|
||||
### Extra configure options
|
||||
@@ -104,4 +111,5 @@ make
|
||||
- --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)
|
||||
- --disable-icon-update (to disable updating the icon cache)
|
||||
- --enable-hamburger (to build with the classic hamburger menu)
|
@@ -8,5 +8,10 @@ make
|
||||
make clean
|
||||
popd
|
||||
|
||||
# Update the autovala environment
|
||||
autovala update
|
||||
# Update the autovala project file
|
||||
autovala refresh
|
||||
# Remove unused folders and files made by autovala
|
||||
rm -rf ./{install,packages,doc} ./data/{local,bash_completion} ./.hgignore ./.bzrignore
|
||||
# Generate the cmake and meson build files
|
||||
autovala cmake
|
||||
autovala meson
|
||||
|
@@ -88,6 +88,106 @@
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<object class="GtkPopoverMenu" id="popovermenu_global">
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="menu_box_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">6</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="refresh_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">Refresh databases</property>
|
||||
<signal name="clicked" handler="on_refresh_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="history_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">View History</property>
|
||||
<signal name="clicked" handler="on_history_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="local_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">Install Local Packages</property>
|
||||
<signal name="clicked" handler="on_local_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">2</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="preferences_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">Preferences</property>
|
||||
<signal name="clicked" handler="on_preferences_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">3</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="about_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">About</property>
|
||||
<signal name="clicked" handler="on_about_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">4</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkModelButton" id="quit_button_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">True</property>
|
||||
<property name="text" translatable="yes">Quit</property>
|
||||
<signal name="clicked" handler="on_quit_button_clicked" swapped="no"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">5</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="submenu">main</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<template class="PamacManagerWindow" parent="GtkApplicationWindow">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
@@ -1024,6 +1124,25 @@
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="show_close_button">True</property>
|
||||
<child>
|
||||
<object class="GtkMenuButton" id="button_menu_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="popover">popovermenu_global</property>
|
||||
<child>
|
||||
<object class="GtkImage" id="menu_icon_global">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="icon_name">system-software-install</property>
|
||||
<property name="icon_size">1</property>
|
||||
</object>
|
||||
</child>
|
||||
<style>
|
||||
<class name="image-button"/>
|
||||
</style>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkButton" id="button_back">
|
||||
<property name="visible">True</property>
|
||||
@@ -1043,6 +1162,9 @@
|
||||
<class name="image-button"/>
|
||||
</style>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child type="title">
|
||||
<object class="GtkStackSwitcher" id="filters_stackswitcher">
|
||||
@@ -1053,12 +1175,11 @@
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkMenuButton" id="menu_button">
|
||||
<object class="GtkMenuButton" id="button_menu">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
<property name="popover">popovermenu</property>
|
||||
<signal name="toggled" handler="on_menu_button_toggled" swapped="no"/>
|
||||
<child>
|
||||
<object class="GtkImage" id="menu_icon">
|
||||
<property name="visible">True</property>
|
||||
|
@@ -1,17 +1,4 @@
|
||||
### CMakeLists automatically created with AutoVala
|
||||
### Do not edit
|
||||
|
||||
IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/x-alpm-package.xml)
|
||||
install(DIRECTORY
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/x-alpm-package.xml
|
||||
DESTINATION
|
||||
/usr/share/mime/packages
|
||||
)
|
||||
ELSE()
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/x-alpm-package.xml
|
||||
DESTINATION
|
||||
/usr/share/mime/packages
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/x-alpm-package.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/mime/packages/)
|
||||
|
@@ -1,17 +1,4 @@
|
||||
### CMakeLists automatically created with AutoVala
|
||||
### Do not edit
|
||||
|
||||
IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.policy)
|
||||
install(DIRECTORY
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.policy
|
||||
DESTINATION
|
||||
/usr/share/polkit-1/actions
|
||||
)
|
||||
ELSE()
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.policy
|
||||
DESTINATION
|
||||
/usr/share/polkit-1/actions
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.policy DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/polkit-1/actions/)
|
||||
|
@@ -1,20 +0,0 @@
|
||||
### CMakeLists automatically created with AutoVala
|
||||
### Do not edit
|
||||
|
||||
file(GLOB list_data RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *)
|
||||
foreach(file_data ${list_data})
|
||||
IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${file_data})
|
||||
install(DIRECTORY
|
||||
${file_data}
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_DATAROOTDIR}/doc/pamac-classic
|
||||
)
|
||||
ELSE()
|
||||
install(FILES
|
||||
${file_data}
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_DATAROOTDIR}/doc/pamac-classic
|
||||
)
|
||||
ENDIF()
|
||||
endforeach()
|
||||
|
11
meson.build
11
meson.build
@@ -2,6 +2,7 @@ project('pamac-classic',['c','vala'])
|
||||
|
||||
DISABLE_AUR = (get_option('DISABLE_AUR') != '')
|
||||
ENABLE_UPDATE_ICON = (get_option('ENABLE_UPDATE_ICON') != '')
|
||||
ENABLE_HAMBURGER = (get_option('ENABLE_HAMBURGER') != '')
|
||||
KDE_TRAY = (get_option('KDE_TRAY') != '')
|
||||
|
||||
add_global_arguments('-DGETTEXT_PACKAGE="pamac-classic"',language: 'c')
|
||||
@@ -35,10 +36,6 @@ meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','
|
||||
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/lib/systemd/system',join_paths(meson.current_source_dir(),'data/systemd','pamac-mirrorlist.timer'))
|
||||
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/share/polkit-1/actions',join_paths(meson.current_source_dir(),'data/polkit','org.pamac.policy'))
|
||||
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/share/mime/packages',join_paths(meson.current_source_dir(),'data/mime','x-alpm-package.xml'))
|
||||
|
||||
if DISABLE_AUR
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/etc',join_paths(meson.current_source_dir(),'data/config/noaur','pamac.conf'))
|
||||
|
||||
@@ -58,10 +55,6 @@ pamac_transaction_gresource_xml_generator = generator(find_program('glib-compile
|
||||
|
||||
pamac_transaction_gresource_xml_file_c = pamac_transaction_gresource_xml_generator.process(['data/pamac.transaction.gresource.xml'])
|
||||
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),join_paths(get_option('prefix'),get_option('datadir'),'pamac-classic'),join_paths(meson.current_source_dir(),'data/local','','*'))
|
||||
|
||||
meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),join_paths(get_option('prefix'),get_option('datadir'),'doc'),join_paths(meson.current_source_dir(),'doc','','*'))
|
||||
|
||||
install_data('data/pamac-install.desktop',install_dir:join_paths(get_option('prefix'),get_option('datadir'),'applications'))
|
||||
install_data('data/pamac-manager.desktop',install_dir:join_paths(get_option('prefix'),get_option('datadir'),'applications'))
|
||||
if ENABLE_UPDATE_ICON
|
||||
@@ -90,6 +83,8 @@ install_data('data/icons/24x24/status/pamac-tray-no-update.png',install_dir: joi
|
||||
install_data('data/icons/24x24/status/pamac-tray-update.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'icons','hicolor/24x24/apps'))
|
||||
install_data('data/icons/32x32/apps/system-software-install.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'icons','hicolor/32x32/apps'))
|
||||
install_data('data/pixmaps/package-generic.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'pamac-classic'))
|
||||
install_data( 'data/polkit/org.pamac.policy',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'polkit-1','actions'))
|
||||
install_data( 'data/mime/x-alpm-package.xml',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'mime','packages'))
|
||||
subdir('src')
|
||||
subdir('src/pamac-user-daemon')
|
||||
subdir('src/pamac-tray')
|
||||
|
@@ -1,3 +1,4 @@
|
||||
option('DISABLE_AUR',type : 'string', value: '')
|
||||
option('ENABLE_UPDATE_ICON',type : 'string', value: '')
|
||||
option('ENABLE_HAMBURGER',type : 'string', value: '')
|
||||
option('KDE_TRAY',type : 'string', value: '')
|
||||
|
24
pamac.avprj
24
pamac.avprj
@@ -1,6 +1,7 @@
|
||||
### AutoVala Project ###
|
||||
autovala_version: 26
|
||||
autovala_version: 27
|
||||
project_name: pamac-classic
|
||||
project_version: 6.5.0
|
||||
vala_version: 0.38
|
||||
|
||||
custom: data/systemd/pamac-system.service /usr/lib/systemd/system
|
||||
@@ -8,8 +9,6 @@ custom: data/systemd/pamac-cleancache.service /usr/lib/systemd/system
|
||||
custom: data/systemd/pamac-cleancache.timer /usr/lib/systemd/system
|
||||
custom: data/systemd/pamac-mirrorlist.service /usr/lib/systemd/system
|
||||
custom: data/systemd/pamac-mirrorlist.timer /usr/lib/systemd/system
|
||||
custom: data/polkit/org.pamac.policy /usr/share/polkit-1/actions
|
||||
custom: data/mime/x-alpm-package.xml /usr/share/mime/packages
|
||||
if DISABLE_AUR
|
||||
custom: data/config/noaur/pamac.conf /etc
|
||||
else
|
||||
@@ -17,6 +16,7 @@ custom: data/config/pamac.conf /etc
|
||||
end
|
||||
|
||||
define: ENABLE_UPDATE_ICON
|
||||
define: ENABLE_HAMBURGER
|
||||
define: KDE_TRAY
|
||||
*define: DISABLE_AUR
|
||||
|
||||
@@ -27,7 +27,7 @@ define: KDE_TRAY
|
||||
vapidir: src/vapis
|
||||
|
||||
vala_binary: src/pamac-clean-cache/pamac-clean-cache
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@@ -39,7 +39,7 @@ vala_check_package: json-glib-1.0
|
||||
*vala_source: pamac_config.vala
|
||||
|
||||
vala_binary: src/pamac-install/pamac-install
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
use_gresource: pamac_installer_gresource_xml
|
||||
vala_local_package: pamacclassic
|
||||
vala_check_package: gtk+-3.0
|
||||
@@ -51,7 +51,7 @@ vala_check_package: json-glib-1.0
|
||||
*vala_source: progress_dialog.vala
|
||||
|
||||
vala_binary: src/pamac-manager/pamac-manager
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
alias: pamac-updater
|
||||
use_gresource: pamac_manager_gresource_xml
|
||||
vala_local_package: pamacclassic
|
||||
@@ -65,7 +65,7 @@ vala_check_package: json-glib-1.0
|
||||
*vala_source: manager_window.vala
|
||||
|
||||
vala_binary: src/pamac-system-daemon/pamac-system-daemon
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@@ -83,7 +83,7 @@ vala_check_package: polkit-gobject-1
|
||||
*vala_source: system_daemon.vala
|
||||
|
||||
vala_binary: src/pamac-tray/pamac-tray
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: json-glib-1.0
|
||||
@@ -107,7 +107,7 @@ end
|
||||
*vala_source: tray.vala
|
||||
|
||||
vala_binary: src/pamac-user-daemon/pamac-user-daemon
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@@ -122,7 +122,7 @@ vala_check_package: libsoup-2.4
|
||||
|
||||
|
||||
vala_library: src/pamac-classic
|
||||
version: 6.4.0
|
||||
*version: 6.5.0
|
||||
namespace: pamacclassic
|
||||
use_gresource: pamac_transaction_gresource_xml
|
||||
vala_package: posix
|
||||
@@ -222,3 +222,7 @@ end
|
||||
|
||||
*pixmap: data/pixmaps/package-generic.png
|
||||
|
||||
*polkit: data/polkit/org.pamac.policy
|
||||
|
||||
*mimetype: data/mime/x-alpm-package.xml
|
||||
|
||||
|
6
po/af.po
6
po/af.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/ar.po
6
po/ar.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -636,6 +636,10 @@ msgstr "Ų§ŁŲŖŁŲ¶ŁŁŲ§ŲŖ"
|
||||
msgid "About"
|
||||
msgstr "ŲŁŁ"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ŲØŲŲ«"
|
||||
|
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -622,6 +622,10 @@ msgstr "Preferencies"
|
||||
msgid "About"
|
||||
msgstr "Tocante a"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Guetar"
|
||||
|
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "TÉrcihlÉr"
|
||||
msgid "About"
|
||||
msgstr "Haqqında"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Axtarmaq"
|
||||
|
6
po/be.po
6
po/be.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -624,6 +624,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/bg.po
6
po/bg.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -623,6 +623,10 @@ msgstr "ŠŃŠµŠ“ŠæŠ¾ŃŠøŃаниŃ"
|
||||
msgid "About"
|
||||
msgstr "ŠŃŠ½Š¾ŃŠ½Š¾"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Š¢ŃŃŃŠµŠ½Šµ"
|
||||
|
6
po/bn.po
6
po/bn.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/bs.po
6
po/bs.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/ca.po
6
po/ca.po
@@ -17,7 +17,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "PreferĆØncies"
|
||||
msgid "About"
|
||||
msgstr "Quant a"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/cs.po
6
po/cs.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -626,6 +626,10 @@ msgstr "NastavenĆ"
|
||||
msgid "About"
|
||||
msgstr "O programu"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Vyhledat"
|
||||
|
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -623,6 +623,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/cy.po
6
po/cy.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -623,6 +623,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/da.po
6
po/da.po
@@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -627,6 +627,10 @@ msgstr "Indstillinger"
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "SĆøg"
|
||||
|
6
po/de.po
6
po/de.po
@@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\n"
|
||||
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
|
||||
"Last-Translator: philm <philm@manjaro.org>\n"
|
||||
"Language-Team: German (http://www.transifex.com/manjarolinux/manjaro-pamac/"
|
||||
@@ -634,6 +634,10 @@ msgstr "Einstellungen"
|
||||
msgid "About"
|
||||
msgstr "Ćber"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/el.po
6
po/el.po
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -628,6 +628,10 @@ msgstr "Ī ĻĪæĻιμήĻειĻ"
|
||||
msgid "About"
|
||||
msgstr "Ī£ĻεĻικά"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ĪναζήĻĪ·ĻĪ·"
|
||||
|
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -617,6 +617,10 @@ msgstr "Ī ĻĪæĻιμήĻειĻ"
|
||||
msgid "About"
|
||||
msgstr "Ī£ĻεĻικά"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ĪναζήĻĪ·ĻĪ·"
|
||||
|
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -619,6 +619,10 @@ msgstr "Preferences"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
6
po/eo.po
6
po/eo.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -620,6 +620,10 @@ msgstr "Preferoj"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ÅerÄi"
|
||||
|
6
po/es.po
6
po/es.po
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -628,6 +628,10 @@ msgstr "Preferencias"
|
||||
msgid "About"
|
||||
msgstr "Acerca de"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "BĆŗsqueda"
|
||||
|
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr "Preferencias"
|
||||
msgid "About"
|
||||
msgstr "Acera de"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/et.po
6
po/et.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -619,6 +619,10 @@ msgstr "SƤtted"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Otsi"
|
||||
|
6
po/eu.po
6
po/eu.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -621,6 +621,10 @@ msgstr "Hobespenak"
|
||||
msgid "About"
|
||||
msgstr "Honi buruz"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Bilatu"
|
||||
|
6
po/fa.po
6
po/fa.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Ų¬Ų³ŲŖŲ¬Ł"
|
||||
|
@@ -18,7 +18,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -623,6 +623,10 @@ msgstr "ŲŖŁŲøŪŁ
Ų§ŲŖ"
|
||||
msgid "About"
|
||||
msgstr "ŲÆŲ±ŲØŲ§Ų±Ł"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Ų¬Ų³ŲŖŲ¬Ł"
|
||||
|
6
po/fi.po
6
po/fi.po
@@ -17,7 +17,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "Asetukset"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Etsi"
|
||||
|
6
po/fo.po
6
po/fo.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -618,6 +618,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/fr.po
6
po/fr.po
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -629,6 +629,10 @@ msgstr "PrƩfƩrences"
|
||||
msgid "About"
|
||||
msgstr "Ć propos"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
6
po/gl.po
6
po/gl.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "Preferencias"
|
||||
msgid "About"
|
||||
msgstr "Acerca de"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
6
po/he.po
6
po/he.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr "××¢×פ××Ŗ"
|
||||
msgid "About"
|
||||
msgstr "×××××Ŗ"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "××פ×ש"
|
||||
|
6
po/hi.po
6
po/hi.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ą¤ą„ą¤"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/hr.po
6
po/hr.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "Postavke"
|
||||
msgid "About"
|
||||
msgstr "O programu"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Traži"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/hu.po
6
po/hu.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -621,6 +621,10 @@ msgstr "BeĆ”llĆtĆ”sok"
|
||||
msgid "About"
|
||||
msgstr "A Pamac-ról"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "KeresƩs"
|
||||
|
6
po/id.po
6
po/id.po
@@ -24,7 +24,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -629,6 +629,10 @@ msgstr "Preferensi"
|
||||
msgid "About"
|
||||
msgstr "Tentang"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
6
po/is.po
6
po/is.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -619,6 +619,10 @@ msgstr "Valkostir"
|
||||
msgid "About"
|
||||
msgstr "Um"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Leita"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/it.po
6
po/it.po
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -630,6 +630,10 @@ msgstr "Preferenze"
|
||||
msgid "About"
|
||||
msgstr "Informazioni"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/ja.po
6
po/ja.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "čØå®"
|
||||
msgid "About"
|
||||
msgstr "About"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ę¤ē“¢"
|
||||
|
6
po/ka.po
6
po/ka.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\n"
|
||||
"PO-Revision-Date: 2017-07-30 02:40+0000\n"
|
||||
"Last-Translator: philm <philm@manjaro.org>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/manjarolinux/manjaro-pamac/"
|
||||
@@ -615,6 +615,10 @@ msgstr "įįį įįįį¢į įįį"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/ko.po
6
po/ko.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/lt.po
6
po/lt.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\n"
|
||||
"PO-Revision-Date: 2017-07-30 15:15+0000\n"
|
||||
"Last-Translator: Moo\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/manjarolinux/manjaro-"
|
||||
@@ -623,6 +623,10 @@ msgstr "Nuostatos"
|
||||
msgid "About"
|
||||
msgstr "Apie"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "PaieŔka"
|
||||
|
6
po/ml.po
6
po/ml.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/ms.po
6
po/ms.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -614,6 +614,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
6
po/nb.po
6
po/nb.po
@@ -24,7 +24,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -634,6 +634,10 @@ msgstr "Valg"
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "SĆøk"
|
||||
|
6
po/nl.po
6
po/nl.po
@@ -23,7 +23,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -632,6 +632,10 @@ msgstr "Voorkeuren"
|
||||
msgid "About"
|
||||
msgstr "Over"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Zoek"
|
||||
|
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "Voorkeuren"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Zoek"
|
||||
|
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -622,6 +622,10 @@ msgstr "Voorkeuren"
|
||||
msgid "About"
|
||||
msgstr "Over"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
6
po/nn.po
6
po/nn.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-29 17:33-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 20:01-0300\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"
|
||||
@@ -615,6 +615,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/pl.po
6
po/pl.po
@@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -635,6 +635,10 @@ msgstr "Preferencje"
|
||||
msgid "About"
|
||||
msgstr "O programie"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Wyszukaj"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -624,6 +624,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/pt.po
6
po/pt.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -617,6 +617,10 @@ msgstr "PreferĆŖncias"
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
@@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -634,6 +634,10 @@ msgstr "PreferĆŖncias"
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
@@ -17,7 +17,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "PreferĆŖncias"
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
6
po/ro.po
6
po/ro.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "PreferinČe"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "CautÄ"
|
||||
|
6
po/ru.po
6
po/ru.po
@@ -27,7 +27,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -643,6 +643,10 @@ msgstr "ŠŠ°ŃŃŃŠ¾Š¹ŠŗŠø"
|
||||
msgid "About"
|
||||
msgstr "Š ŠæŃŠ¾Š³Ńамме"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ŠŠ¾ŠøŃŠŗ"
|
||||
|
6
po/si.po
6
po/si.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -618,6 +618,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/sk.po
6
po/sk.po
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -626,6 +626,10 @@ msgstr "Predvoľby"
|
||||
msgid "About"
|
||||
msgstr "O aplikƔcii"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "VyhľadÔvanie"
|
||||
|
6
po/sl.po
6
po/sl.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -630,6 +630,10 @@ msgstr "Nastavitve"
|
||||
msgid "About"
|
||||
msgstr "O programu Pamac"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "IÅ”Äi"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -623,6 +623,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/sr.po
6
po/sr.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -623,6 +623,10 @@ msgstr "ŠŠ¾Š“ŠµŃŠ°Š²Š°Ńа"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ŠŃеŃŃŠ°Š³Š°"
|
||||
|
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -626,6 +626,10 @@ msgstr "PodeŔavanja"
|
||||
msgid "About"
|
||||
msgstr "O"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Pretraži"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -620,6 +620,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
6
po/sv.po
6
po/sv.po
@@ -17,7 +17,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -625,6 +625,10 @@ msgstr "InstƤllningar"
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Sƶk"
|
||||
|
6
po/tr.po
6
po/tr.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -623,6 +623,10 @@ msgstr "Tercihler"
|
||||
msgid "About"
|
||||
msgstr "Hakkında"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Ara"
|
||||
|
6
po/uk.po
6
po/uk.po
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -632,6 +632,10 @@ msgstr "ŠŠ°Š»Š°ŃŃŃŠ²Š°Š½Š½Ń"
|
||||
msgid "About"
|
||||
msgstr "ŠŃо ŠæŃогŃамŃ"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ŠŠ¾ŃŃŠŗ"
|
||||
|
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "ŲŖŲ±Ų¬ŪŲŲ§ŲŖ"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ŲŖŁŲ§Ų“ Ś©Ų±ŪŚŗ"
|
||||
|
6
po/uz.po
6
po/uz.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "Haqida"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "Qidirish"
|
||||
|
6
po/vi.po
6
po/vi.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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-"
|
||||
@@ -616,6 +616,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "TƬm"
|
||||
|
6
po/zh.po
6
po/zh.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -613,6 +613,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -619,6 +619,10 @@ msgstr "é¦é锹"
|
||||
msgid "About"
|
||||
msgstr "å
³äŗ"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ęē“¢"
|
||||
|
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manjaro-pamac\n"
|
||||
"Report-Msgid-Bugs-To: cromer@cromnix.org\n"
|
||||
"POT-Creation-Date: 2017-10-27 17:56-0300\n"
|
||||
"POT-Creation-Date: 2017-11-01 18:29-0300\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/"
|
||||
@@ -617,6 +617,10 @@ msgstr "å儽čØå®"
|
||||
msgid "About"
|
||||
msgstr "éę¼"
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: ../data/interface/manager_window.ui
|
||||
msgid "Search"
|
||||
msgstr "ęå°"
|
||||
|
@@ -7,7 +7,7 @@ set (GETTEXT_PACKAGE "pamac-classic")
|
||||
set (RELEASE_NAME "pamac-classic")
|
||||
set (CMAKE_C_FLAGS "")
|
||||
set (PREFIX ${CMAKE_INSTALL_PREFIX})
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
set (TESTSRCDIR "${CMAKE_SOURCE_DIR}")
|
||||
set (DOLLAR "$")
|
||||
|
||||
@@ -15,7 +15,7 @@ configure_file (${CMAKE_SOURCE_DIR}/src/Config.vala.base ${CMAKE_BINARY_DIR}/src
|
||||
add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\")
|
||||
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/pamacclassic.pc ${CMAKE_CURRENT_BINARY_DIR}/pamacclassic.pc)
|
||||
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/pamacclassic.deps ${CMAKE_CURRENT_BINARY_DIR}/pamacclassic.deps)
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
add_definitions (${DEPS_CFLAGS})
|
||||
link_libraries ( ${DEPS_LIBRARIES} )
|
||||
link_directories ( ${DEPS_LIBRARY_DIRS} )
|
||||
@@ -62,6 +62,11 @@ if (ENABLE_UPDATE_ICON)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
endif ()
|
||||
if (ENABLE_HAMBURGER)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_HAMBURGER)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_HAMBURGER " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_HAMBURGER " )
|
||||
endif ()
|
||||
if (KDE_TRAY)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D KDE_TRAY)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " )
|
||||
@@ -96,7 +101,7 @@ add_dependencies( pamacclassic ${pamacclassic_DEPENDENCIES} )
|
||||
target_link_libraries( pamacclassic m )
|
||||
set_target_properties( pamacclassic PROPERTIES
|
||||
VERSION
|
||||
6.4.0
|
||||
6.5.0
|
||||
SOVERSION
|
||||
6 )
|
||||
|
||||
|
@@ -4,7 +4,7 @@ cfg_pamac_classic.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('
|
||||
cfg_pamac_classic.set('GETTEXT_PACKAGE', 'pamac-classic')
|
||||
cfg_pamac_classic.set('RELEASE_NAME', 'pamac-classic')
|
||||
cfg_pamac_classic.set('PREFIX', get_option('prefix'))
|
||||
cfg_pamac_classic.set('VERSION', '6.4.0')
|
||||
cfg_pamac_classic.set('VERSION', '6.5.0')
|
||||
cfg_pamac_classic.set('TESTSRCDIR', meson.source_root())
|
||||
|
||||
cfgfile_1 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_classic)
|
||||
@@ -47,6 +47,10 @@ if ENABLE_UPDATE_ICON
|
||||
pamac_classic_vala_args += ['-D', 'ENABLE_UPDATE_ICON']
|
||||
pamac_classic_c_args += ['-DENABLE_UPDATE_ICON']
|
||||
endif
|
||||
if ENABLE_HAMBURGER
|
||||
pamac_classic_vala_args += ['-D', 'ENABLE_HAMBURGER']
|
||||
pamac_classic_c_args += ['-DENABLE_HAMBURGER']
|
||||
endif
|
||||
if KDE_TRAY
|
||||
pamac_classic_vala_args += ['-D', 'KDE_TRAY']
|
||||
pamac_classic_c_args += ['-DKDE_TRAY']
|
||||
@@ -55,7 +59,7 @@ pamac_classic_deps += [meson.get_compiler('c').find_library('m', required : fals
|
||||
pamac_classic_vala_args += ['--gir=pamacclassic-6.0.gir']
|
||||
|
||||
|
||||
pamacclassic_library = shared_library('pamacclassic',pamac_classic_sources,dependencies: pamac_classic_deps,vala_args: pamac_classic_vala_args,c_args: pamac_classic_c_args,version: '6.4.0',soversion: '6',install: true)
|
||||
pamacclassic_library = shared_library('pamacclassic',pamac_classic_sources,dependencies: pamac_classic_deps,vala_args: pamac_classic_vala_args,c_args: pamac_classic_c_args,version: '6.5.0',soversion: '6',install: true)
|
||||
|
||||
pamac_classic_requires = []
|
||||
pamac_classic_requires += ['gdk-3.0']
|
||||
@@ -70,7 +74,7 @@ pamac_classic_requires += ['glib-2.0']
|
||||
pamac_classic_requires += ['gobject-2.0']
|
||||
pkg_mod = import('pkgconfig')
|
||||
pkg_mod.generate(libraries : pamacclassic_library,
|
||||
version : '6.4.0',
|
||||
version : '6.5.0',
|
||||
name : 'pamacclassic',
|
||||
filebase : 'pamacclassic',
|
||||
description : 'pamacclassic',
|
||||
|
@@ -7,13 +7,13 @@ set (GETTEXT_PACKAGE "pamac-classic")
|
||||
set (RELEASE_NAME "pamac-classic")
|
||||
set (CMAKE_C_FLAGS "")
|
||||
set (PREFIX ${CMAKE_INSTALL_PREFIX})
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
set (TESTSRCDIR "${CMAKE_SOURCE_DIR}")
|
||||
set (DOLLAR "$")
|
||||
|
||||
configure_file (${CMAKE_SOURCE_DIR}/src/pamac-clean-cache/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-clean-cache/Config.vala)
|
||||
add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\")
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
add_definitions (${DEPS_CFLAGS})
|
||||
include_directories ( ${CMAKE_BINARY_DIR}/src )
|
||||
link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic )
|
||||
@@ -46,6 +46,11 @@ if (ENABLE_UPDATE_ICON)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
endif ()
|
||||
if (ENABLE_HAMBURGER)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_HAMBURGER)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_HAMBURGER " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_HAMBURGER " )
|
||||
endif ()
|
||||
if (KDE_TRAY)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D KDE_TRAY)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " )
|
||||
|
@@ -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-classic')
|
||||
cfg_pamac_clean_cache.set('RELEASE_NAME', 'pamac-classic')
|
||||
cfg_pamac_clean_cache.set('PREFIX', get_option('prefix'))
|
||||
cfg_pamac_clean_cache.set('VERSION', '6.4.0')
|
||||
cfg_pamac_clean_cache.set('VERSION', '6.5.0')
|
||||
cfg_pamac_clean_cache.set('TESTSRCDIR', meson.source_root())
|
||||
|
||||
cfgfile_4 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_clean_cache)
|
||||
@@ -29,6 +29,10 @@ if ENABLE_UPDATE_ICON
|
||||
pamac_clean_cache_vala_args += ['-D', 'ENABLE_UPDATE_ICON']
|
||||
pamac_clean_cache_c_args += ['-DENABLE_UPDATE_ICON']
|
||||
endif
|
||||
if ENABLE_HAMBURGER
|
||||
pamac_clean_cache_vala_args += ['-D', 'ENABLE_HAMBURGER']
|
||||
pamac_clean_cache_c_args += ['-DENABLE_HAMBURGER']
|
||||
endif
|
||||
if KDE_TRAY
|
||||
pamac_clean_cache_vala_args += ['-D', 'KDE_TRAY']
|
||||
pamac_clean_cache_c_args += ['-DKDE_TRAY']
|
||||
|
@@ -7,13 +7,13 @@ set (GETTEXT_PACKAGE "pamac-classic")
|
||||
set (RELEASE_NAME "pamac-classic")
|
||||
set (CMAKE_C_FLAGS "")
|
||||
set (PREFIX ${CMAKE_INSTALL_PREFIX})
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
set (TESTSRCDIR "${CMAKE_SOURCE_DIR}")
|
||||
set (DOLLAR "$")
|
||||
|
||||
configure_file (${CMAKE_SOURCE_DIR}/src/pamac-install/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-install/Config.vala)
|
||||
add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\")
|
||||
set (VERSION "6.4.0")
|
||||
set (VERSION "6.5.0")
|
||||
add_definitions (${DEPS_CFLAGS})
|
||||
include_directories ( ${CMAKE_BINARY_DIR}/src )
|
||||
link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic )
|
||||
@@ -45,6 +45,11 @@ if (ENABLE_UPDATE_ICON)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_UPDATE_ICON " )
|
||||
endif ()
|
||||
if (ENABLE_HAMBURGER)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_HAMBURGER)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_HAMBURGER " )
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DENABLE_HAMBURGER " )
|
||||
endif ()
|
||||
if (KDE_TRAY)
|
||||
set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D KDE_TRAY)
|
||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " )
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user