forked from cromer/pamac-classic
add global menu
This commit is contained in:
parent
f545ec85d7
commit
90ffcb5fd3
@ -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"
|
||||
|
@ -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 )
|
||||
|
@ -52,6 +52,7 @@ make 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 CMake with Ninja
|
||||
|
||||
@ -72,6 +73,7 @@ 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 Meson with Ninja
|
||||
|
||||
@ -90,6 +92,7 @@ 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
|
||||
|
||||
@ -109,3 +112,4 @@ make install
|
||||
- --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)
|
@ -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>
|
||||
|
@ -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')
|
||||
|
@ -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: '')
|
||||
|
17
pamac.avprj
17
pamac.avprj
@ -1,7 +1,7 @@
|
||||
### AutoVala Project ###
|
||||
autovala_version: 27
|
||||
project_name: pamac-classic
|
||||
project_version: 6.4.1
|
||||
project_version: 6.5.0
|
||||
vala_version: 0.38
|
||||
|
||||
custom: data/systemd/pamac-system.service /usr/lib/systemd/system
|
||||
@ -16,6 +16,7 @@ custom: data/config/pamac.conf /etc
|
||||
end
|
||||
|
||||
define: ENABLE_UPDATE_ICON
|
||||
define: ENABLE_HAMBURGER
|
||||
define: KDE_TRAY
|
||||
*define: DISABLE_AUR
|
||||
|
||||
@ -26,7 +27,7 @@ define: KDE_TRAY
|
||||
vapidir: src/vapis
|
||||
|
||||
vala_binary: src/pamac-clean-cache/pamac-clean-cache
|
||||
*version: 6.4.1
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@ -38,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.1
|
||||
*version: 6.5.0
|
||||
use_gresource: pamac_installer_gresource_xml
|
||||
vala_local_package: pamacclassic
|
||||
vala_check_package: gtk+-3.0
|
||||
@ -50,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.1
|
||||
*version: 6.5.0
|
||||
alias: pamac-updater
|
||||
use_gresource: pamac_manager_gresource_xml
|
||||
vala_local_package: pamacclassic
|
||||
@ -64,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.1
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@ -82,7 +83,7 @@ vala_check_package: polkit-gobject-1
|
||||
*vala_source: system_daemon.vala
|
||||
|
||||
vala_binary: src/pamac-tray/pamac-tray
|
||||
*version: 6.4.1
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: json-glib-1.0
|
||||
@ -106,7 +107,7 @@ end
|
||||
*vala_source: tray.vala
|
||||
|
||||
vala_binary: src/pamac-user-daemon/pamac-user-daemon
|
||||
*version: 6.4.1
|
||||
*version: 6.5.0
|
||||
vala_local_package: pamacclassic
|
||||
vala_package: posix
|
||||
vala_check_package: gtk+-3.0
|
||||
@ -121,7 +122,7 @@ vala_check_package: libsoup-2.4
|
||||
|
||||
|
||||
vala_library: src/pamac-classic
|
||||
*version: 6.4.1
|
||||
*version: 6.5.0
|
||||
namespace: pamacclassic
|
||||
use_gresource: pamac_transaction_gresource_xml
|
||||
vala_package: posix
|
||||
|
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-30 20:11-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.1")
|
||||
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.1")
|
||||
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.1
|
||||
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.1')
|
||||
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.1',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.1',
|
||||
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.1")
|
||||
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.1")
|
||||
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.1')
|
||||
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.1")
|
||||
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.1")
|
||||
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 " )
|
||||
|
@ -4,7 +4,7 @@ cfg_pamac_install.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('
|
||||
cfg_pamac_install.set('GETTEXT_PACKAGE', 'pamac-classic')
|
||||
cfg_pamac_install.set('RELEASE_NAME', 'pamac-classic')
|
||||
cfg_pamac_install.set('PREFIX', get_option('prefix'))
|
||||
cfg_pamac_install.set('VERSION', '6.4.1')
|
||||
cfg_pamac_install.set('VERSION', '6.5.0')
|
||||
cfg_pamac_install.set('TESTSRCDIR', meson.source_root())
|
||||
|
||||
cfgfile_5 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_install)
|
||||
@ -30,6 +30,10 @@ if ENABLE_UPDATE_ICON
|
||||
pamac_install_vala_args += ['-D', 'ENABLE_UPDATE_ICON']
|
||||
pamac_install_c_args += ['-DENABLE_UPDATE_ICON']
|
||||
endif
|
||||
if ENABLE_HAMBURGER
|
||||
pamac_install_vala_args += ['-D', 'ENABLE_HAMBURGER']
|
||||
pamac_install_c_args += ['-DENABLE_HAMBURGER']
|
||||
endif
|
||||
if KDE_TRAY
|
||||
pamac_install_vala_args += ['-D', 'KDE_TRAY']
|
||||
pamac_install_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.1")
|
||||
set (VERSION "6.5.0")
|
||||
set (TESTSRCDIR "${CMAKE_SOURCE_DIR}")
|
||||
set (DOLLAR "$")
|
||||
|
||||
configure_file (${CMAKE_SOURCE_DIR}/src/pamac-manager/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-manager/Config.vala)
|
||||
add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\")
|
||||
set (VERSION "6.4.1")
|
||||
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 " )
|
||||
|
@ -20,6 +20,8 @@
|
||||
|
||||
//using GIO
|
||||
|
||||
extern void exit(int exit_code);
|
||||
|
||||
const string VERSION = Constants.VERSION;
|
||||
|
||||
namespace Pamac {
|
||||
@ -39,7 +41,6 @@ namespace Pamac {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[GtkTemplate (ui = "/org/pamac/manager/interface/manager_window.ui")]
|
||||
class ManagerWindow : Gtk.ApplicationWindow {
|
||||
// icons
|
||||
@ -57,8 +58,19 @@ namespace Pamac {
|
||||
public Gtk.Stack main_stack;
|
||||
[GtkChild]
|
||||
Gtk.Button button_back;
|
||||
[GtkChild]
|
||||
Gtk.HeaderBar headerbar;
|
||||
[GtkChild]
|
||||
Gtk.MenuButton button_menu_global;
|
||||
[GtkChild]
|
||||
Gtk.MenuButton button_menu;
|
||||
#if ENABLE_HAMBURGER
|
||||
[GtkChild]
|
||||
Gtk.ModelButton preferences_button;
|
||||
#else
|
||||
[GtkChild]
|
||||
Gtk.ModelButton preferences_button_global;
|
||||
#endif
|
||||
[GtkChild]
|
||||
Gtk.TreeView packages_treeview;
|
||||
[GtkChild]
|
||||
@ -170,6 +182,14 @@ namespace Pamac {
|
||||
public ManagerWindow (Gtk.Application application) {
|
||||
Object (application: application);
|
||||
|
||||
#if ENABLE_HAMBURGER
|
||||
headerbar.remove(button_menu_global);
|
||||
button_menu.toggled.connect (on_menu_button_toggled);
|
||||
#else
|
||||
headerbar.remove(button_menu);
|
||||
button_menu_global.toggled.connect (on_menu_button_toggled);
|
||||
#endif
|
||||
|
||||
#if DISABLE_AUR
|
||||
packages_stack.remove (aur_scrolledwindow);
|
||||
packages_stackswitcher.visible = false;
|
||||
@ -1844,9 +1864,13 @@ namespace Pamac {
|
||||
refresh_packages_list ();
|
||||
}
|
||||
|
||||
[GtkCallback]
|
||||
|
||||
void on_menu_button_toggled () {
|
||||
#if ENABLE_HAMBURGER
|
||||
preferences_button.sensitive = !(transaction_running || sysupgrade_running);
|
||||
#else
|
||||
preferences_button_global.sensitive = !(transaction_running || sysupgrade_running);
|
||||
#endif
|
||||
}
|
||||
|
||||
[GtkCallback]
|
||||
@ -1951,6 +1975,16 @@ namespace Pamac {
|
||||
"website", "http://github.com/cromnix/pamac-classic");
|
||||
}
|
||||
|
||||
[GtkCallback]
|
||||
void on_quit_button_clicked () {
|
||||
//Gtk.main_quit ();
|
||||
this.quit();
|
||||
}
|
||||
|
||||
void quit() {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
[GtkCallback]
|
||||
void on_details_button_clicked () {
|
||||
important_details = false;
|
||||
|
@ -4,7 +4,7 @@ cfg_pamac_manager.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('
|
||||
cfg_pamac_manager.set('GETTEXT_PACKAGE', 'pamac-classic')
|
||||
cfg_pamac_manager.set('RELEASE_NAME', 'pamac-classic')
|
||||
cfg_pamac_manager.set('PREFIX', get_option('prefix'))
|
||||
cfg_pamac_manager.set('VERSION', '6.4.1')
|
||||
cfg_pamac_manager.set('VERSION', '6.5.0')
|
||||
cfg_pamac_manager.set('TESTSRCDIR', meson.source_root())
|
||||
|
||||
cfgfile_6 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_manager)
|
||||
@ -31,6 +31,10 @@ if ENABLE_UPDATE_ICON
|
||||
pamac_manager_vala_args += ['-D', 'ENABLE_UPDATE_ICON']
|
||||
pamac_manager_c_args += ['-DENABLE_UPDATE_ICON']
|
||||
endif
|
||||
if ENABLE_HAMBURGER
|
||||
pamac_manager_vala_args += ['-D', 'ENABLE_HAMBURGER']
|
||||
pamac_manager_c_args += ['-DENABLE_HAMBURGER']
|
||||
endif
|
||||
if KDE_TRAY
|
||||
pamac_manager_vala_args += ['-D', 'KDE_TRAY']
|
||||
pamac_manager_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.1")
|
||||
set (VERSION "6.5.0")
|
||||
set (TESTSRCDIR "${CMAKE_SOURCE_DIR}")
|
||||
set (DOLLAR "$")
|
||||
|
||||
configure_file (${CMAKE_SOURCE_DIR}/src/pamac-system-daemon/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-system-daemon/Config.vala)
|
||||
add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\")
|
||||
set (VERSION "6.4.1")
|
||||
set (VERSION "6.5.0")
|
||||
add_definitions (${DEPS_CFLAGS})
|
||||
include_directories ( ${CMAKE_BINARY_DIR}/src )
|
||||
link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic )
|
||||
@ -52,6 +52,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
Loading…
Reference in New Issue
Block a user