From 00f4092ee43f62b64a507f9f83730064073015b0 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Fri, 10 Nov 2017 22:36:50 -0300 Subject: [PATCH 1/7] change config to gsettings --- CMakeLists.txt | 3 +- data/config/CMakeLists.txt | 19 -- data/config/noaur/CMakeLists.txt | 19 -- data/config/noaur/pamac.conf | 26 -- data/config/pamac.conf | 41 --- data/schemas/CMakeLists.txt | 33 +++ data/schemas/org.pamac.aur.gschema.xml | 37 +++ data/schemas/org.pamac.main.gschema.xml | 69 +++++ meson.build | 7 +- pamac.avprj | 24 +- po/pamac.pot | 2 +- src/CMakeLists.txt | 6 +- src/meson.build | 6 +- src/pamac-clean-cache/CMakeLists.txt | 5 +- src/pamac-clean-cache/clean_cache.vala | 2 +- src/pamac-clean-cache/meson.build | 3 +- src/pamac-install/CMakeLists.txt | 4 +- src/pamac-install/meson.build | 2 +- src/pamac-manager/CMakeLists.txt | 4 +- src/pamac-manager/manager_window.vala | 8 +- src/pamac-manager/meson.build | 2 +- src/pamac-system-daemon/CMakeLists.txt | 4 +- src/pamac-system-daemon/meson.build | 2 +- src/pamac-system-daemon/system_daemon.vala | 20 +- src/pamac-tray/CMakeLists.txt | 4 +- src/pamac-tray/meson.build | 2 +- src/pamac-tray/tray-appindicator.vala | 8 + src/pamac-tray/tray-gtk.vala | 4 + src/pamac-tray/tray.vala | 31 ++- src/pamac-user-daemon/CMakeLists.txt | 4 +- src/pamac-user-daemon/meson.build | 2 +- src/pamac_config.vala | 302 ++------------------- src/pamacclassic.pc | 2 +- src/preferences_dialog.vala | 130 ++++----- src/transaction.vala | 55 ++-- 35 files changed, 347 insertions(+), 545 deletions(-) delete mode 100644 data/config/CMakeLists.txt delete mode 100644 data/config/noaur/CMakeLists.txt delete mode 100644 data/config/noaur/pamac.conf delete mode 100644 data/config/pamac.conf create mode 100644 data/schemas/CMakeLists.txt create mode 100644 data/schemas/org.pamac.aur.gschema.xml create mode 100644 data/schemas/org.pamac.main.gschema.xml diff --git a/CMakeLists.txt b/CMakeLists.txt index ff8991a..0252e40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,17 +61,16 @@ if ( NOT WHERE_GRESOURCE ) endif() add_subdirectory(src/vapis) +add_subdirectory(data/schemas) add_subdirectory(po) add_subdirectory(data/pixmaps) add_subdirectory(data/mime) add_subdirectory(data/polkit) add_subdirectory(data/systemd) -add_subdirectory(data/config) add_subdirectory(data) add_subdirectory(data/dbus) add_subdirectory(data/icons/24x24/status) add_subdirectory(data/icons/16x16/apps) -add_subdirectory(data/config/noaur) add_subdirectory(data/icons/32x32/apps) add_subdirectory(data/interface) add_subdirectory(src) diff --git a/data/config/CMakeLists.txt b/data/config/CMakeLists.txt deleted file mode 100644 index 23cf845..0000000 --- a/data/config/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -### CMakeLists automatically created with AutoVala -### Do not edit - -if (NOT(DISABLE_AUR)) - IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf) - install(DIRECTORY - ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf - DESTINATION - /etc - ) -ELSE() - install(FILES - ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf - DESTINATION - /etc - ) -ENDIF() - -endif () diff --git a/data/config/noaur/CMakeLists.txt b/data/config/noaur/CMakeLists.txt deleted file mode 100644 index 43039ab..0000000 --- a/data/config/noaur/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -### CMakeLists automatically created with AutoVala -### Do not edit - -if (DISABLE_AUR) - IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf) - install(DIRECTORY - ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf - DESTINATION - /etc - ) -ELSE() - install(FILES - ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf - DESTINATION - /etc - ) -ENDIF() - -endif () diff --git a/data/config/noaur/pamac.conf b/data/config/noaur/pamac.conf deleted file mode 100644 index 7ae75ca..0000000 --- a/data/config/noaur/pamac.conf +++ /dev/null @@ -1,26 +0,0 @@ -### Pamac configuration file - -## When removing a package, also remove those dependencies -## that are not required by other packages (recurse option): -#RemoveUnrequiredDeps - -## How often to check for updates, value in hours (0 to disable): -RefreshPeriod = 6 - -## When there are no updates available, hide the tray icon: -#NoUpdateHideIcon - -## Number of versions of each package to keep in the cache: -KeepNumPackages = 3 - -## Remove only the versions of uninstalled packages when clean cache: -#OnlyRmUninstalled - -## Terminal background color -BackgroundColor = rgb(0,0,0) - -## Terminal foreground color -ForegroundColor = rgb(255,255,255) - -## The font used in the terminal -TerminalFont = Monospace Regular 12 diff --git a/data/config/pamac.conf b/data/config/pamac.conf deleted file mode 100644 index 7e58b6b..0000000 --- a/data/config/pamac.conf +++ /dev/null @@ -1,41 +0,0 @@ -### Pamac configuration file - -## When removing a package, also remove those dependencies -## that are not required by other packages (recurse option): -#RemoveUnrequiredDeps - -## How often to check for updates, value in hours (0 to disable): -RefreshPeriod = 6 - -## When there are no updates available, hide the tray icon: -#NoUpdateHideIcon - -## Allow Pamac to search and install packages from AUR: -#EnableAUR - -## When AUR support is enabled search in AUR by default: -#SearchInAURByDefault - -## When AUR support is enabled check for updates from AUR: -#CheckAURUpdates - -## AUR build directory: -BuildDirectory = /tmp - -## Do not ask for confirmation when building packages: -#NoConfirmBuild - -## Number of versions of each package to keep in the cache: -KeepNumPackages = 3 - -## Remove only the versions of uninstalled packages when clean cache: -#OnlyRmUninstalled - -## Terminal background color -BackgroundColor = rgb(0,0,0) - -## Terminal foreground color -ForegroundColor = rgb(255,255,255) - -## The font used in the terminal -TerminalFont = Monospace Regular 12 diff --git a/data/schemas/CMakeLists.txt b/data/schemas/CMakeLists.txt new file mode 100644 index 0000000..3590f79 --- /dev/null +++ b/data/schemas/CMakeLists.txt @@ -0,0 +1,33 @@ +### CMakeLists automatically created with AutoVala +### Do not edit + +IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml) + install(DIRECTORY + ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml + DESTINATION + /usr/share/glib-2.0/schemas + ) +ELSE() + install(FILES + ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml + DESTINATION + /usr/share/glib-2.0/schemas + ) +ENDIF() + +if (NOT DISABLE_AUR) + IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml) + install(DIRECTORY + ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml + DESTINATION + /usr/share/glib-2.0/schemas + ) +ELSE() + install(FILES + ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml + DESTINATION + /usr/share/glib-2.0/schemas + ) +ENDIF() + +endif () diff --git a/data/schemas/org.pamac.aur.gschema.xml b/data/schemas/org.pamac.aur.gschema.xml new file mode 100644 index 0000000..8956daf --- /dev/null +++ b/data/schemas/org.pamac.aur.gschema.xml @@ -0,0 +1,37 @@ + + + + + false + Enable AUR + + Allow Pamac to search and install packages from AUR + + + + + true + Search in AUR by default + + When AUR support is enabled search in AUR by default + + + + + false + Check AUR for updates + + When AUR support is enabled check for updates from AUR + + + + + "/tmp" + AUR build directory + + Directory where to build packages that come from the AUR + + + + + diff --git a/data/schemas/org.pamac.main.gschema.xml b/data/schemas/org.pamac.main.gschema.xml new file mode 100644 index 0000000..b82f8c0 --- /dev/null +++ b/data/schemas/org.pamac.main.gschema.xml @@ -0,0 +1,69 @@ + + + + + false + Remove unrequired dependencies + + When removing a package, also remove those dependencies that are not required by other packages (recurse option) + + + + + 6 + Refresh period + + How often to check for updates, value in hours (0 to disable) + + + + + true + Hide icon if there are no updates + + When there are no updates available, hide the tray icon + + + + + 3 + Numer of packages to keep + + Number of versions of each package to keep in the cache + + + + + false + Remove only uninstalled packages when cleaning cache + + Remove only the versions of uninstalled packages when clean cache + + + + + "rgb(0,0,0)" + Terminal background color + + Terminal background color + + + + + "rgb(255,255,255)" + Terminal foreground color + + Terminal foreground color + + + + + "Monospace Regular 12" + Terminal font + + The font used in the terminal + + + + + diff --git a/meson.build b/meson.build index f63acb7..b40833d 100644 --- a/meson.build +++ b/meson.build @@ -36,11 +36,10 @@ 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')) -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')) +meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/share/glib-2.0/schemas',join_paths(meson.current_source_dir(),'data/schemas','org.pamac.main.gschema.xml')) -else - meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/etc',join_paths(meson.current_source_dir(),'data/config','pamac.conf')) +if not DISABLE_AUR + meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/share/glib-2.0/schemas',join_paths(meson.current_source_dir(),'data/schemas','org.pamac.aur.gschema.xml')) endif pamac_installer_gresource_xml_generator = generator(find_program('glib-compile-resources'), arguments: [ '--sourcedir=@SOURCE_DIR@/data' , '--generate-source', '--target=@BUILD_DIR@/pamac.installer.gresource.xml.c', '@INPUT@'], output: '@PLAINNAME@.c') diff --git a/pamac.avprj b/pamac.avprj index 2a7dd05..34ac185 100644 --- a/pamac.avprj +++ b/pamac.avprj @@ -1,7 +1,7 @@ ### AutoVala Project ### autovala_version: 27 project_name: pamac-classic -project_version: 6.5.2 +project_version: 6.6.0 vala_version: 0.38 custom: data/systemd/pamac-system.service /usr/lib/systemd/system @@ -9,10 +9,9 @@ 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 -if DISABLE_AUR -custom: data/config/noaur/pamac.conf /etc -else -custom: data/config/pamac.conf /etc +custom: data/schemas/org.pamac.main.gschema.xml /usr/share/glib-2.0/schemas +if NOT DISABLE_AUR +custom: data/schemas/org.pamac.aur.gschema.xml /usr/share/glib-2.0/schemas end define: ENABLE_UPDATE_ICON @@ -27,19 +26,18 @@ define: KDE_TRAY vapidir: src/vapis vala_binary: src/pamac-clean-cache/pamac-clean-cache -*version: 6.5.2 +*version: 6.6.0 vala_local_package: pamacclassic vala_package: posix vala_check_package: gtk+-3.0 vala_check_package: json-glib-1.0 -*vala_check_package: gio-2.0 *vala_check_package: glib-2.0 *vala_check_package: gobject-2.0 *vala_source: clean_cache.vala *vala_source: pamac_config.vala vala_binary: src/pamac-install/pamac-install -*version: 6.5.2 +*version: 6.6.0 use_gresource: pamac_installer_gresource_xml vala_local_package: pamacclassic vala_check_package: gtk+-3.0 @@ -51,7 +49,7 @@ vala_check_package: json-glib-1.0 *vala_source: progress_dialog.vala vala_binary: src/pamac-manager/pamac-manager -*version: 6.5.2 +*version: 6.6.0 alias: pamac-updater use_gresource: pamac_manager_gresource_xml vala_local_package: pamacclassic @@ -65,7 +63,7 @@ vala_check_package: json-glib-1.0 *vala_source: manager_window.vala vala_binary: src/pamac-system-daemon/pamac-system-daemon -*version: 6.5.2 +*version: 6.6.0 vala_local_package: pamacclassic vala_package: posix vala_check_package: gtk+-3.0 @@ -83,7 +81,7 @@ vala_check_package: polkit-gobject-1 *vala_source: system_daemon.vala vala_binary: src/pamac-tray/pamac-tray -*version: 6.5.2 +*version: 6.6.0 vala_local_package: pamacclassic vala_package: posix vala_check_package: json-glib-1.0 @@ -107,7 +105,7 @@ end *vala_source: tray.vala vala_binary: src/pamac-user-daemon/pamac-user-daemon -*version: 6.5.2 +*version: 6.6.0 vala_local_package: pamacclassic vala_package: posix vala_check_package: gtk+-3.0 @@ -122,7 +120,7 @@ vala_check_package: libsoup-2.4 vala_library: src/pamac-classic -*version: 6.5.2 +*version: 6.6.0 namespace: pamacclassic use_gresource: pamac_transaction_gresource_xml vala_package: posix diff --git a/po/pamac.pot b/po/pamac.pot index a8aa893..768fcf6 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-08 16:24-0300\n" +"POT-Creation-Date: 2017-11-10 22:35-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 77150a0..c94afb9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.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.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) link_libraries ( ${DEPS_LIBRARIES} ) link_directories ( ${DEPS_LIBRARY_DIRS} ) @@ -101,7 +101,7 @@ add_dependencies( pamacclassic ${pamacclassic_DEPENDENCIES} ) target_link_libraries( pamacclassic m ) set_target_properties( pamacclassic PROPERTIES VERSION - 6.5.2 + 6.6.0 SOVERSION 6 ) diff --git a/src/meson.build b/src/meson.build index ecfee03..49775b4 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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.5.2') +cfg_pamac_classic.set('VERSION', '6.6.0') cfg_pamac_classic.set('TESTSRCDIR', meson.source_root()) cfgfile_1 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_classic) @@ -59,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.5.2',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.6.0',soversion: '6',install: true) pamac_classic_requires = [] pamac_classic_requires += ['gdk-3.0'] @@ -74,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.5.2', + version : '6.6.0', name : 'pamacclassic', filebase : 'pamacclassic', description : 'pamacclassic', diff --git a/src/pamac-clean-cache/CMakeLists.txt b/src/pamac-clean-cache/CMakeLists.txt index 4f88fa6..34944c4 100644 --- a/src/pamac-clean-cache/CMakeLists.txt +++ b/src/pamac-clean-cache/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.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.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) @@ -26,7 +26,6 @@ include (ValaPrecompile) set (VALA_PACKAGES ${VALA_PACKAGES} posix) set (VALA_PACKAGES ${VALA_PACKAGES} gtk+-3.0) set (VALA_PACKAGES ${VALA_PACKAGES} json-glib-1.0) -set (VALA_PACKAGES ${VALA_PACKAGES} gio-2.0) set (VALA_PACKAGES ${VALA_PACKAGES} glib-2.0) set (VALA_PACKAGES ${VALA_PACKAGES} gobject-2.0) diff --git a/src/pamac-clean-cache/clean_cache.vala b/src/pamac-clean-cache/clean_cache.vala index 8574cbb..2110b32 100644 --- a/src/pamac-clean-cache/clean_cache.vala +++ b/src/pamac-clean-cache/clean_cache.vala @@ -19,7 +19,7 @@ */ int main () { - var pamac_config = new Pamac.Config ("/etc/pamac.conf"); + var pamac_config = new Pamac.Config (); string rm_only_uninstalled_str = ""; if (pamac_config.rm_only_uninstalled) { rm_only_uninstalled_str = "-u"; diff --git a/src/pamac-clean-cache/meson.build b/src/pamac-clean-cache/meson.build index a80b4aa..a4d0b14 100644 --- a/src/pamac-clean-cache/meson.build +++ b/src/pamac-clean-cache/meson.build @@ -4,14 +4,13 @@ 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.5.2') +cfg_pamac_clean_cache.set('VERSION', '6.6.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) pamac_clean_cache_deps = [gtk_3_0_dep] pamac_clean_cache_deps += [json_glib_1_0_dep] -pamac_clean_cache_deps += [gio_2_0_dep] pamac_clean_cache_deps += [glib_2_0_dep] pamac_clean_cache_deps += [gobject_2_0_dep] pamac_clean_cache_sources = [cfgfile_4] diff --git a/src/pamac-install/CMakeLists.txt b/src/pamac-install/CMakeLists.txt index 05b3157..896417a 100644 --- a/src/pamac-install/CMakeLists.txt +++ b/src/pamac-install/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.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.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) diff --git a/src/pamac-install/meson.build b/src/pamac-install/meson.build index 0c9f281..0e5528b 100644 --- a/src/pamac-install/meson.build +++ b/src/pamac-install/meson.build @@ -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.5.2') +cfg_pamac_install.set('VERSION', '6.6.0') cfg_pamac_install.set('TESTSRCDIR', meson.source_root()) cfgfile_5 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_install) diff --git a/src/pamac-manager/CMakeLists.txt b/src/pamac-manager/CMakeLists.txt index 88928b1..9e822ac 100644 --- a/src/pamac-manager/CMakeLists.txt +++ b/src/pamac-manager/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.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.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) diff --git a/src/pamac-manager/manager_window.vala b/src/pamac-manager/manager_window.vala index 5a99caa..d1a8865 100644 --- a/src/pamac-manager/manager_window.vala +++ b/src/pamac-manager/manager_window.vala @@ -367,7 +367,7 @@ namespace Pamac { #endif transaction.important_details_outpout.connect (on_important_details_outpout); transaction.finished.connect (on_transaction_finished); - transaction.write_pamac_config_finished.connect (on_write_pamac_config_finished); + transaction.save_pamac_config_finished.connect (on_save_pamac_config_finished); transaction.set_pkgreason_finished.connect (on_set_pkgreason_finished); transaction.generate_mirrors_list.connect (on_generate_mirrors_list); transaction.run_preferences_dialog_finished.connect (on_run_preferences_dialog_finished); @@ -398,14 +398,14 @@ namespace Pamac { } #if DISABLE_AUR - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { + void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { } #else - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, + void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, bool enable_aur, bool search_aur) { support_aur (enable_aur); - } #endif + } void on_set_pkgreason_finished () { transaction.unlock (); diff --git a/src/pamac-manager/meson.build b/src/pamac-manager/meson.build index c73ccff..2b1a60a 100644 --- a/src/pamac-manager/meson.build +++ b/src/pamac-manager/meson.build @@ -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.5.2') +cfg_pamac_manager.set('VERSION', '6.6.0') cfg_pamac_manager.set('TESTSRCDIR', meson.source_root()) cfgfile_6 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_manager) diff --git a/src/pamac-system-daemon/CMakeLists.txt b/src/pamac-system-daemon/CMakeLists.txt index 7748058..51780df 100644 --- a/src/pamac-system-daemon/CMakeLists.txt +++ b/src/pamac-system-daemon/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.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.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) diff --git a/src/pamac-system-daemon/meson.build b/src/pamac-system-daemon/meson.build index 0629101..2dc78be 100644 --- a/src/pamac-system-daemon/meson.build +++ b/src/pamac-system-daemon/meson.build @@ -4,7 +4,7 @@ cfg_pamac_system_daemon.set('PKGDATADIR', join_paths(get_option('prefix'),get_op cfg_pamac_system_daemon.set('GETTEXT_PACKAGE', 'pamac-classic') cfg_pamac_system_daemon.set('RELEASE_NAME', 'pamac-classic') cfg_pamac_system_daemon.set('PREFIX', get_option('prefix')) -cfg_pamac_system_daemon.set('VERSION', '6.5.2') +cfg_pamac_system_daemon.set('VERSION', '6.6.0') cfg_pamac_system_daemon.set('TESTSRCDIR', meson.source_root()) cfgfile_7 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_system_daemon) diff --git a/src/pamac-system-daemon/system_daemon.vala b/src/pamac-system-daemon/system_daemon.vala index 0205bc0..716a4d2 100644 --- a/src/pamac-system-daemon/system_daemon.vala +++ b/src/pamac-system-daemon/system_daemon.vala @@ -103,9 +103,9 @@ namespace Pamac { public signal void trans_commit_finished (bool success); public signal void get_authorization_finished (bool authorized); #if DISABLE_AUR - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); #else - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates); #endif public signal void write_alpm_config_finished (bool checkspace); @@ -356,21 +356,15 @@ namespace Pamac { }); } - public void start_write_pamac_config (HashTable new_pamac_conf, GLib.BusName sender) { - check_authorization.begin (sender, (obj, res) => { - var pamac_config = new Pamac.Config ("/etc/pamac.conf"); - bool authorized = check_authorization.end (res); - if (authorized ) { - pamac_config.write (new_pamac_conf); - pamac_config.reload (); - } + public void start_save_pamac_config () { + var pamac_config = new Pamac.Config (); + pamac_config.reload (); #if DISABLE_AUR - write_pamac_config_finished (pamac_config.recurse, pamac_config.refresh_period, pamac_config.no_update_hide_icon); + save_pamac_config_finished (pamac_config.recurse, pamac_config.refresh_period, pamac_config.no_update_hide_icon); #else - write_pamac_config_finished (pamac_config.recurse, pamac_config.refresh_period, pamac_config.no_update_hide_icon, + save_pamac_config_finished (pamac_config.recurse, pamac_config.refresh_period, pamac_config.no_update_hide_icon, pamac_config.enable_aur, pamac_config.search_aur, pamac_config.aur_build_dir, pamac_config.check_aur_updates); #endif - }); } private void write_alpm_config () { diff --git a/src/pamac-tray/CMakeLists.txt b/src/pamac-tray/CMakeLists.txt index eb5875a..f2e4890 100644 --- a/src/pamac-tray/CMakeLists.txt +++ b/src/pamac-tray/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.0") set (TESTSRCDIR "${CMAKE_SOURCE_DIR}") set (DOLLAR "$") configure_file (${CMAKE_SOURCE_DIR}/src/pamac-tray/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-tray/Config.vala) add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\") -set (VERSION "6.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) diff --git a/src/pamac-tray/meson.build b/src/pamac-tray/meson.build index ecafe0b..7af7d19 100644 --- a/src/pamac-tray/meson.build +++ b/src/pamac-tray/meson.build @@ -4,7 +4,7 @@ cfg_pamac_tray.set('PKGDATADIR', join_paths(get_option('prefix'),get_option('dat cfg_pamac_tray.set('GETTEXT_PACKAGE', 'pamac-classic') cfg_pamac_tray.set('RELEASE_NAME', 'pamac-classic') cfg_pamac_tray.set('PREFIX', get_option('prefix')) -cfg_pamac_tray.set('VERSION', '6.5.2') +cfg_pamac_tray.set('VERSION', '6.6.0') cfg_pamac_tray.set('TESTSRCDIR', meson.source_root()) cfgfile_3 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_tray) diff --git a/src/pamac-tray/tray-appindicator.vala b/src/pamac-tray/tray-appindicator.vala index ab80c18..14c73c2 100644 --- a/src/pamac-tray/tray-appindicator.vala +++ b/src/pamac-tray/tray-appindicator.vala @@ -48,6 +48,14 @@ namespace Pamac { return indicator_status_icon.get_icon (); } + public override bool get_icon_visible () { + if (indicator_status_icon.get_status () == AppIndicator.IndicatorStatus.ACTIVE) { + return true; + } else { + return false; + } + } + public override void set_icon_visible (bool visible) { if (visible) { indicator_status_icon.set_status (AppIndicator.IndicatorStatus.ACTIVE); diff --git a/src/pamac-tray/tray-gtk.vala b/src/pamac-tray/tray-gtk.vala index 0d22b99..49f208f 100644 --- a/src/pamac-tray/tray-gtk.vala +++ b/src/pamac-tray/tray-gtk.vala @@ -47,6 +47,10 @@ namespace Pamac { return status_icon.get_icon_name (); } + public override bool get_icon_visible () { + return status_icon.visible; + } + public override void set_icon_visible (bool visible) { if (visible) { status_icon.visible = true; diff --git a/src/pamac-tray/tray.vala b/src/pamac-tray/tray.vala index 27a88c9..053d72e 100644 --- a/src/pamac-tray/tray.vala +++ b/src/pamac-tray/tray.vala @@ -45,8 +45,10 @@ namespace Pamac { UserDaemon daemon; bool extern_lock; uint refresh_timeout_id; + uint icon_timeout_id; public Gtk.Menu menu; GLib.File lockfile; + bool updates_available; public TrayIcon () { application_id = "org.pamac.tray"; @@ -116,10 +118,12 @@ namespace Pamac { public abstract string get_icon (); + public abstract bool get_icon_visible (); + public abstract void set_icon_visible (bool visible); bool check_updates () { - var pamac_config = new Pamac.Config ("/etc/pamac.conf"); + var pamac_config = new Pamac.Config (); if (pamac_config.refresh_period != 0) { try { #if DISABLE_AUR @@ -141,12 +145,14 @@ namespace Pamac { uint updates_nb = updates.repos_updates.length + updates.aur_updates.length; #endif if (updates_nb == 0) { + updates_available = false; set_icon (noupdate_icon_name); set_tooltip (noupdate_info); - var pamac_config = new Pamac.Config ("/etc/pamac.conf"); + var pamac_config = new Pamac.Config (); set_icon_visible (!pamac_config.no_update_hide_icon); close_notification (); } else { + updates_available = true; string info = ngettext ("%u available update", "%u available updates", updates_nb).printf (updates_nb); set_icon (update_icon_name); set_tooltip (info); @@ -241,6 +247,22 @@ namespace Pamac { return true; } + bool check_icon_hide_setting () { + var pamac_config = new Pamac.Config (); + if (!updates_available) { + set_icon_visible (!pamac_config.no_update_hide_icon); + } + return true; + } + + void launch_icon_check_timeout () { + if (icon_timeout_id != 0) { + Source.remove (icon_timeout_id); + icon_timeout_id = 0; + } + icon_timeout_id = Timeout.add_seconds ((uint) 1, check_icon_hide_setting); + } + void launch_refresh_timeout (uint64 refresh_period_in_hours) { if (refresh_timeout_id != 0) { Source.remove (refresh_timeout_id); @@ -256,7 +278,7 @@ namespace Pamac { Intl.textdomain ("pamac"); Intl.setlocale (LocaleCategory.ALL, ""); - var pamac_config = new Pamac.Config ("/etc/pamac.conf"); + var pamac_config = new Pamac.Config (); // if refresh period is 0, just return so tray will exit if (pamac_config.refresh_period == 0) { return; @@ -266,6 +288,7 @@ namespace Pamac { extern_lock = false; refresh_timeout_id = 0; + icon_timeout_id = 0; create_menu (); init_status_icon (); @@ -286,9 +309,11 @@ namespace Pamac { Timeout.add (200, check_extern_lock); // wait 30 seconds before check updates Timeout.add_seconds (30, () => { + check_icon_hide_setting (); check_updates (); return false; }); + launch_icon_check_timeout (); launch_refresh_timeout (pamac_config.refresh_period); this.hold (); diff --git a/src/pamac-user-daemon/CMakeLists.txt b/src/pamac-user-daemon/CMakeLists.txt index 43e3d0c..c876f6d 100644 --- a/src/pamac-user-daemon/CMakeLists.txt +++ b/src/pamac-user-daemon/CMakeLists.txt @@ -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.5.2") +set (VERSION "6.6.0") set (TESTSRCDIR "${CMAKE_SOURCE_DIR}") set (DOLLAR "$") configure_file (${CMAKE_SOURCE_DIR}/src/pamac-user-daemon/Config.vala.base ${CMAKE_BINARY_DIR}/src/pamac-user-daemon/Config.vala) add_definitions(-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\") -set (VERSION "6.5.2") +set (VERSION "6.6.0") add_definitions (${DEPS_CFLAGS}) include_directories ( ${CMAKE_BINARY_DIR}/src ) link_libraries ( ${DEPS_LIBRARIES} -lpamacclassic ) diff --git a/src/pamac-user-daemon/meson.build b/src/pamac-user-daemon/meson.build index 4637bb6..2476c76 100644 --- a/src/pamac-user-daemon/meson.build +++ b/src/pamac-user-daemon/meson.build @@ -4,7 +4,7 @@ cfg_pamac_user_daemon.set('PKGDATADIR', join_paths(get_option('prefix'),get_opti cfg_pamac_user_daemon.set('GETTEXT_PACKAGE', 'pamac-classic') cfg_pamac_user_daemon.set('RELEASE_NAME', 'pamac-classic') cfg_pamac_user_daemon.set('PREFIX', get_option('prefix')) -cfg_pamac_user_daemon.set('VERSION', '6.5.2') +cfg_pamac_user_daemon.set('VERSION', '6.6.0') cfg_pamac_user_daemon.set('TESTSRCDIR', meson.source_root()) cfgfile_2 = configure_file(input: 'Config.vala.base',output: 'Config.vala',configuration: cfg_pamac_user_daemon) diff --git a/src/pamac_config.vala b/src/pamac_config.vala index ff83f65..46def80 100644 --- a/src/pamac_config.vala +++ b/src/pamac_config.vala @@ -20,7 +20,6 @@ namespace Pamac { class Config { - string conf_path; HashTable _environment_variables; public bool recurse { get; private set; } @@ -44,8 +43,7 @@ namespace Pamac { } } - public Config (string path) { - conf_path = path; + public Config () { //get environment variables _environment_variables = new HashTable (str_hash, str_equal); var utsname = Posix.utsname(); @@ -91,291 +89,29 @@ namespace Pamac { terminal_background = "rgb(0,0,0)"; terminal_foreground = "rgb(255,255,255)"; terminal_font = "Sans Regular 12"; - parse_file (conf_path); + //parse_file (conf_path); + load_settings (); } - void parse_file (string path) { - var file = GLib.File.new_for_path (path); - if (file.query_exists ()) { - try { - // Open file for reading and wrap returned FileInputStream into a - // DataInputStream, so we can read line by line - var dis = new DataInputStream (file.read ()); - string? line; - // Read lines until end of file (null) is reached - while ((line = dis.read_line ()) != null) { - if (line.length == 0) { - continue; - } - // ignore whole line and end of line comments - string[] splitted = line.split ("#", 2); - line = splitted[0].strip (); - if (line.length == 0) { - continue; - } - splitted = line.split ("=", 2); - unowned string key = splitted[0]._strip (); - if (key == "RemoveUnrequiredDeps") { - recurse = true; - } else if (key == "RefreshPeriod") { - if (splitted.length == 2) { - unowned string val = splitted[1]._strip (); - refresh_period = uint64.parse (val); - } - } else if (key == "NoUpdateHideIcon") { - no_update_hide_icon = true; + void load_settings () { + var settings = new Settings ("org.pamac.main"); + recurse = settings.get_boolean ("remove-unrequired-deps"); + refresh_period = settings.get_uint64 ("refresh-period"); + no_update_hide_icon = settings.get_boolean ("no-update-hide-icon"); + keep_num_pkgs = settings.get_uint64 ("keep-num-packages"); + rm_only_uninstalled = settings.get_boolean ("only-rm-uninstalled"); + terminal_background = settings.get_string ("background-color"); + terminal_foreground = settings.get_string ("foreground-color"); + terminal_font = settings.get_string ("terminal-font"); + #if DISABLE_AUR #else - } else if (key == "EnableAUR") { - enable_aur = true; - } else if (key == "SearchInAURByDefault") { - search_aur = true; - } else if (key == "BuildDirectory") { - if (splitted.length == 2) { - aur_build_dir = splitted[1]._strip (); - } - } else if (key == "CheckAURUpdates") { - check_aur_updates = true; + settings = new Settings ("org.pamac.aur"); + enable_aur = settings.get_boolean ("enable-aur"); + search_aur = settings.get_boolean ("search-in-aur"); + check_aur_updates = settings.get_boolean ("check-aur-updates"); + aur_build_dir = settings.get_string ("build-directory"); #endif - } else if (key == "KeepNumPackages") { - if (splitted.length == 2) { - unowned string val = splitted[1]._strip (); - keep_num_pkgs = uint64.parse (val); - } - } else if (key == "OnlyRmUninstalled") { - rm_only_uninstalled = true; - } else if (key == "BackgroundColor") { - if (splitted.length == 2) { - terminal_background = splitted[1]._strip (); - } - } else if (key == "ForegroundColor") { - if (splitted.length == 2) { - terminal_foreground = splitted[1]._strip (); - } - } else if (key == "TerminalFont") { - if (splitted.length == 2) { - terminal_font = splitted[1]._strip (); - } - } - } - } catch (GLib.Error e) { - GLib.stderr.printf("%s\n", e.message); - } - } else { - GLib.stderr.printf ("File '%s' doesn't exist.\n", path); - } - } - public void write (HashTable new_conf) { - var file = GLib.File.new_for_path (conf_path); - var data = new GLib.List (); - if (file.query_exists ()) { - try { - // Open file for reading and wrap returned FileInputStream into a - // DataInputStream, so we can read line by line - var dis = new DataInputStream (file.read ()); - string? line; - // Read lines until end of file (null) is reached - while ((line = dis.read_line ()) != null) { - if (line.length == 0) { - data.append ("\n"); - continue; - } - unowned Variant variant; - if (line.contains ("RemoveUnrequiredDeps")) { - if (new_conf.lookup_extended ("RemoveUnrequiredDeps", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("RemoveUnrequiredDeps\n"); - } else { - data.append ("#RemoveUnrequiredDeps\n"); - } - new_conf.remove ("RemoveUnrequiredDeps"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("RefreshPeriod")) { - if (new_conf.lookup_extended ("RefreshPeriod", null, out variant)) { - data.append ("RefreshPeriod = %llu\n".printf (variant.get_uint64 ())); - new_conf.remove ("RefreshPeriod"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("NoUpdateHideIcon")) { - if (new_conf.lookup_extended ("NoUpdateHideIcon", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("NoUpdateHideIcon\n"); - } else { - data.append ("#NoUpdateHideIcon\n"); - } - new_conf.remove ("NoUpdateHideIcon"); - } else { - data.append (line + "\n"); - } -#if DISABLE_AUR -#else - } else if (line.contains ("EnableAUR")) { - if (new_conf.lookup_extended ("EnableAUR", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("EnableAUR\n"); - } else { - data.append ("#EnableAUR\n"); - } - new_conf.remove ("EnableAUR"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("SearchInAURByDefault")) { - if (new_conf.lookup_extended ("SearchInAURByDefault", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("SearchInAURByDefault\n"); - } else { - data.append ("#SearchInAURByDefault\n"); - } - new_conf.remove ("SearchInAURByDefault"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("BuildDirectory")) { - if (new_conf.lookup_extended ("BuildDirectory", null, out variant)) { - data.append ("BuildDirectory = %s\n".printf (variant.get_string ())); - new_conf.remove ("BuildDirectory"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("CheckAURUpdates")) { - if (new_conf.lookup_extended ("CheckAURUpdates", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("CheckAURUpdates\n"); - } else { - data.append ("#CheckAURUpdates\n"); - } - new_conf.remove ("CheckAURUpdates"); - } else { - data.append (line + "\n"); - } -#endif - } else if (line.contains ("KeepNumPackages")) { - if (new_conf.lookup_extended ("KeepNumPackages", null, out variant)) { - data.append ("KeepNumPackages = %llu\n".printf (variant.get_uint64 ())); - new_conf.remove ("KeepNumPackages"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("OnlyRmUninstalled")) { - if (new_conf.lookup_extended ("OnlyRmUninstalled", null, out variant)) { - if (variant.get_boolean ()) { - data.append ("OnlyRmUninstalled\n"); - } else { - data.append ("#OnlyRmUninstalled\n"); - } - new_conf.remove ("OnlyRmUninstalled"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("BackgroundColor")) { - if (new_conf.lookup_extended ("BackgroundColor", null, out variant)) { - data.append ("BackgroundColor = %s\n".printf (variant.get_string ())); - new_conf.remove ("BackgroundColor"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("ForegroundColor")) { - if (new_conf.lookup_extended ("ForegroundColor", null, out variant)) { - data.append ("ForegroundColor = %s\n".printf (variant.get_string ())); - new_conf.remove ("ForegroundColor"); - } else { - data.append (line + "\n"); - } - } else if (line.contains ("TerminalFont")) { - if (new_conf.lookup_extended ("TerminalFont", null, out variant)) { - data.append ("TerminalFont = %s\n".printf (variant.get_string ())); - new_conf.remove ("TerminalFont"); - } else { - data.append (line + "\n"); - } - } else { - data.append (line + "\n"); - } - } - // delete the file before rewrite it - file.delete (); - } catch (GLib.Error e) { - GLib.stderr.printf("%s\n", e.message); - } - } else { - GLib.stderr.printf ("File '%s' doesn't exist.\n", conf_path); - } - // create lines for unexisted options - if (new_conf.size () != 0) { - data.append ("\n"); - var iter = HashTableIter (new_conf); - unowned string key; - unowned Variant val; - while (iter.next (out key, out val)) { - if (key == "RemoveUnrequiredDeps") { - if (val.get_boolean ()) { - data.append ("RemoveUnrequiredDeps\n"); - } else { - data.append ("#RemoveUnrequiredDeps\n"); - } - } else if (key == "RefreshPeriod") { - data.append ("RefreshPeriod = %llu\n".printf (val.get_uint64 ())); - } else if (key =="NoUpdateHideIcon") { - if (val.get_boolean ()) { - data.append ("NoUpdateHideIcon\n"); - } else { - data.append ("#NoUpdateHideIcon\n"); - } -#if DISABLE_AUR -#else - } else if (key == "EnableAUR") { - if (val.get_boolean ()) { - data.append ("EnableAUR\n"); - } else { - data.append ("#EnableAUR\n"); - } - } else if (key == "SearchInAURByDefault") { - if (val.get_boolean ()) { - data.append ("SearchInAURByDefault\n"); - } else { - data.append ("#SearchInAURByDefault\n"); - } - } else if (key == "BuildDirectory") { - data.append ("BuildDirectory = %s\n".printf (val.get_string ())); - } else if (key == "CheckAURUpdates") { - if (val.get_boolean ()) { - data.append ("CheckAURUpdates\n"); - } else { - data.append ("#CheckAURUpdates\n"); - } -#endif - } else if (key == "KeepNumPackages") { - data.append ("KeepNumPackages = %llu\n".printf (val.get_uint64 ())); - } else if (key == "OnlyRmUninstalled") { - if (val.get_boolean ()) { - data.append ("OnlyRmUninstalled\n"); - } else { - data.append ("#OnlyRmUninstalled\n"); - } - } else if (key == "BackgroundColor") { - data.append ("BackgroundColor = %s\n".printf (val.get_string ())); - } else if (key == "ForegroundColor") { - data.append ("ForegroundCOlor = %s\n".printf (val.get_string ())); - } else if (key == "TerminalFont") { - data.append ("TerminalFont = %s\n".printf (val.get_string ())); - } - } - } - // write the file - try { - // creating a DataOutputStream to the file - var dos = new DataOutputStream (file.create (FileCreateFlags.REPLACE_DESTINATION)); - foreach (unowned string new_line in data) { - // writing a short string to the stream - dos.put_string (new_line); - } - } catch (GLib.Error e) { - GLib.stderr.printf("%s\n", e.message); - } } } } diff --git a/src/pamacclassic.pc b/src/pamacclassic.pc index eeec2de..491c7a5 100644 --- a/src/pamacclassic.pc +++ b/src/pamacclassic.pc @@ -4,7 +4,7 @@ includedir=@DOLLAR@{prefix}/${CMAKE_INSTALL_INCLUDEDIR} Name: pamacclassic Description: pamacclassic -Version: 6.5.2 +Version: 6.6.0 Libs: -L@DOLLAR@{libdir} -lpamacclassic Cflags: -I@DOLLAR@{includedir} Requires: gdk-3.0 gtk+-3.0 json-glib-1.0 libalpm libnotify libsoup-2.4 vte-2.91 gio-2.0 glib-2.0 gobject-2.0 diff --git a/src/preferences_dialog.vala b/src/preferences_dialog.vala index c51fd3a..3de247f 100644 --- a/src/preferences_dialog.vala +++ b/src/preferences_dialog.vala @@ -137,7 +137,6 @@ namespace Pamac { no_update_hide_icon_checkbutton.toggled.connect (on_no_update_hide_icon_checkbutton_toggled); cache_keep_nb_spin_button.value_changed.connect (on_cache_keep_nb_spin_button_value_changed); cache_only_uninstalled_checkbutton.toggled.connect (on_cache_only_uninstalled_checkbutton_toggled); - transaction.write_pamac_config_finished.connect (on_write_pamac_config_finished); terminal_background.color_set.connect (on_select_background); terminal_foreground.color_set.connect (on_select_foreground); terminal_font.font_set.connect (on_select_font); @@ -194,109 +193,117 @@ namespace Pamac { } bool on_remove_unrequired_deps_button_state_set (bool new_state) { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("RemoveUnrequiredDeps", new Variant.boolean (new_state)); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_boolean ("remove-unrequired-deps", new_state); + config_changed(); + transaction.start_save_pamac_config (); return true; } bool on_check_updates_button_state_set (bool new_state) { - var new_pamac_conf = new HashTable (str_hash, str_equal); + var settings = new Settings ("org.pamac.main"); refresh_period_label.sensitive = new_state; refresh_period_spin_button.sensitive = new_state; no_update_hide_icon_checkbutton.sensitive = new_state; ignorepkgs_box.sensitive = new_state; if (new_state) { - new_pamac_conf.insert ("RefreshPeriod", new Variant.uint64 (previous_refresh_period)); + settings.set_uint64 ("refresh-period", previous_refresh_period); } else { - new_pamac_conf.insert ("RefreshPeriod", new Variant.uint64 (0)); + settings.set_uint64 ("refresh-period", 0); } - transaction.start_write_pamac_config (new_pamac_conf); + config_changed(); + transaction.start_save_pamac_config (); return true; } void on_refresh_period_spin_button_value_changed () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("RefreshPeriod", new Variant.uint64 (refresh_period_spin_button.get_value_as_int ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_uint64 ("refresh-period", refresh_period_spin_button.get_value_as_int ()); + config_changed(); + transaction.start_save_pamac_config (); } - void on_cache_keep_nb_spin_button_value_changed () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("KeepNumPackages", new Variant.uint64 (cache_keep_nb_spin_button.get_value_as_int ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_uint64 ("keep-num-packages", cache_keep_nb_spin_button.get_value_as_int ()); + config_changed(); + transaction.start_save_pamac_config (); } void on_cache_only_uninstalled_checkbutton_toggled () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("OnlyRmUninstalled", new Variant.boolean (cache_only_uninstalled_checkbutton.active)); - transaction.start_write_pamac_config (new_pamac_conf); -} + var settings = new Settings ("org.pamac.main"); + settings.set_boolean ("only-rm-uninstalled", cache_only_uninstalled_checkbutton.active); + config_changed(); + transaction.start_save_pamac_config (); + } void on_no_update_hide_icon_checkbutton_toggled () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("NoUpdateHideIcon", new Variant.boolean (no_update_hide_icon_checkbutton.active)); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_boolean ("no-update-hide-icon", no_update_hide_icon_checkbutton.active); + config_changed(); + transaction.start_save_pamac_config (); } void on_select_background () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("BackgroundColor", new Variant.string (terminal_background.rgba.to_string ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_string ("background-color", terminal_background.rgba.to_string ()); + config_changed(); + transaction.start_save_pamac_config (); transaction.update_terminal_background (terminal_background.rgba.to_string ()); } void on_select_foreground () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("ForegroundColor", new Variant.string (terminal_foreground.rgba.to_string ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_string ("foreground-color", terminal_foreground.rgba.to_string ()); + config_changed(); + transaction.start_save_pamac_config (); transaction.update_terminal_foreground (terminal_foreground.rgba.to_string ()); } void on_select_font () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("TerminalFont", new Variant.string (terminal_font.get_font_name ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.main"); + settings.set_string ("terminal-font", terminal_font.get_font_name ()); + config_changed(); + transaction.start_save_pamac_config (); transaction.update_terminal_font (terminal_font.get_font_name ()); } #if DISABLE_AUR #else bool on_enable_aur_button_state_set (bool new_state) { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("EnableAUR", new Variant.boolean (new_state)); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.aur"); + settings.set_boolean ("enable-aur", new_state); + config_changed(); + transaction.start_save_pamac_config (); return true; } void on_search_aur_checkbutton_toggled () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("SearchInAURByDefault", new Variant.boolean (search_aur_checkbutton.active)); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.aur"); + settings.set_boolean ("search-in-aur", search_aur_checkbutton.active); + config_changed(); + transaction.start_save_pamac_config (); } void on_aur_build_dir_set () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("BuildDirectory", new Variant.string (aur_build_dir_file_chooser.get_filename ())); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.aur"); + settings.set_string ("build-directory", aur_build_dir_file_chooser.get_filename ()); + config_changed(); + transaction.start_save_pamac_config (); } void on_check_aur_updates_checkbutton_toggled () { - var new_pamac_conf = new HashTable (str_hash, str_equal); - new_pamac_conf.insert ("CheckAURUpdates", new Variant.boolean (check_aur_updates_checkbutton.active)); - transaction.start_write_pamac_config (new_pamac_conf); + var settings = new Settings ("org.pamac.aur"); + settings.set_boolean ("check-aur-updates", check_aur_updates_checkbutton.active); + config_changed(); + transaction.start_save_pamac_config (); } #endif -#if DISABLE_AUR - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { -#else - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, - bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates) { -#endif - remove_unrequired_deps_button.state = recurse; - if (refresh_period == 0) { + void config_changed() { + transaction.config_changed(); + remove_unrequired_deps_button.state = transaction.recurse; + if (transaction.refresh_period == 0) { check_updates_button.state = false; refresh_period_label.sensitive = false; refresh_period_spin_button.sensitive = false; @@ -305,28 +312,29 @@ namespace Pamac { } else { check_updates_button.state = true; refresh_period_label.sensitive = true; - refresh_period_spin_button.value = refresh_period; - previous_refresh_period = refresh_period; + refresh_period_spin_button.value = transaction.refresh_period; + previous_refresh_period = transaction.refresh_period; refresh_period_spin_button.sensitive = true; no_update_hide_icon_checkbutton.sensitive = true; ignorepkgs_box.sensitive = true; } - no_update_hide_icon_checkbutton.active = no_update_hide_icon; + no_update_hide_icon_checkbutton.active = transaction.no_update_hide_icon; #if DISABLE_AUR #else - enable_aur_button.state = enable_aur; - search_aur_checkbutton.active = search_aur; - search_aur_checkbutton.sensitive = enable_aur; - aur_build_dir_label.sensitive = enable_aur; - aur_build_dir_file_chooser.sensitive = enable_aur; - check_aur_updates_checkbutton.active = check_aur_updates; - check_aur_updates_checkbutton.sensitive = enable_aur; + enable_aur_button.state = transaction.enable_aur; + search_aur_checkbutton.active = transaction.search_aur; + search_aur_checkbutton.sensitive = transaction.enable_aur; + aur_build_dir_label.sensitive = transaction.enable_aur; + aur_build_dir_file_chooser.sensitive = transaction.enable_aur; + check_aur_updates_checkbutton.active = transaction.check_aur_updates; + check_aur_updates_checkbutton.sensitive = transaction.enable_aur; #endif } bool on_check_space_button_state_set (bool new_state) { var new_alpm_conf = new HashTable (str_hash, str_equal); new_alpm_conf.insert ("CheckSpace", new Variant.boolean (new_state)); + check_space_button.state = new_state; transaction.start_write_alpm_config (new_alpm_conf); return true; } diff --git a/src/transaction.vala b/src/transaction.vala index 9f5e702..b0af570 100644 --- a/src/transaction.vala +++ b/src/transaction.vala @@ -70,7 +70,7 @@ namespace Pamac { public abstract bool get_lock () throws IOError; public abstract bool unlock () throws IOError; public abstract void start_get_authorization () throws IOError; - public abstract void start_write_pamac_config (HashTable new_pamac_conf) throws IOError; + public abstract void start_save_pamac_config () throws IOError; public abstract void start_write_alpm_config (HashTable new_alpm_conf) throws IOError; public abstract void start_write_mirrors_config (HashTable new_mirrors_conf) throws IOError; public abstract void start_generate_mirrors_list () throws IOError; @@ -108,9 +108,9 @@ namespace Pamac { public signal void trans_commit_finished (bool success); public signal void get_authorization_finished (bool authorized); #if DISABLE_AUR - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); #else - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates); #endif public signal void write_alpm_config_finished (bool checkspace); @@ -149,7 +149,7 @@ namespace Pamac { public string terminal_background { get { return pamac_config.terminal_background; } } public string terminal_foreground { get { return pamac_config.terminal_foreground; } } public string terminal_font { get { return pamac_config.terminal_font; } } - public unowned GLib.HashTable environment_variables { get {return pamac_config.environment_variables; } } + public unowned GLib.HashTable environment_variables { get { return pamac_config.environment_variables; } } public bool no_update_hide_icon { get { return pamac_config.no_update_hide_icon; } } public bool recurse { get { return pamac_config.recurse; } } public uint64 refresh_period { get { return pamac_config.refresh_period; } } @@ -221,9 +221,9 @@ namespace Pamac { public signal void finished (bool success); public signal void set_pkgreason_finished (); #if DISABLE_AUR - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon); #else - public signal void write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, + public signal void save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates); #endif public signal void write_alpm_config_finished (bool checkspace); @@ -234,7 +234,7 @@ namespace Pamac { public Transaction (Gtk.ApplicationWindow? application_window) { mode = Mode.MANAGER; - pamac_config = new Pamac.Config ("/etc/pamac.conf"); + pamac_config = new Pamac.Config (); flags = (1 << 4); //Alpm.TransFlag.CASCADE if (pamac_config.recurse) { flags |= (1 << 5); //Alpm.TransFlag.RECURSE @@ -306,6 +306,10 @@ namespace Pamac { warning_textbuffer = new StringBuilder (); } + public void config_changed() { + pamac_config.reload(); + } + public void update_terminal_background (string background) { var tmp = Gdk.RGBA (); tmp.parse (background); @@ -324,18 +328,13 @@ namespace Pamac { } public void run_preferences_dialog () { - check_authorization.begin ((obj, res) => { - bool authorized = check_authorization.end (res); - if (authorized) { - var preferences_dialog = new PreferencesDialog (this); - preferences_dialog.run (); - preferences_dialog.destroy (); - while (Gtk.events_pending ()) { - Gtk.main_iteration (); - } - } - run_preferences_dialog_finished (); - }); + var preferences_dialog = new PreferencesDialog (this); + preferences_dialog.run (); + preferences_dialog.destroy (); + while (Gtk.events_pending ()) { + Gtk.main_iteration (); + } + run_preferences_dialog_finished (); } public ErrorInfos get_current_error () { @@ -396,13 +395,13 @@ namespace Pamac { return authorized; } - public void start_write_pamac_config (HashTable new_pamac_conf) { + public void start_save_pamac_config () { try { - system_daemon.write_pamac_config_finished.connect (on_write_pamac_config_finished); - system_daemon.start_write_pamac_config (new_pamac_conf); + system_daemon.save_pamac_config_finished.connect (on_save_pamac_config_finished); + system_daemon.start_save_pamac_config (); } catch (IOError e) { stderr.printf ("IOError: %s\n", e.message); - system_daemon.write_pamac_config_finished.disconnect (on_write_pamac_config_finished); + system_daemon.save_pamac_config_finished.disconnect (on_save_pamac_config_finished); } } @@ -1924,21 +1923,21 @@ namespace Pamac { } #if DISABLE_AUR - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { + void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { #else - void on_write_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, + void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates) { #endif - system_daemon.write_pamac_config_finished.disconnect (on_write_pamac_config_finished); + system_daemon.save_pamac_config_finished.disconnect (on_save_pamac_config_finished); pamac_config.reload (); flags = (1 << 4); //Alpm.TransFlag.CASCADE if (pamac_config.recurse) { flags |= (1 << 5); //Alpm.TransFlag.RECURSE } #if DISABLE_AUR - write_pamac_config_finished (recurse, refresh_period, no_update_hide_icon); + save_pamac_config_finished (recurse, refresh_period, no_update_hide_icon); #else - write_pamac_config_finished (recurse, refresh_period, no_update_hide_icon, + save_pamac_config_finished (recurse, refresh_period, no_update_hide_icon, enable_aur, search_aur, aur_build_dir, check_aur_updates); #endif } From 6f15fc63c4b0656287914561ea4d490e17e94459 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Fri, 10 Nov 2017 22:57:50 -0300 Subject: [PATCH 2/7] stop the download of .files databases --- po/pamac.pot | 2 +- src/pamac-system-daemon/system_daemon.vala | 2 +- src/pamac-user-daemon/user_daemon.vala | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/po/pamac.pot b/po/pamac.pot index 768fcf6..3162065 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-10 22:35-0300\n" +"POT-Creation-Date: 2017-11-10 22:57-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/pamac-system-daemon/system_daemon.vala b/src/pamac-system-daemon/system_daemon.vala index 716a4d2..663209b 100644 --- a/src/pamac-system-daemon/system_daemon.vala +++ b/src/pamac-system-daemon/system_daemon.vala @@ -193,7 +193,7 @@ namespace Pamac { alpm_handle.totaldlcb = (Alpm.TotalDownloadCallBack) cb_totaldownload; alpm_handle.logcb = (Alpm.LogCallBack) cb_log; lockfile = GLib.File.new_for_path (alpm_handle.lockfile); - files_handle = alpm_config.get_handle (true); + files_handle = alpm_config.get_handle (false, true); files_handle.eventcb = (Alpm.EventCallBack) cb_event; files_handle.progresscb = (Alpm.ProgressCallBack) cb_progress; files_handle.questioncb = (Alpm.QuestionCallBack) cb_question; diff --git a/src/pamac-user-daemon/user_daemon.vala b/src/pamac-user-daemon/user_daemon.vala index ee8a974..d3d85df 100644 --- a/src/pamac-user-daemon/user_daemon.vala +++ b/src/pamac-user-daemon/user_daemon.vala @@ -58,7 +58,7 @@ namespace Pamac { if (alpm_handle == null) { return; } else { - files_handle = alpm_config.get_handle (true); + files_handle = alpm_config.get_handle (false, true); } } @@ -804,7 +804,7 @@ namespace Pamac { syncdbs.next (); } // refresh file dbs - var tmp_files_handle = alpm_config.get_handle (true, true); + var tmp_files_handle = alpm_config.get_handle (false, true); syncdbs = tmp_files_handle.syncdbs; while (syncdbs != null) { unowned Alpm.DB db = syncdbs.data; From bb96e85e05fb12686b481b063db938c6ec269306 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 11 Nov 2017 11:30:47 -0300 Subject: [PATCH 3/7] gschemas translations and autovala support --- CMakeLists.txt | 3 +- data/CMakeLists.txt | 6 + data/org.pamac.aur.gschema.xml | 126 +++++++++++++++ ...chema.xml => org.pamac.aur.gschema.xml.in} | 5 - data/org.pamac.main.gschema.xml | 143 ++++++++++++++++++ ...hema.xml => org.pamac.main.gschema.xml.in} | 9 -- data/schemas/CMakeLists.txt | 33 ---- meson.build | 14 +- meson_options.txt | 2 +- meson_scripts/install_schemas.py | 10 ++ pamac.avprj | 9 +- po/Makefile | 2 + po/af.po | 120 +++++++++++++-- po/ar.po | 120 +++++++++++++-- po/ast.po | 120 +++++++++++++-- po/az_AZ.po | 120 +++++++++++++-- po/be.po | 120 +++++++++++++-- po/bg.po | 120 +++++++++++++-- po/bn.po | 120 +++++++++++++-- po/bs.po | 120 +++++++++++++-- po/bs_BA.po | 120 +++++++++++++-- po/ca.po | 120 +++++++++++++-- po/ca_ES.po | 120 +++++++++++++-- po/cs.po | 120 +++++++++++++-- po/cs_CZ.po | 120 +++++++++++++-- po/cy.po | 120 +++++++++++++-- po/da.po | 120 +++++++++++++-- po/de.po | 120 +++++++++++++-- po/de_CH.po | 120 +++++++++++++-- po/de_DE.po | 120 +++++++++++++-- po/el.po | 120 +++++++++++++-- po/el_GR.po | 120 +++++++++++++-- po/en_GB.po | 120 +++++++++++++-- po/eo.po | 120 +++++++++++++-- po/es.po | 120 +++++++++++++-- po/es_419.po | 120 +++++++++++++-- po/es_AR.po | 120 +++++++++++++-- po/es_ES.po | 120 +++++++++++++-- po/es_MX.po | 120 +++++++++++++-- po/es_SV.po | 120 +++++++++++++-- po/et.po | 120 +++++++++++++-- po/eu.po | 120 +++++++++++++-- po/fa.po | 120 +++++++++++++-- po/fa_IR.po | 120 +++++++++++++-- po/fi.po | 120 +++++++++++++-- po/files_to_translate | 2 + po/fo.po | 120 +++++++++++++-- po/fr.po | 120 +++++++++++++-- po/gl.po | 120 +++++++++++++-- po/he.po | 120 +++++++++++++-- po/hi.po | 120 +++++++++++++-- po/hi_IN.po | 120 +++++++++++++-- po/hr.po | 120 +++++++++++++-- po/hr_HR.po | 120 +++++++++++++-- po/hu.po | 120 +++++++++++++-- po/id.po | 120 +++++++++++++-- po/is.po | 120 +++++++++++++-- po/is_IS.po | 120 +++++++++++++-- po/it.po | 120 +++++++++++++-- po/it_IT.po | 120 +++++++++++++-- po/ja.po | 120 +++++++++++++-- po/ka.po | 120 +++++++++++++-- po/ko.po | 120 +++++++++++++-- po/lt.po | 120 +++++++++++++-- po/ml.po | 120 +++++++++++++-- po/ms.po | 120 +++++++++++++-- po/nb.po | 120 +++++++++++++-- po/nl.po | 120 +++++++++++++-- po/nl_BE.po | 120 +++++++++++++-- po/nl_NL.po | 120 +++++++++++++-- po/nn.po | 120 +++++++++++++-- po/pamac.pot | 120 +++++++++++++-- po/pl.po | 120 +++++++++++++-- po/pl_PL.po | 120 +++++++++++++-- po/pt.po | 120 +++++++++++++-- po/pt_BR.po | 120 +++++++++++++-- po/pt_PT.po | 120 +++++++++++++-- po/ro.po | 120 +++++++++++++-- po/ru.po | 120 +++++++++++++-- po/si.po | 120 +++++++++++++-- po/sk.po | 120 +++++++++++++-- po/sl.po | 120 +++++++++++++-- po/sl_SI.po | 120 +++++++++++++-- po/sr.po | 120 +++++++++++++-- po/sr@latin.po | 120 +++++++++++++-- po/sr_RS.po | 120 +++++++++++++-- po/sr_RS@latin.po | 120 +++++++++++++-- po/sv.po | 120 +++++++++++++-- po/tr.po | 120 +++++++++++++-- po/uk.po | 120 +++++++++++++-- po/ur_PK.po | 120 +++++++++++++-- po/uz.po | 120 +++++++++++++-- po/vi.po | 120 +++++++++++++-- po/zh.po | 120 +++++++++++++-- po/zh_CN.po | 120 +++++++++++++-- po/zh_TW.po | 120 +++++++++++++-- src/CMakeLists.txt | 10 +- src/meson.build | 8 +- src/pamac-clean-cache/CMakeLists.txt | 10 +- src/pamac-clean-cache/meson.build | 8 +- src/pamac-install/CMakeLists.txt | 10 +- src/pamac-install/meson.build | 8 +- src/pamac-manager/CMakeLists.txt | 10 +- src/pamac-manager/meson.build | 8 +- src/pamac-system-daemon/CMakeLists.txt | 10 +- src/pamac-system-daemon/meson.build | 8 +- src/pamac-tray/CMakeLists.txt | 10 +- src/pamac-tray/meson.build | 8 +- src/pamac-user-daemon/CMakeLists.txt | 10 +- src/pamac-user-daemon/meson.build | 8 +- 110 files changed, 9164 insertions(+), 1286 deletions(-) create mode 100644 data/org.pamac.aur.gschema.xml rename data/{schemas/org.pamac.aur.gschema.xml => org.pamac.aur.gschema.xml.in} (99%) create mode 100644 data/org.pamac.main.gschema.xml rename data/{schemas/org.pamac.main.gschema.xml => org.pamac.main.gschema.xml.in} (99%) delete mode 100644 data/schemas/CMakeLists.txt create mode 100755 meson_scripts/install_schemas.py diff --git a/CMakeLists.txt b/CMakeLists.txt index 0252e40..23fa7e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,10 +8,10 @@ list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) enable_testing () 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) +option(DISABLE_AUR "DISABLE_AUR" OFF) if( NOT CMAKE_BUILD_TYPE ) set(CMAKE_BUILD_TYPE Release) @@ -61,7 +61,6 @@ if ( NOT WHERE_GRESOURCE ) endif() add_subdirectory(src/vapis) -add_subdirectory(data/schemas) add_subdirectory(po) add_subdirectory(data/pixmaps) add_subdirectory(data/mime) diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index aa833b0..8f838b7 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -58,3 +58,9 @@ else() MESSAGE(STATUS "Autostart file data/pamac-tray.desktop will not be installed. You must create your own .desktop file and put it at ~/.config/autostart") endif() endif () +include(GSettings) +add_schema(org.pamac.main.gschema.xml) +if (NOT DISABLE_AUR) + include(GSettings) +add_schema(org.pamac.aur.gschema.xml) +endif () diff --git a/data/org.pamac.aur.gschema.xml b/data/org.pamac.aur.gschema.xml new file mode 100644 index 0000000..e46a9a6 --- /dev/null +++ b/data/org.pamac.aur.gschema.xml @@ -0,0 +1,126 @@ + + + + + false + Enable AUR + + Allow Pamac to search and install packages from AUR + + Biarkan Pamac untuk mencari dan memasang paket dari AUR + Pamac toestaan om pakketten van AUR te zoeken en installeren + Dozvoli Pamac-u da traži i instalira pakete iz AUR-a + Дозволити Pamac шукати та встановлювати пакунки з AUR + Permitir que Pacman guete ya instale paquetes dende AUR + Позволи на Pamac да търси и инсталира пакети от AUR + Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR + Разрешить Pamac искать и устанавливать пакеты из AUR + Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren + اجازه دادن pamac برای جستجو و نصب بسته ها از AUR + Permette a Pamac cercare e installare pacchetti dal AUR + Leisti Pamac ieškoti ir diegti paketus iš AUR + Luba Pamacil otsida ning paigaldada pakette AURist + אפשר לPamac לחפש ולהתקין חבילות מתוך AUR + AUR paketleri aramak ve kurmak için izin ver + Permetre a Pamac buscar e instal·lar paquets des d'AUR + Pamac toestaan om pakketten van het AUR op te zoeken en te installeren + Permitir que o Pamac procure e instale pacotes do AUR + Permitir a Pamac que procure e instale os pacotes a partir de AUR + PamacがAURパッケージを探索し、インストールすることを許可する + Tillat Pamac å søke etter og installere pakker fra AUR + Pamac kereshet és telepíthet csomagokat az AUR -ból + Pamac toestaan om AUR pakketten te zoeken en te installeren + Permitir a Pamac buscar e instalar paquetes de AUR + Allow Pamac to search and install packages from AUR + Permitir que o Pamac procure e instale pacotes do AUR + Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति + Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR + 允许 Pamac 从 AUR 中搜索并安装软件包 + Cho phép Pamac tìm kiếm và cài đặt gói từ AUR + Tillåt Pamac att söka och installera paket från AUR + Gør det muligt for Pamac at søge i og installere pakker fra AUR + Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR + Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR + Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے + Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu + Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR + Омогући Памаку да претражује и инсталира пакете из AUR-a + Permite Pamac să caute și să instaleze pachete din AUR + Permettre à Pamac de chercher et installer des paquets depuis AUR + Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR + Permitir a Pamac buscar e instalar paquetes desde AUR + Dovoli Pamacu da išče in namešča pakete iz AUR + Anna Pamacin etsiä ja asentaa paketteja AUR:sta + Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish + 允許 Pamac 搜尋及安裝 AUR 上的軟體包 + Permitir Pamac para buscar e instalar paquetes desde AUR + Leyfa Pamac að leita að og setja inn pakka frá AUR + السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR + + + true + Search in AUR by default + AUR-da axtarmaq + Cari di AUR sebagai baku + Standaard in AUR zoeken + Uvijek traži u AUR-u + Шукати в AUR типово + Guetar n'AUR por defeutu + Търсене в AUR по подразбиране + Predvolene vyhľadávať v repozitári AUR + Поиск в AUR по умолчанию + Suche standardmäßig im AUR + جستجوی در AUR به صورت پیش فرض + Cerca in AUR come impostazione predefinita. + Pagal numatymą ieškoti AUR saugykloje + Vaikimisi otsi AURist + חפש בתוך AUR באופן שגרתי + Varsayılan olarak AUR depolarında da ara + Cerca a l'AUR per defecte + Zoek automatisch in AUR + Pesquisar no AUR por padrão + Pesquisar no AUR por padrão + デフォルトでAURを検索する + Søk i AUR som standard + Keresés AUR -ban alapértelmezetten + Stel zoeken in AUR als standaard in + Buscar en AUR por defecto + Search in AUR by default + Pesquisar no AUR por pré-definição + डिफ़ॉल्ट रूप से AUR में खोजें + Wyszukuj domyślnie w AUR + 默认在 AUR 中搜索 + Sök i AUR som standard + Søg i AUR som standard + Hledat v AUR defaultně + Αναζήτηση στο AUR από προεπιλογή + Bilatu AURen lehenetsita + Αναζήτηση στο AUR από προεπιλογή + Caută în AUR implicit + Rechercher depuis AUR par défaut + Buscar en AUR por defecto + Privzeto iskanje v AUR + 預設在 AUR 中搜尋 + Buscar en AUR por defecto + Leita sjálfgefið í AUR + بحث في AUR بشكل افتراضي + + When AUR support is enabled search in AUR by default + + + + false + Check AUR for updates + + When AUR support is enabled check for updates from AUR + + + + "/tmp" + AUR build directory + + Directory where to build packages that come from the AUR + + + + diff --git a/data/schemas/org.pamac.aur.gschema.xml b/data/org.pamac.aur.gschema.xml.in similarity index 99% rename from data/schemas/org.pamac.aur.gschema.xml rename to data/org.pamac.aur.gschema.xml.in index 8956daf..aef3a61 100644 --- a/data/schemas/org.pamac.aur.gschema.xml +++ b/data/org.pamac.aur.gschema.xml.in @@ -1,6 +1,5 @@ - false Enable AUR @@ -8,7 +7,6 @@ Allow Pamac to search and install packages from AUR - true Search in AUR by default @@ -16,7 +14,6 @@ When AUR support is enabled search in AUR by default - false Check AUR for updates @@ -24,7 +21,6 @@ When AUR support is enabled check for updates from AUR - "/tmp" AUR build directory @@ -32,6 +28,5 @@ Directory where to build packages that come from the AUR - diff --git a/data/org.pamac.main.gschema.xml b/data/org.pamac.main.gschema.xml new file mode 100644 index 0000000..1762484 --- /dev/null +++ b/data/org.pamac.main.gschema.xml @@ -0,0 +1,143 @@ + + + + + false + Remove unrequired dependencies + Hapus dependensi yang tidak dibutuhkan + Niet-benodigde afhankelijkheden verwijderen + Ukloni nepotrebne zavisnosti + Вилучити непотрібні залежності + Desaniciar dependencies non riquíes + Премахни ненужни зависимости + Odstrániť nepožadované závislosti + Удалить ненужные зависимости + Entferne nicht benötigte Abhängigkeiten + حذف وابستگی های غیرضروری + Rimuovere le dipendenze non necessarie + Šalinti nereikalingas priklausomybes + Eemalda mitte-nõutud sõltuvused + הסר תוספים לא נחוצים + Gereksiz bağımlılıkları kaldır + Elimina les dependències no requerides + Verwijder onnodige afhankelijkheiden + Remover dependências não requeridas + Remover dependências desnecessárias + 必要ではない依存関係を削除 + Fjern avhengige pakker som er unødvendige + Nem megkövetelt függőségek eltávolítása + Verwijder onnodige afhankelijkheden + Remover dependencias no requeridas + Remove unrequired dependencies + Remover dependências não requeridas + संयुक्त राष्ट्र आवश्यक निर्भरता निकालें + Usuwanie niewymaganych zależności + 移除不需要的依赖 + Gỡ bỏ phần phụ thuộc không cần thiết + Ta bort icke-nödvändiga beroenden + Fjern unødvendige afhængigheder + Odebrat nepotřebné závislosti + Αφαίρεση αχρησιμοποίητων εξαρτήσεων + غیر ضروری انحصار پیکج نکال دیں + Kendu behar ez diren menpekotasunak + Αφαίρεση αχρησιμοποίητων εξαρτήσεων + Уклони непотребне зависности + Elimină dependențe ce nu sunt necesare + Désinstaller les dépendances inutiles + Ukloni nepotrebne zavisnosti + Eliminar dependencias innecesarias + Odstrani nezahtevane odvisnosti + Poista ei-vaaditut riippuvuudet + Talab etilmagan qaramliklarni olib tashlash + 移除不需要的相依性 + Elimina dependencias sen contrapartida + Fjarlægja ónauðsynlegar kerfiskröfur + حذف الاعتماديات الغير مطلوبة + + When removing a package, also remove those dependencies that are not required by other packages (recurse option) + + + + 6 + Refresh period + + How often to check for updates, value in hours (0 to disable) + + + + true + Hide icon if there are no updates + + When there are no updates available, hide the tray icon + + + + 3 + Numer of packages to keep + + Number of versions of each package to keep in the cache + + Aantal in de cache te houden versies van elk pakket + Broj različitih verzija paketa za spremiti u predmemoriju + Кількість версій кожного пакунка зберігається в кеш-пам'яті + Брой версии от всеки пакет запазени в кеша + Počet verzií každého balíka, ktoré ponechať vo vyrovnávacej pamäti + Сохранять в кэше предыдущие версии пакетов в количестве + Anzahl der im Cache verbleibenden Paketversionen + تعدادی از نسخه های هر بسته را در حافظه موقت نگهداری کن + Numero di versioni di ogni pacchetto da conservare nella cache + Podėlyje laikomas kiekvieno paketo versijų skaičius + Önbellekte tutlacak her bir paketin sürüm sayısı + Nombre de versions de cada paquet per mantenir a la memòria cau + Número de versões de cada pacote a manter na cache + Número de versões de cada pacote a manter na cache + 各パッケージのバージョン番号をキャッシュに保存する + Antall versjoner av hver pakke som skal beholdes i hurtiglageret + A cache- ben csomagonként megtartandó példányok száma: + Aantal in de cache te houden versies van elk pakket + Número de versiones de cada paquete a mantener en caché + Número de versões de cada pacote a manter na cache + Liczba wersji każdego pakietu do przechowywania w pamięci podręcznej + 每个软件包保留在缓存中的版本数目 + Antal versioner av varje paket att behålla i cachen + Antal versioner af hver pakke der skal gemmes i cache + Počet verzí od každého balíčku udržovaného v paměti cache. + Katxean gorde beharreko pakete bakotzeko bertsio kopurua + Αριθμός των εκδόσεων για κάθε πακέτο που θα κρατηθεί στην αποθήκη + Nombre de versions de chaque paquet à conserver dans le cache + Número de versiones de cada paquete a guardar en cache + Število verzij za vsak paket shranjenih v predpomnilniku + 每個軟體包要保留在快取中的版本數量 + Número de versións de cada paquete para gardar na caché + Fjöldi af útgáfum af hverjum pakka til að halda í skyndiminni + + + false + Remove only uninstalled packages when cleaning cache + + Remove only the versions of uninstalled packages when clean cache + + + + "rgb(0,0,0)" + Terminal background color + + Terminal background color + + + + "rgb(255,255,255)" + Terminal foreground color + + Terminal foreground color + + + + "Monospace Regular 12" + Terminal font + + The font used in the terminal + + + + diff --git a/data/schemas/org.pamac.main.gschema.xml b/data/org.pamac.main.gschema.xml.in similarity index 99% rename from data/schemas/org.pamac.main.gschema.xml rename to data/org.pamac.main.gschema.xml.in index b82f8c0..f21ef34 100644 --- a/data/schemas/org.pamac.main.gschema.xml +++ b/data/org.pamac.main.gschema.xml.in @@ -1,6 +1,5 @@ - false Remove unrequired dependencies @@ -8,7 +7,6 @@ When removing a package, also remove those dependencies that are not required by other packages (recurse option) - 6 Refresh period @@ -16,7 +14,6 @@ How often to check for updates, value in hours (0 to disable) - true Hide icon if there are no updates @@ -24,7 +21,6 @@ When there are no updates available, hide the tray icon - 3 Numer of packages to keep @@ -32,7 +28,6 @@ Number of versions of each package to keep in the cache - false Remove only uninstalled packages when cleaning cache @@ -40,7 +35,6 @@ Remove only the versions of uninstalled packages when clean cache - "rgb(0,0,0)" Terminal background color @@ -48,7 +42,6 @@ Terminal background color - "rgb(255,255,255)" Terminal foreground color @@ -56,7 +49,6 @@ Terminal foreground color - "Monospace Regular 12" Terminal font @@ -64,6 +56,5 @@ The font used in the terminal - diff --git a/data/schemas/CMakeLists.txt b/data/schemas/CMakeLists.txt deleted file mode 100644 index 3590f79..0000000 --- a/data/schemas/CMakeLists.txt +++ /dev/null @@ -1,33 +0,0 @@ -### CMakeLists automatically created with AutoVala -### Do not edit - -IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml) - install(DIRECTORY - ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml - DESTINATION - /usr/share/glib-2.0/schemas - ) -ELSE() - install(FILES - ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.main.gschema.xml - DESTINATION - /usr/share/glib-2.0/schemas - ) -ENDIF() - -if (NOT DISABLE_AUR) - IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml) - install(DIRECTORY - ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml - DESTINATION - /usr/share/glib-2.0/schemas - ) -ELSE() - install(FILES - ${CMAKE_CURRENT_SOURCE_DIR}/org.pamac.aur.gschema.xml - DESTINATION - /usr/share/glib-2.0/schemas - ) -ENDIF() - -endif () diff --git a/meson.build b/meson.build index b40833d..b7125af 100644 --- a/meson.build +++ b/meson.build @@ -1,9 +1,9 @@ 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') != '') +DISABLE_AUR = (get_option('DISABLE_AUR') != '') add_global_arguments('-DGETTEXT_PACKAGE="pamac-classic"',language: 'c') @@ -36,12 +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/glib-2.0/schemas',join_paths(meson.current_source_dir(),'data/schemas','org.pamac.main.gschema.xml')) - -if not DISABLE_AUR - meson.add_install_script(join_paths(meson.current_source_dir(),'meson_scripts','install_data.sh'),'/usr/share/glib-2.0/schemas',join_paths(meson.current_source_dir(),'data/schemas','org.pamac.aur.gschema.xml')) - -endif pamac_installer_gresource_xml_generator = generator(find_program('glib-compile-resources'), arguments: [ '--sourcedir=@SOURCE_DIR@/data' , '--generate-source', '--target=@BUILD_DIR@/pamac.installer.gresource.xml.c', '@INPUT@'], output: '@PLAINNAME@.c') pamac_installer_gresource_xml_file_c = pamac_installer_gresource_xml_generator.process(['data/pamac.installer.gresource.xml']) @@ -77,6 +71,12 @@ install_data(dbus_cfg_org_pamac_system_service,install_dir: join_paths(get_optio dbus_cfg_org_pamac_user_service = configure_file(input: 'data/dbus/org.pamac.user.service',output: 'org.pamac.user.service', configuration: cfg_dbus_data) install_data(dbus_cfg_org_pamac_user_service,install_dir: join_paths(get_option('prefix'),get_option('datadir'),'dbus-1','services')) install_data( 'data/dbus/org.pamac.system.conf',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'dbus-1','system.d')) +install_data('data/org.pamac.main.gschema.xml', install_dir: join_paths(get_option('prefix'),get_option('datadir'), 'glib-2.0', 'schemas')) +meson.add_install_script('meson_scripts/install_schemas.py') +if not DISABLE_AUR + install_data('data/org.pamac.aur.gschema.xml', install_dir: join_paths(get_option('prefix'),get_option('datadir'), 'glib-2.0', 'schemas')) + meson.add_install_script('meson_scripts/install_schemas.py') +endif install_data('data/icons/16x16/apps/system-software-install.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'icons','hicolor/16x16/apps')) install_data('data/icons/24x24/status/pamac-tray-no-update.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'icons','hicolor/24x24/apps')) install_data('data/icons/24x24/status/pamac-tray-update.png',install_dir: join_paths(get_option('prefix'),get_option('datadir'),'icons','hicolor/24x24/apps')) diff --git a/meson_options.txt b/meson_options.txt index a95daa9..e687435 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +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: '') +option('DISABLE_AUR',type : 'string', value: '') diff --git a/meson_scripts/install_schemas.py b/meson_scripts/install_schemas.py new file mode 100755 index 0000000..d4c442b --- /dev/null +++ b/meson_scripts/install_schemas.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +import os +import subprocess + +schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') + +if not os.environ.get('DESTDIR'): + print('Compiling gsettings schemas...') + subprocess.call(['glib-compile-schemas', schemadir]) \ No newline at end of file diff --git a/pamac.avprj b/pamac.avprj index 34ac185..f42ad3b 100644 --- a/pamac.avprj +++ b/pamac.avprj @@ -9,10 +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/schemas/org.pamac.main.gschema.xml /usr/share/glib-2.0/schemas -if NOT DISABLE_AUR -custom: data/schemas/org.pamac.aur.gschema.xml /usr/share/glib-2.0/schemas -end define: ENABLE_UPDATE_ICON define: ENABLE_HAMBURGER @@ -213,6 +209,11 @@ end *dbus_config: data/dbus/org.pamac.system.conf +*scheme: data/org.pamac.main.gschema.xml +if NOT DISABLE_AUR +scheme: data/org.pamac.aur.gschema.xml +end + *full_icon: Hicolor Applications data/icons/16x16/apps/system-software-install.png *full_icon: Hicolor Applications data/icons/24x24/status/pamac-tray-no-update.png *full_icon: Hicolor Applications data/icons/24x24/status/pamac-tray-update.png diff --git a/po/Makefile b/po/Makefile index 14f326b..bedd223 100644 --- a/po/Makefile +++ b/po/Makefile @@ -5,6 +5,8 @@ MSGOBJS=$(addprefix locale/,$(MSGLANGS:.po=/LC_MESSAGES/pamac.mo)) gettext: ../data/polkit/org.pamac.policy.in $(MSGOBJS) msgfmt --xml --template ../data/polkit/org.pamac.policy.in -d ./ -o ../data/polkit/org.pamac.policy + msgfmt --xml --template ../data/org.pamac.aur.gschema.xml.in -d ./ -o ../data/org.pamac.aur.gschema.xml + msgfmt --xml --template ../data/org.pamac.main.gschema.xml.in -d ./ -o ../data/org.pamac.main.gschema.xml clean: rm -rf locale diff --git a/po/af.po b/po/af.po index b8ceb01..20feb55 100644 --- a/po/af.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Afrikaans (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ar.po b/po/ar.po index 6061e2b..636408b 100644 --- a/po/ar.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Arabic (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -592,7 +592,8 @@ msgstr "الواجهة Gtk3 لlibalpm" msgid "How often to check for updates, value in hours" msgstr "كيف سيتم التحقق من توفر تحديثات في اغلب الأوقات, قيمة بالساعات" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -612,6 +613,109 @@ msgstr "سرعة" msgid "Random" msgstr "عشوائية" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "بحث في AUR بشكل افتراضي" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "حذف الاعتماديات الغير مطلوبة" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "صلاحيات مطلوبة" @@ -697,10 +801,6 @@ msgstr "ملفات" msgid "_Apply" msgstr "_تطبيق" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "حذف الاعتماديات الغير مطلوبة" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -772,14 +872,6 @@ msgstr "" msgid "Enable AUR support" msgstr "تفعيل دعم مستودعات AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "بحث في AUR بشكل افتراضي" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr " AUR تحقق من وجود تحديثات من " diff --git a/po/ast.po b/po/ast.po index 8ca2f17..c6c7b46 100644 --- a/po/ast.po +++ b/po/ast.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Asturian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -578,7 +578,8 @@ msgstr "Un frontal GTK3 pa libalpm" msgid "How often to check for updates, value in hours" msgstr "¿Cuándo quies guetar anovamientos? Valor n'hores" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -598,6 +599,109 @@ msgstr "Velocidá" msgid "Random" msgstr "Al debalu" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que Pacman guete ya instale paquetes dende AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Guetar n'AUR por defeutu" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Desaniciar dependencies non riquíes" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Ríquese l'autenticación" @@ -683,10 +787,6 @@ msgstr "Ficheros" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Desaniciar dependencies non riquíes" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -761,14 +861,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar sofitu d'AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que Pacman guete ya instale paquetes dende AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Guetar n'AUR por defeutu" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar anovamientos d'AUR" diff --git a/po/az_AZ.po b/po/az_AZ.po index 99a6a6f..8dc1eba 100644 --- a/po/az_AZ.po +++ b/po/az_AZ.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/" @@ -573,7 +573,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "Sürət" msgid "Random" msgstr "Təsadüfi" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "AUR-da axtarmaq" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Kimlik tələb olunur" @@ -678,10 +782,6 @@ msgstr "Fayllar" msgid "_Apply" msgstr "_Tətbiq etmək" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -751,14 +851,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR dəstəyini aktiv et" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "AUR-da axtarmaq" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR-dan yeniliklərin yoxlanılması" diff --git a/po/be.po b/po/be.po index 1d0ad78..43130c9 100644 --- a/po/be.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Belarusian (http://www.transifex.com/manjarolinux/manjaro-" @@ -580,7 +580,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,6 +601,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -685,10 +789,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -758,14 +858,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bg.po b/po/bg.po index 722803b..5fa6cad 100644 --- a/po/bg.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-08-01 11:22+0000\n" "Last-Translator: Galin Iskrenov \n" "Language-Team: Bulgarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -579,7 +579,8 @@ msgstr "GTK3 интерфейс за libalpm" msgid "How often to check for updates, value in hours" msgstr "Колко често да се проверява за актуализации, стойност в часове" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Брой версии от всеки пакет запазени в кеша" @@ -599,6 +600,109 @@ msgstr "Скорост" msgid "Random" msgstr "Разбъркано " +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Позволи на Pamac да търси и инсталира пакети от AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Търсене в AUR по подразбиране " + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Премахни ненужни зависимости" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Изисква се идентификация" @@ -684,10 +788,6 @@ msgstr "Файлове" msgid "_Apply" msgstr "_Приложи" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Премахни ненужни зависимости" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -761,14 +861,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Позволи AUR поддръжка" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Позволи на Pamac да търси и инсталира пакети от AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Търсене в AUR по подразбиране " - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Проверка за актуализации от AUR" diff --git a/po/bn.po b/po/bn.po index aa349ff..140d057 100644 --- a/po/bn.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bengali (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bs.po b/po/bs.po index ebd5ab2..4e4a805 100644 --- a/po/bs.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bs_BA.po b/po/bs_BA.po index 60c0554..eecc2f1 100644 --- a/po/bs_BA.po +++ b/po/bs_BA.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ca.po b/po/ca.po index 88cd151..42a351c 100644 --- a/po/ca.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 14:18+0000\n" "Last-Translator: Davidmp \n" "Language-Team: Catalan (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,7 +581,8 @@ msgstr "Una interfície Gtk3 per a libalpm" msgid "How often to check for updates, value in hours" msgstr "Freqüència per comprovar si hi ha actualitzacions, valor en hores" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Nombre de versions de cada paquet per mantenir a la memòria cau" @@ -601,6 +602,109 @@ msgstr "Velocitat" msgid "Random" msgstr "Aleatori" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permetre a Pamac buscar e instal·lar paquets des d'AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cerca a l'AUR per defecte" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimina les dependències no requerides" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Cal autenticació" @@ -686,10 +790,6 @@ msgstr "Fitxers" msgid "_Apply" msgstr "_Aplica" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimina les dependències no requerides" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -766,14 +866,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar suport per AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permetre a Pamac buscar e instal·lar paquets des d'AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cerca a l'AUR per defecte" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprova si hi ha actualitzacions de l'AUR" diff --git a/po/ca_ES.po b/po/ca_ES.po index 9a2ecbb..4316cd6 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/manjarolinux/" @@ -576,7 +576,8 @@ msgstr "interfície Gtk3 per a libalpm" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Cal autenticació" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/cs.po b/po/cs.po index 051881b..31bcf5c 100644 --- a/po/cs.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -582,7 +582,8 @@ msgstr "Gtk3 frontend pro libalpm" msgid "How often to check for updates, value in hours" msgstr "Jak často kontrolovat aktualizace, hodnota v hodinách" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Počet verzí od každého balíčku udržovaného v paměti cache." @@ -602,6 +603,109 @@ msgstr "rychlost" msgid "Random" msgstr "náhodně" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Hledat v AUR defaultně" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odebrat nepotřebné závislosti" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Je vyžadováno ověření" @@ -687,10 +791,6 @@ msgstr "Soubory" msgid "_Apply" msgstr "_Použít" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odebrat nepotřebné závislosti" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -765,14 +865,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Povolit podporu AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Hledat v AUR defaultně" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Zkontrolovat aktualizace z AUR" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index c0952ba..fba9234 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/manjarolinux/" @@ -579,7 +579,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -599,6 +600,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -684,10 +788,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -757,14 +857,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/cy.po b/po/cy.po index d46d477..e1f61bb 100644 --- a/po/cy.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Welsh (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,7 +579,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -599,6 +600,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -684,10 +788,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -757,14 +857,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/da.po b/po/da.po index 3fe0d18..1a8b94d 100644 --- a/po/da.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Danish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -583,7 +583,8 @@ msgstr "En frontend til libalpm" msgid "How often to check for updates, value in hours" msgstr "Hvor ofte der checkes efter opdatering, værdi opgives i timer" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antal versioner af hver pakke der skal gemmes i cache" @@ -603,6 +604,109 @@ msgstr "Hastighed" msgid "Random" msgstr "Tilfældig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Gør det muligt for Pamac at søge i og installere pakker fra AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Søg i AUR som standard" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjern unødvendige afhængigheder" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Godkendelse er påkrævet" @@ -688,10 +792,6 @@ msgstr "Filer" msgid "_Apply" msgstr "_Anvend" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjern unødvendige afhængigheder" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -766,14 +866,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktiver AUR-understøttelse" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Gør det muligt for Pamac at søge i og installere pakker fra AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Søg i AUR som standard" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Tjek efter opdateringer fra AUR" diff --git a/po/de.po b/po/de.po index 324b1d0..e3e6078 100644 --- a/po/de.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -590,7 +590,8 @@ msgstr "Eine GTK3-Benutzeroberfläche für libalpm" msgid "How often to check for updates, value in hours" msgstr "Wie oft soll nach Erneuerungen geprüft werden? (Wert in Stunden)" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Anzahl der im Cache verbleibenden Paketversionen" @@ -610,6 +611,109 @@ msgstr "Geschwindigkeit" msgid "Random" msgstr "Zufällig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Suche standardmäßig im AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Entferne nicht benötigte Abhängigkeiten" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authentifizierung erforderlich" @@ -695,10 +799,6 @@ msgstr "Dateien" msgid "_Apply" msgstr "_Übernehmen" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Entferne nicht benötigte Abhängigkeiten" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -775,14 +875,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR-Support aktivieren" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Suche standardmäßig im AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Suche nach Aktualisierungen aus dem AUR" diff --git a/po/de_CH.po b/po/de_CH.po index 2aec7e7..955f034 100644 --- a/po/de_CH.po +++ b/po/de_CH.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Switzerland) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 7729259..50fd2c3 100644 --- a/po/de_DE.po +++ b/po/de_DE.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Germany) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/el.po b/po/el.po index 7b79254..955df2a 100644 --- a/po/el.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -584,7 +584,8 @@ msgstr "Ένα gtk3 εμπρόσθιο τμήμα για το pyalpm" msgid "How often to check for updates, value in hours" msgstr "Πόσο συχνά να ελέγχονται αναβαθμίσεις, τιμή σε ώρες" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Αριθμός των εκδόσεων για κάθε πακέτο που θα κρατηθεί στην αποθήκη" @@ -604,6 +605,109 @@ msgstr "Ταχύτητα" msgid "Random" msgstr "Τυχαίο" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Αναζήτηση στο AUR από προεπιλογή" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Απαιτείται πιστοποίηση" @@ -689,10 +793,6 @@ msgstr "Αρχεία" msgid "_Apply" msgstr "Εφαρμογή" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -767,14 +867,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Ενεργοποίηση υποστήριξης AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Αναζήτηση στο AUR από προεπιλογή" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Έλεγχος για αναβαθμίσεις από το AUR" diff --git a/po/el_GR.po b/po/el_GR.po index 53bdce6..eda313f 100644 --- a/po/el_GR.po +++ b/po/el_GR.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (Greece) (http://www.transifex.com/manjarolinux/manjaro-" @@ -573,7 +573,8 @@ msgstr "Ένα gtk3 εμπρόσθιο τμήμα για το pyalpm" msgid "How often to check for updates, value in hours" msgstr "Πόσο συχνά να ελέγχονται αναβαθμίσεις, τιμή σε ώρες" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "Ταχύτητα" msgid "Random" msgstr "Τυχαίο" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Αναζήτηση στο AUR από προεπιλογή" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Απαιτείται πιστοποίηση" @@ -678,10 +782,6 @@ msgstr "Αρχεία" msgid "_Apply" msgstr "Εφαρμογή" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -756,14 +856,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Ενεργοποίηση υποστήριξης AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Αναζήτηση στο AUR από προεπιλογή" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Έλεγχος για αναβαθμίσεις από το AUR" diff --git a/po/en_GB.po b/po/en_GB.po index baf6a36..0b7d0c5 100644 --- a/po/en_GB.po +++ b/po/en_GB.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/" @@ -575,7 +575,8 @@ msgstr "A Gtk3 frontend for libalpm" msgid "How often to check for updates, value in hours" msgstr "How often to check for updates, value in hours" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -595,6 +596,109 @@ msgstr "Speed" msgid "Random" msgstr "Random" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Allow Pamac to search and install packages from AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Search in AUR by default" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remove unrequired dependencies" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -680,10 +784,6 @@ msgstr "Files" msgid "_Apply" msgstr "_Apply" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remove unrequired dependencies" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -758,14 +858,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Enable AUR support" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Allow Pamac to search and install packages from AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Search in AUR by default" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Check for updates from AUR" diff --git a/po/eo.po b/po/eo.po index f77061a..9c84d9e 100644 --- a/po/eo.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Esperanto (http://www.transifex.com/manjarolinux/manjaro-" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "Dosieroj" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es.po b/po/es.po index 7e27633..689d499 100644 --- a/po/es.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -584,7 +584,8 @@ msgstr "Una interfaz gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frecuencia para buscar actualizaciones, valor en horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versiones de cada paquete a guardar en cache" @@ -604,6 +605,109 @@ msgstr "Velocidad" msgid "Random" msgstr "Aleatorio" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac buscar e instalar paquetes desde AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Eliminar dependencias innecesarias " + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se necesita autenticación" @@ -689,10 +793,6 @@ msgstr "Archivos" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Eliminar dependencias innecesarias " - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -770,14 +870,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar soporte para AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac buscar e instalar paquetes desde AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizaciones desde AUR" diff --git a/po/es_419.po b/po/es_419.po index e0427d5..e17d5fe 100644 --- a/po/es_419.po +++ b/po/es_419.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/" @@ -576,7 +576,8 @@ msgstr "Un frontend Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Cuán seguido revisar por actualizaciones, valor en horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versiones de cada paquete a mantener en caché" @@ -596,6 +597,109 @@ msgstr "Velocidad" msgid "Random" msgstr "Al azar" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac buscar e instalar paquetes de AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependencias no requeridas" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se requiere autenticación" @@ -681,10 +785,6 @@ msgstr "Buscar en AUR" msgid "_Apply" msgstr "...Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependencias no requeridas" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -761,14 +861,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar soporte de AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac buscar e instalar paquetes de AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizaciones desde AUR" diff --git a/po/es_AR.po b/po/es_AR.po index 35a2635..3362372 100644 --- a/po/es_AR.po +++ b/po/es_AR.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 1f264bd..a568d7b 100644 --- a/po/es_ES.po +++ b/po/es_ES.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_MX.po b/po/es_MX.po index 0c4b96b..24c94de 100644 --- a/po/es_MX.po +++ b/po/es_MX.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/manjarolinux/" @@ -573,7 +573,8 @@ msgstr "Una interfaz de gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se requiere autenticación" @@ -678,10 +782,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -751,14 +851,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_SV.po b/po/es_SV.po index 7d14e0a..af4671d 100644 --- a/po/es_SV.po +++ b/po/es_SV.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (El Salvador) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/et.po b/po/et.po index 266c87e..e83db6b 100644 --- a/po/et.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Estonian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -575,7 +575,8 @@ msgstr "Gtk3 eessüsteem libalpm tarbeks" msgid "How often to check for updates, value in hours" msgstr "Kui tihti kontrollida uuendusi, väärtus tundides" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -595,6 +596,109 @@ msgstr "Kiirus" msgid "Random" msgstr "Suvaline" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Luba Pamacil otsida ning paigaldada pakette AURist" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Vaikimisi otsi AURist" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Eemalda mitte-nõutud sõltuvused" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -680,10 +784,6 @@ msgstr "Failid" msgid "_Apply" msgstr "_Rakenda" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Eemalda mitte-nõutud sõltuvused" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -755,14 +855,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Võimalda AURi tugi" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Luba Pamacil otsida ning paigaldada pakette AURist" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Vaikimisi otsi AURist" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Kontrolli uuendusi AURist" diff --git a/po/eu.po b/po/eu.po index 8cb3a6c..2a5486d 100644 --- a/po/eu.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Basque (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -577,7 +577,8 @@ msgstr "Gtk3n eraikitako ibalpm liburutegiaren interfaze bat" msgid "How often to check for updates, value in hours" msgstr "Eguneraketak egiaztatzeko maiztasuna, orduetan" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Katxean gorde beharreko pakete bakotzeko bertsio kopurua" @@ -597,6 +598,109 @@ msgstr "Abiadura" msgid "Random" msgstr "Ausazkoa" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Bilatu AURen lehenetsita" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Kendu behar ez diren menpekotasunak" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentifikazioa behar da" @@ -682,10 +786,6 @@ msgstr "Fitxategiak" msgid "_Apply" msgstr "_Aplikatu" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Kendu behar ez diren menpekotasunak" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -760,14 +860,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Gaitu AUR euskarria" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Bilatu AURen lehenetsita" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Egiaztatu AUReko eguneraketak" diff --git a/po/fa.po b/po/fa.po index ed18025..95a392f 100644 --- a/po/fa.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,7 +573,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -678,10 +782,6 @@ msgstr "فایل‌ها" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -751,14 +851,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/fa_IR.po b/po/fa_IR.po index fd23f63..4e5f8c8 100644 --- a/po/fa_IR.po +++ b/po/fa_IR.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: manjaro-pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (Iran) (http://www.transifex.com/manjarolinux/manjaro-" @@ -579,7 +579,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "اغلب چگونگی به روز رسانی بسته را چک کنید ،ارزش زمانی " -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "تعدادی از نسخه های هر بسته را در حافظه موقت نگهداری کن" @@ -599,6 +600,109 @@ msgstr "سرعت" msgid "Random" msgstr "تصادفی" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "اجازه دادن pamac برای جستجو و نصب بسته ها از AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "جستجوی در AUR به صورت پیش فرض" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "حذف وابستگی های غیرضروری" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "تائید هویت شکست خورد" @@ -684,10 +788,6 @@ msgstr "فایل‌ها" msgid "_Apply" msgstr "_اعمال" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "حذف وابستگی های غیرضروری" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -759,14 +859,6 @@ msgstr "" msgid "Enable AUR support" msgstr "فعال کردن پشتیبانی از AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "اجازه دادن pamac برای جستجو و نصب بسته ها از AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "جستجوی در AUR به صورت پیش فرض" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "بررسی بروزرسانی از AUR" diff --git a/po/fi.po b/po/fi.po index 84d1038..8733598 100644 --- a/po/fi.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Finnish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,7 +581,8 @@ msgstr "Gtk3‐edustaohjelma libalpm:lle" msgid "How often to check for updates, value in hours" msgstr "Kuinka usein tarkistetaan päivityksiä, arvo tunneissa" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -601,6 +602,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Anna Pamacin etsiä ja asentaa paketteja AUR:sta" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Poista ei-vaaditut riippuvuudet" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -686,10 +790,6 @@ msgstr "Tiedostot" msgid "_Apply" msgstr "_hyväksy" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Poista ei-vaaditut riippuvuudet" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -761,14 +861,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Ota AUR-tuki käyttöön" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Anna Pamacin etsiä ja asentaa paketteja AUR:sta" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/files_to_translate b/po/files_to_translate index 3d7409d..61377f7 100644 --- a/po/files_to_translate +++ b/po/files_to_translate @@ -7,6 +7,8 @@ ../src/pamac-manager/manager_window.vala ../src/preferences_dialog.vala ../src/choose_ignorepkgs_dialog.vala +../data/org.pamac.aur.gschema.xml.in +../data/org.pamac.main.gschema.xml.in ../data/polkit/org.pamac.policy.in ../data/interface/choose_provider_dialog.ui ../data/interface/progress_dialog.ui diff --git a/po/fo.po b/po/fo.po index 1a7c14e..7054a9a 100644 --- a/po/fo.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Faroese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -574,7 +574,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,6 +595,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -679,10 +783,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -752,14 +852,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/fr.po b/po/fr.po index a3d4729..bc50899 100644 --- a/po/fr.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-31 13:03+0000\n" "Last-Translator: Charles Monzat \n" "Language-Team: French (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -585,7 +585,8 @@ msgstr "Une interface Gtk3 pour libalpm" msgid "How often to check for updates, value in hours" msgstr "Fréquence de vérification des mises à jour, valeur en heures " -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Nombre de versions de chaque paquet à conserver dans le cache " @@ -605,6 +606,109 @@ msgstr "Vitesse" msgid "Random" msgstr "Aléatoire" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permettre à Pamac de chercher et installer des paquets depuis AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Rechercher depuis AUR par défaut" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Désinstaller les dépendances inutiles" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authentification nécessaire" @@ -690,10 +794,6 @@ msgstr "Fichiers" msgid "_Apply" msgstr "_Appliquer" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Désinstaller les dépendances inutiles" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -770,14 +870,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Activer le support d'AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permettre à Pamac de chercher et installer des paquets depuis AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Rechercher depuis AUR par défaut" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Vérifier les mises à jour depuis AUR" diff --git a/po/gl.po b/po/gl.po index 5e8ab29..9f67b12 100644 --- a/po/gl.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Galician (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,7 +573,8 @@ msgstr "Unha interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Cantas veces para comprobar actualizacións, o valor en horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versións de cada paquete para gardar na caché" @@ -593,6 +594,109 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatorio" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir Pamac para buscar e instalar paquetes desde AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimina dependencias sen contrapartida" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "A autenticación é necesaria" @@ -678,10 +782,6 @@ msgstr "Arquivos" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimina dependencias sen contrapartida" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -758,14 +858,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Activar o soporte AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir Pamac para buscar e instalar paquetes desde AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizacións dende AUR" diff --git a/po/he.po b/po/he.po index 5743881..241f6a2 100644 --- a/po/he.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hebrew (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,7 +576,8 @@ msgstr "מגשר חזיתי Gtk3 עבור libalpm" msgid "How often to check for updates, value in hours" msgstr "מהי תדירות בדיקת העדכונים, בשעות" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "מהירות" msgid "Random" msgstr "אקראי" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "אפשר לPamac לחפש ולהתקין חבילות מתוך AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "חפש בתוך AUR באופן שגרתי" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "הסר תוספים לא נחוצים" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "נדרש אישור" @@ -681,10 +785,6 @@ msgstr "קבצים" msgid "_Apply" msgstr "_החל" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "הסר תוספים לא נחוצים" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -757,14 +857,6 @@ msgstr "" msgid "Enable AUR support" msgstr "אפשר תמיכת AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "אפשר לPamac לחפש ולהתקין חבילות מתוך AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "חפש בתוך AUR באופן שגרתי" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "בדוק עדכונים מתוך AUR" diff --git a/po/hi.po b/po/hi.po index 67ffb6c..499b006 100644 --- a/po/hi.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "घंटे में अपडेट, मूल्य के लिए जाँच करने के लिए कितनी बार" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "डिफ़ॉल्ट रूप से AUR में खोजें" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "संयुक्त राष्ट्र आवश्यक निर्भरता निकालें" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "प्रमाणीकरण की आवश्यकता है" @@ -681,10 +785,6 @@ msgstr "फ़ाइलें" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "संयुक्त राष्ट्र आवश्यक निर्भरता निकालें" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR समर्थन सक्रिय" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "डिफ़ॉल्ट रूप से AUR में खोजें" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR से अद्यतन के लिए जाँच करें" diff --git a/po/hi_IN.po b/po/hi_IN.po index cf0b73d..ea07956 100644 --- a/po/hi_IN.po +++ b/po/hi_IN.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (India) (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/hr.po b/po/hr.po index 3d1b083..7339a5c 100644 --- a/po/hr.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-08-02 13:28+0000\n" "Last-Translator: Lovro Kudelić \n" "Language-Team: Croatian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,7 +581,8 @@ msgstr "GTK+ 3 sučelje za libalpm" msgid "How often to check for updates, value in hours" msgstr "Koliko često provjeravati ažuriranja, vrijednost u satima" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Broj različitih verzija paketa za spremiti u predmemoriju" @@ -601,6 +602,109 @@ msgstr "Brzina" msgid "Random" msgstr "Slučajni odabir" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dozvoli Pamac-u da traži i instalira pakete iz AUR-a" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Uvijek traži u AUR-u" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ukloni nepotrebne zavisnosti" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Potrebna je autorizacija" @@ -686,10 +790,6 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Primijeni" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ukloni nepotrebne zavisnosti" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -764,14 +864,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Omogući AUR podršku" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dozvoli Pamac-u da traži i instalira pakete iz AUR-a" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Uvijek traži u AUR-u" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Provjeri ažuriranja iz AUR-a" diff --git a/po/hr_HR.po b/po/hr_HR.po index 7d9c79f..62d9f7c 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/manjarolinux/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/hu.po b/po/hu.po index acfec53..d7756ff 100644 --- a/po/hu.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hungarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -577,7 +577,8 @@ msgstr "Egy gtk3 felület libalpm-hoz" msgid "How often to check for updates, value in hours" msgstr "Milyen gyakran ellenőrizze a frissítéseket? Értékek órában" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "A cache- ben csomagonként megtartandó példányok száma:" @@ -597,6 +598,109 @@ msgstr "Sebesség" msgid "Random" msgstr "Vélerlenszerű" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac kereshet és telepíthet csomagokat az AUR -ból" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Keresés AUR -ban alapértelmezetten" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Nem megkövetelt függőségek eltávolítása" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Hitelesítés szükséges" @@ -682,10 +786,6 @@ msgstr "Fájlok" msgid "_Apply" msgstr "Alkalmaz" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Nem megkövetelt függőségek eltávolítása" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -760,14 +860,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR támogatás engedélyezése" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac kereshet és telepíthet csomagokat az AUR -ból" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Keresés AUR -ban alapértelmezetten" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR frissítések keresése" diff --git a/po/id.po b/po/id.po index 1c1c639..682f040 100644 --- a/po/id.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Indonesian (http://www.transifex.com/manjarolinux/manjaro-" @@ -585,7 +585,8 @@ msgstr "Sebuah frontend Gtk3 untuk libalpm" msgid "How often to check for updates, value in hours" msgstr "Berapa lama untuk memeriksa pembaharuan, nilai dalam jam" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -605,6 +606,109 @@ msgstr "Kecepatan" msgid "Random" msgstr "Acak" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Biarkan Pamac untuk mencari dan memasang paket dari AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cari di AUR sebagai baku" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Hapus dependensi yang tidak dibutuhkan" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Membutuhkan Otentifikasi" @@ -690,10 +794,6 @@ msgstr "Berkas" msgid "_Apply" msgstr "_Terapkan" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Hapus dependensi yang tidak dibutuhkan" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -768,14 +868,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Izinkan dukungan AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Biarkan Pamac untuk mencari dan memasang paket dari AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cari di AUR sebagai baku" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Periksa pembaruan dari AUR" diff --git a/po/is.po b/po/is.po index 28fda83..612cd61 100644 --- a/po/is.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (http://www.transifex.com/manjarolinux/manjaro-" @@ -575,7 +575,8 @@ msgstr "Gtk3 viðmót fyrir libalpm" msgid "How often to check for updates, value in hours" msgstr "Hversu oft á að athuga með uppfærslur, í klukkustundum" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Fjöldi af útgáfum af hverjum pakka til að halda í skyndiminni" @@ -595,6 +596,109 @@ msgstr "Hraði" msgid "Random" msgstr "Handahófskennt" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Leyfa Pamac að leita að og setja inn pakka frá AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Leita sjálfgefið í AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjarlægja ónauðsynlegar kerfiskröfur" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Auðkenningar er krafist" @@ -680,10 +784,6 @@ msgstr "Skrár" msgid "_Apply" msgstr "_Virkja" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjarlægja ónauðsynlegar kerfiskröfur" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -758,14 +858,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Virkja AUR-stuðning" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Leyfa Pamac að leita að og setja inn pakka frá AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Leita sjálfgefið í AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Athuga með uppfærslur frá AUR" diff --git a/po/is_IS.po b/po/is_IS.po index 704ebc1..800c991 100644 --- a/po/is_IS.po +++ b/po/is_IS.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (Iceland) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/it.po b/po/it.po index 9e9372c..e7dc5c6 100644 --- a/po/it.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -586,7 +586,8 @@ msgstr "Frontend gtk3 per libalpm" msgid "How often to check for updates, value in hours" msgstr "Con quale frequenza controllare gli aggiornamenti, il valore in ore" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Numero di versioni di ogni pacchetto da conservare nella cache" @@ -606,6 +607,109 @@ msgstr "Velocità" msgid "Random" msgstr "Casuale" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permette a Pamac cercare e installare pacchetti dal AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cerca in AUR come impostazione predefinita." + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Rimuovere le dipendenze non necessarie" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticazione richiesta" @@ -691,10 +795,6 @@ msgstr "Files" msgid "_Apply" msgstr "_Applica" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Rimuovere le dipendenze non necessarie" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -769,14 +869,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Abilita supporto per AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permette a Pamac cercare e installare pacchetti dal AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cerca in AUR come impostazione predefinita." - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controlla aggiornamenti da AUR" diff --git a/po/it_IT.po b/po/it_IT.po index e058f11..03d6715 100644 --- a/po/it_IT.po +++ b/po/it_IT.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (Italy) (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ja.po b/po/ja.po index a387218..83142fd 100644 --- a/po/ja.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Japanese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,7 +573,8 @@ msgstr "libalpmのためのGtk3フロントエンド" msgid "How often to check for updates, value in hours" msgstr "どれくらいの頻度で更新をチェックしますか、時間で指定してください。" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "各パッケージのバージョン番号をキャッシュに保存する" @@ -593,6 +594,109 @@ msgstr "速度" msgid "Random" msgstr "ランダム" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "PamacがAURパッケージを探索し、インストールすることを許可する" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "デフォルトでAURを検索する" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "必要ではない依存関係を削除" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "認証が必要です" @@ -678,10 +782,6 @@ msgstr "ファイル" msgid "_Apply" msgstr "適用(_A)" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "必要ではない依存関係を削除" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -756,14 +856,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AURのサポートを可能にする" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "PamacがAURパッケージを探索し、インストールすることを許可する" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "デフォルトでAURを検索する" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR 更新の確認" diff --git a/po/ka.po b/po/ka.po index 9e82294..14d3f65 100644 --- a/po/ka.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Georgian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -571,7 +571,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -591,6 +592,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -676,10 +780,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -749,14 +849,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "განახლებების შემოწმება AUR-იდან" diff --git a/po/ko.po b/po/ko.po index c8b3ba3..2ef79ff 100644 --- a/po/ko.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Korean (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,7 +573,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "인증이 필요합니다" @@ -678,10 +782,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -751,14 +851,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/lt.po b/po/lt.po index 13a15dd..156b061 100644 --- a/po/lt.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-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-" @@ -579,7 +579,8 @@ msgstr "Gtk3 naudotojo sąsaja libalpm bibliotekai" msgid "How often to check for updates, value in hours" msgstr "Kaip dažnai tikrinti ar yra atnaujinimų, reikšmė valandomis" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Podėlyje laikomas kiekvieno paketo versijų skaičius" @@ -599,6 +600,109 @@ msgstr "Greitį" msgid "Random" msgstr "Atsitiktinai" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Leisti Pamac ieškoti ir diegti paketus iš AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pagal numatymą ieškoti AUR saugykloje" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Šalinti nereikalingas priklausomybes" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Reikalingas tapatybės nustatymas" @@ -684,10 +788,6 @@ msgstr "Failai" msgid "_Apply" msgstr "_Taikyti" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Šalinti nereikalingas priklausomybes" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -762,14 +862,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Įjungti AUR palaikymą" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Leisti Pamac ieškoti ir diegti paketus iš AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pagal numatymą ieškoti AUR saugykloje" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Tikrinti atnaujinimus iš AUR" diff --git a/po/ml.po b/po/ml.po index 6d690f9..30c9f98 100644 --- a/po/ml.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malayalam (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ms.po b/po/ms.po index c6f6dec..7f9894c 100644 --- a/po/ms.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malay (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -570,7 +570,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -590,6 +591,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -675,10 +779,6 @@ msgstr "Fail" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -748,14 +848,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/nb.po b/po/nb.po index 0f77f7a..d4e2332 100644 --- a/po/nb.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/manjarolinux/" @@ -590,7 +590,8 @@ msgstr "En Gtk3-frontend for libalpm" msgid "How often to check for updates, value in hours" msgstr "Hvor ofte skal oppdateringer sees etter, verdi i timer " -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antall versjoner av hver pakke som skal beholdes i hurtiglageret" @@ -610,6 +611,109 @@ msgstr "Hastighet" msgid "Random" msgstr "Tilfeldig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Tillat Pamac å søke etter og installere pakker fra AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Søk i AUR som standard" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjern avhengige pakker som er unødvendige" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentisering kreves" @@ -695,10 +799,6 @@ msgstr "Filer" msgid "_Apply" msgstr "_Utfør" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjern avhengige pakker som er unødvendige" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -773,14 +873,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktiver AUR-støtte" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Tillat Pamac å søke etter og installere pakker fra AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Søk i AUR som standard" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Se etter oppdateringer fra AUR" diff --git a/po/nl.po b/po/nl.po index 0aeb21b..d2f5c34 100644 --- a/po/nl.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 09:20+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -588,7 +588,8 @@ msgstr "Een Gtk3 frontend voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Controle interval voor updates, waarde in uren" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Aantal in de cache te houden versies van elk pakket" @@ -608,6 +609,109 @@ msgstr "Snelheid" msgid "Random" msgstr "Willekeurig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om AUR pakketten te zoeken en te installeren" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Stel zoeken in AUR als standaard in" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Verwijder onnodige afhankelijkheden" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Verificatie vereist" @@ -693,10 +797,6 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Toepassen" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Verwijder onnodige afhankelijkheden" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -771,14 +871,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Activeer AUR ondersteuning" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om AUR pakketten te zoeken en te installeren" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Stel zoeken in AUR als standaard in" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controleer AUR voor opwaarderingen" diff --git a/po/nl_BE.po b/po/nl_BE.po index eba38bc..b643bb7 100644 --- a/po/nl_BE.po +++ b/po/nl_BE.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Dutch (Belgium) (http://www.transifex.com/manjarolinux/" @@ -573,7 +573,8 @@ msgstr "Een Gtk3 interface voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Hoe vaak voor updates kijken, waarde in uren" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "Snelheid" msgid "Random" msgstr "Rando" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om pakketten van het AUR op te zoeken en te installeren" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Zoek automatisch in AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Verwijder onnodige afhankelijkheiden" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -678,10 +782,6 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Doorvoeren " -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Verwijder onnodige afhankelijkheiden" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -756,14 +856,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR ondersteuning aanzetten " -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om pakketten van het AUR op te zoeken en te installeren" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Zoek automatisch in AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Zoeken naar updates van de AUR" diff --git a/po/nl_NL.po b/po/nl_NL.po index 38c5609..5a6e744 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 09:19+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/manjarolinux/" @@ -578,7 +578,8 @@ msgstr "Een GTK3-frontend voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Hoe vaak moet er worden gecontroleerd op updates? (waarde in uren)" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Aantal in de cache te houden versies van elk pakket" @@ -598,6 +599,109 @@ msgstr "Snelheid" msgid "Random" msgstr "Willekeurig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om pakketten van AUR te zoeken en installeren" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Standaard in AUR zoeken" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Niet-benodigde afhankelijkheden verwijderen" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authenticatie vereist" @@ -683,10 +787,6 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Toepassen" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Niet-benodigde afhankelijkheden verwijderen" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -761,14 +861,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR-ondersteuning inschakelen" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om pakketten van AUR te zoeken en installeren" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Standaard in AUR zoeken" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controleren op AUR-updates" diff --git a/po/nn.po b/po/nn.po index 9e2d7b2..a502928 100644 --- a/po/nn.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/manjarolinux/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pamac.pot b/po/pamac.pot index 3162065..d8e1c22 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-10 22:57-0300\n" +"POT-Creation-Date: 2017-11-11 11:29-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -571,7 +571,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -591,6 +592,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -676,10 +780,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -749,14 +849,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pl.po b/po/pl.po index 63ce37b..9c9d447 100644 --- a/po/pl.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-08-02 11:35+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: Polish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -591,7 +591,8 @@ msgstr "Nakładka gtk3 na libalpm" msgid "How often to check for updates, value in hours" msgstr "Jak często sprawdzać aktualizacje, wartość w godzinach" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Liczba wersji każdego pakietu do przechowywania w pamięci podręcznej" @@ -611,6 +612,109 @@ msgstr "Prędkość" msgid "Random" msgstr "Losowy" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Wyszukuj domyślnie w AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Usuwanie niewymaganych zależności" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Wymagane jest uwierzytelnienie" @@ -696,10 +800,6 @@ msgstr "Pliki" msgid "_Apply" msgstr "_Zastosuj" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Usuwanie niewymaganych zależności" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -775,14 +875,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Włącz obsługę AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Wyszukuj domyślnie w AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Sprawdź aktualizacje w AUR" diff --git a/po/pl_PL.po b/po/pl_PL.po index 3cd3d1e..1993373 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Polish (Poland) (http://www.transifex.com/manjarolinux/" @@ -580,7 +580,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,6 +601,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -685,10 +789,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -758,14 +858,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pt.po b/po/pt.po index e4c5d9d..f15df7f 100644 --- a/po/pt.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (http://www.transifex.com/manjarolinux/manjaro-" @@ -573,7 +573,8 @@ msgstr "Uma interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frequência de verificação de actualizações, valor em horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -593,6 +594,109 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que o Pamac procure e instale pacotes do AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por pré-definição" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências não requeridas" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -678,10 +782,6 @@ msgstr "Ficheiros" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências não requeridas" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -757,14 +857,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Activar suporte ao AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que o Pamac procure e instale pacotes do AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por pré-definição" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar se há atualizações do AUR" diff --git a/po/pt_BR.po b/po/pt_BR.po index 1c8cd41..af9903c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/manjarolinux/" @@ -590,7 +590,8 @@ msgstr "Um frontend GTK3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Vezes para verificar se há atualizações, o valor em horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -610,6 +611,109 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac que procure e instale os pacotes a partir de AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por padrão" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências desnecessárias" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -695,10 +799,6 @@ msgstr "Arquivos" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências desnecessárias" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -774,14 +874,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar o suporte AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac que procure e instale os pacotes a partir de AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por padrão" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar atualizações do AUR" diff --git a/po/pt_PT.po b/po/pt_PT.po index a90e070..b5e15f4 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/manjarolinux/" @@ -581,7 +581,8 @@ msgstr "Uma interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frequência de verificação de actualizações, valor em horas" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -601,6 +602,109 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que o Pamac procure e instale pacotes do AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por padrão" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências não requeridas" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -686,10 +790,6 @@ msgstr "Ficheiros" msgid "_Apply" msgstr "_Aplicar" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências não requeridas" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -765,14 +865,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar suporte ao AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que o Pamac procure e instale pacotes do AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por padrão" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar se há atualizações do AUR" diff --git a/po/ro.po b/po/ro.po index f0ceae5..c2bd5e3 100644 --- a/po/ro.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Romanian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,7 +581,8 @@ msgstr "O interfață Gtk3 pentru libalpm" msgid "How often to check for updates, value in hours" msgstr "Frecvența de verificare a actualizărilor, în ore" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -601,6 +602,109 @@ msgstr "Viteză" msgid "Random" msgstr "Aleatoriu" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permite Pamac să caute și să instaleze pachete din AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Caută în AUR implicit" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimină dependențe ce nu sunt necesare" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -686,10 +790,6 @@ msgstr "Fișiere" msgid "_Apply" msgstr "_Aplică" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimină dependențe ce nu sunt necesare" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -763,14 +863,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Activează suport AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permite Pamac să caute și să instaleze pachete din AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Caută în AUR implicit" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verifică actualizări din AUR" diff --git a/po/ru.po b/po/ru.po index 37b6f39..2fb7483 100644 --- a/po/ru.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Russian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -599,7 +599,8 @@ msgstr "Интерфейс Gtk3 для libalpm" msgid "How often to check for updates, value in hours" msgstr "Укажите интервал поиска обновлений, в часах" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Сохранять в кэше предыдущие версии пакетов в количестве" @@ -619,6 +620,109 @@ msgstr "Скорость" msgid "Random" msgstr "Случайно" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Разрешить Pamac искать и устанавливать пакеты из AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Поиск в AUR по умолчанию" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Удалить ненужные зависимости" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Запрошена авторизация" @@ -704,10 +808,6 @@ msgstr "Файлы" msgid "_Apply" msgstr "_Применить" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Удалить ненужные зависимости" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -782,14 +882,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Включить поддержку AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Разрешить Pamac искать и устанавливать пакеты из AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Поиск в AUR по умолчанию" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Проверить обновления AUR" diff --git a/po/si.po b/po/si.po index b95ce3b..a46103a 100644 --- a/po/si.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Sinhala (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -574,7 +574,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,6 +595,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -679,10 +783,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -752,14 +852,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sk.po b/po/sk.po index b4117d2..92945ce 100644 --- a/po/sk.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 06:06+0000\n" "Last-Translator: Dušan Kazik \n" "Language-Team: Slovak (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -582,7 +582,8 @@ msgstr "Rozhranie Gtk3 pre knižnicu libalpm" msgid "How often to check for updates, value in hours" msgstr "Ako často kontrolovať aktualizácie, hodnota je v hodinách" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Počet verzií každého balíka, ktoré ponechať vo vyrovnávacej pamäti" @@ -602,6 +603,109 @@ msgstr "Rýchlosti" msgid "Random" msgstr "Náhodne" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Predvolene vyhľadávať v repozitári AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odstrániť nepožadované závislosti" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Vyžaduje sa overenie totožnosti" @@ -687,10 +791,6 @@ msgstr "Súbory" msgid "_Apply" msgstr "_Použiť" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odstrániť nepožadované závislosti" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -766,14 +866,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Zapnúť podporu repozitára AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Predvolene vyhľadávať v repozitári AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Kontrolovať aktualizácie z repozitára AUR" diff --git a/po/sl.po b/po/sl.po index 904d5e9..6ea371f 100644 --- a/po/sl.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (http://www.transifex.com/manjarolinux/manjaro-" @@ -586,7 +586,8 @@ msgstr "Gtk3 začelje za libalpm" msgid "How often to check for updates, value in hours" msgstr "Kako pogosto naj se preverja za posodobitve, vrednost v urah" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Število verzij za vsak paket shranjenih v predpomnilniku" @@ -606,6 +607,109 @@ msgstr "Hitrost" msgid "Random" msgstr "Naključno" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dovoli Pamacu da išče in namešča pakete iz AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Privzeto iskanje v AUR" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odstrani nezahtevane odvisnosti" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Zahtevana je overitev" @@ -691,10 +795,6 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Uveljavi" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odstrani nezahtevane odvisnosti" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -770,14 +870,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Omogoči podporo AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dovoli Pamacu da išče in namešča pakete iz AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Privzeto iskanje v AUR" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Preveri za posodobitve iz AUR" diff --git a/po/sl_SI.po b/po/sl_SI.po index ded74b2..ca58f11 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/manjarolinux/" @@ -579,7 +579,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -599,6 +600,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -684,10 +788,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -757,14 +857,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr.po b/po/sr.po index fd70fda..cab8a31 100644 --- a/po/sr.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,7 +579,8 @@ msgstr "Gtk3 приказ за libalpm" msgid "How often to check for updates, value in hours" msgstr "Колико често да се проверавају ажурирања, вредност у сатима" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -599,6 +600,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Омогући Памаку да претражује и инсталира пакете из AUR-a" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Уклони непотребне зависности" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -684,10 +788,6 @@ msgstr "Датотеке" msgid "_Apply" msgstr "_Примени" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Уклони непотребне зависности" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -759,14 +859,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Омогући AUR подршку" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Омогући Памаку да претражује и инсталира пакете из AUR-a" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr@latin.po b/po/sr@latin.po index 1a3c1a9..7874163 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/manjarolinux/" @@ -582,7 +582,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Koliko često da proveravam ažuriranja, vrednost u satima" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -602,6 +603,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ukloni nepotrebne zavisnosti" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentifikacija je neophodna" @@ -687,10 +791,6 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Primeni" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ukloni nepotrebne zavisnosti" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -760,14 +860,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Odobri AUR podršku" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Proveri ažuriranja iz AUR" diff --git a/po/sr_RS.po b/po/sr_RS.po index 4bfbeb0..6a23310 100644 --- a/po/sr_RS.po +++ b/po/sr_RS.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/manjarolinux/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 030c43d..467f70d 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/" @@ -576,7 +576,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,6 +597,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -681,10 +785,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -754,14 +854,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sv.po b/po/sv.po index d5cf359..7f328d7 100644 --- a/po/sv.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Swedish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,7 +581,8 @@ msgstr "Ett Gtk3-gränssnitt för libalpm" msgid "How often to check for updates, value in hours" msgstr "Hur ofta söka efter uppdateringar, ange i timmar" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antal versioner av varje paket att behålla i cachen" @@ -601,6 +602,109 @@ msgstr "Hastighet" msgid "Random" msgstr "Slumpmässig" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Tillåt Pamac att söka och installera paket från AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Sök i AUR som standard" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ta bort icke-nödvändiga beroenden" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentisering krävs" @@ -686,10 +790,6 @@ msgstr "Filer" msgid "_Apply" msgstr "_Tillämpa" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ta bort icke-nödvändiga beroenden" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -764,14 +864,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktivera AUR-stöd" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Tillåt Pamac att söka och installera paket från AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Sök i AUR som standard" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Leta efter uppdateringar i AUR" diff --git a/po/tr.po b/po/tr.po index 74e3547..ebc80ef 100644 --- a/po/tr.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-08-04 06:07+0000\n" "Last-Translator: Demiray Muhterem \n" "Language-Team: Turkish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,7 +579,8 @@ msgstr "libalpm için Gtk3 arayüzü" msgid "How often to check for updates, value in hours" msgstr "Güncellemeler ne sıklıkta kontrol edilecek, saat belirtin" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Önbellekte tutlacak her bir paketin sürüm sayısı" @@ -599,6 +600,109 @@ msgstr "Hız" msgid "Random" msgstr "Rastgele" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "AUR paketleri aramak ve kurmak için izin ver" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Varsayılan olarak AUR depolarında da ara" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Gereksiz bağımlılıkları kaldır" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Kimlik doğrulaması gerekli" @@ -684,10 +788,6 @@ msgstr "Dosyalar" msgid "_Apply" msgstr "_Uygula" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Gereksiz bağımlılıkları kaldır" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -762,14 +862,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR desteği etkin" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "AUR paketleri aramak ve kurmak için izin ver" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Varsayılan olarak AUR depolarında da ara" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR deposundaki güncellemelere bak" diff --git a/po/uk.po b/po/uk.po index 1dd4cd0..6441463 100644 --- a/po/uk.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Ukrainian (http://www.transifex.com/manjarolinux/manjaro-" @@ -588,7 +588,8 @@ msgstr "Інтерфейс Gtk3 для libalpm" msgid "How often to check for updates, value in hours" msgstr "Як часто перевіряти оновлення (значення в годинах)" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Кількість версій кожного пакунка зберігається в кеш-пам'яті" @@ -608,6 +609,109 @@ msgstr "Швидкість" msgid "Random" msgstr "Випадково" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Дозволити Pamac шукати та встановлювати пакунки з AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Шукати в AUR типово" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Вилучити непотрібні залежності" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Потрібна авторизація" @@ -693,10 +797,6 @@ msgstr "Файли" msgid "_Apply" msgstr "_Застосувати" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Вилучити непотрібні залежності" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -771,14 +871,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Активувати підтримку AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Дозволити Pamac шукати та встановлювати пакунки з AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Шукати в AUR типово" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Перевірка оновлень AUR" diff --git a/po/ur_PK.po b/po/ur_PK.po index 933af5a..52b711d 100644 --- a/po/ur_PK.po +++ b/po/ur_PK.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/manjarolinux/" @@ -573,7 +573,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "اپ ڈیٹس چیک کرنے کی کثرت کی وضاحت گھنٹوں میں کریں" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,6 +594,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "غیر ضروری انحصار پیکج نکال دیں" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -678,10 +782,6 @@ msgstr "فائلیں" msgid "_Apply" msgstr "_عمل کریں" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "غیر ضروری انحصار پیکج نکال دیں" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -753,14 +853,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR سپورٹ کو فعال کریں" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/uz.po b/po/uz.po index 3ffc81e..9919551 100644 --- a/po/uz.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Uzbek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Qanchalik tez yangilanishlar tekshirilsin, qiymati soatda" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "Tezlik" msgid "Random" msgstr "Tavakkal" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Talab etilmagan qaramliklarni olib tashlash" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "Fayllar" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Talab etilmagan qaramliklarni olib tashlash" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR qo'llab-quvvatlashni yoqish" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/vi.po b/po/vi.po index d156877..ef97186 100644 --- a/po/vi.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Vietnamese (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,7 +572,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Bao lâu sẽ kiểm tra cập nhật, tính bằng giờ" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,6 +593,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Cho phép Pamac tìm kiếm và cài đặt gói từ AUR" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Gỡ bỏ phần phụ thuộc không cần thiết" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -677,10 +781,6 @@ msgstr "Tệp tin" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Gỡ bỏ phần phụ thuộc không cần thiết" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -750,14 +850,6 @@ msgstr "" msgid "Enable AUR support" msgstr "Bật hỗ trợ AUR" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Cho phép Pamac tìm kiếm và cài đặt gói từ AUR" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/zh.po b/po/zh.po index 093bb77..9ea7d8a 100644 --- a/po/zh.po +++ b/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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -569,7 +569,8 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -589,6 +590,109 @@ msgstr "" msgid "Random" msgstr "" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -674,10 +778,6 @@ msgstr "" msgid "_Apply" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -747,14 +847,6 @@ msgstr "" msgid "Enable AUR support" msgstr "" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index c73a42c..5dbcd64 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (China) (http://www.transifex.com/manjarolinux/" @@ -575,7 +575,8 @@ msgstr "libalpm 的 GTK3 前端" msgid "How often to check for updates, value in hours" msgstr "检查更新的频率,单位为小时" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "每个软件包保留在缓存中的版本数目" @@ -595,6 +596,109 @@ msgstr "速度" msgid "Random" msgstr "随机" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "允许 Pamac 从 AUR 中搜索并安装软件包" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "默认在 AUR 中搜索" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "移除不需要的依赖" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "需要验证" @@ -680,10 +784,6 @@ msgstr "文件" msgid "_Apply" msgstr "应用(_A)" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "移除不需要的依赖" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -755,14 +855,6 @@ msgstr "" msgid "Enable AUR support" msgstr "启用 AUR 支持" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "允许 Pamac 从 AUR 中搜索并安装软件包" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "默认在 AUR 中搜索" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "从 AUR 检查更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index c3f9186..53e0df8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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-11-06 22:24-0300\n" +"POT-Creation-Date: 2017-11-11 11:28-0300\n" "PO-Revision-Date: 2017-07-30 12:17+0000\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/manjarolinux/" @@ -573,7 +573,8 @@ msgstr "一個 libalpm 的 Gtk3 前端" msgid "How often to check for updates, value in hours" msgstr "請選擇您想要檢查更新的頻率,單位是小時" -#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "每個軟體包要保留在快取中的版本數量" @@ -593,6 +594,109 @@ msgstr "速度" msgid "Random" msgstr "隨機" +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Enable AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "允許 Pamac 搜尋及安裝 AUR 上的軟體包" + +#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "預設在 AUR 中搜尋" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled search in AUR by default" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Check AUR for updates" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "When AUR support is enabled check for updates from AUR" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "\"/tmp\"" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "AUR build directory" +msgstr "" + +#: ../data/org.pamac.aur.gschema.xml.in +msgid "Directory where to build packages that come from the AUR" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "移除不需要的相依性" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "" +"When removing a package, also remove those dependencies that are not " +"required by other packages (recurse option)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Refresh period" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "How often to check for updates, value in hours (0 to disable)" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Hide icon if there are no updates" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "When there are no updates available, hide the tray icon" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Numer of packages to keep" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only uninstalled packages when cleaning cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Remove only the versions of uninstalled packages when clean cache" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(0,0,0)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal background color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"rgb(255,255,255)\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal foreground color" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "\"Monospace Regular 12\"" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "Terminal font" +msgstr "" + +#: ../data/org.pamac.main.gschema.xml.in +msgid "The font used in the terminal" +msgstr "" + #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "需要授權" @@ -678,10 +782,6 @@ msgstr "檔案" msgid "_Apply" msgstr "套用(_A)" -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "移除不需要的相依性" - #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -753,14 +853,6 @@ msgstr "" msgid "Enable AUR support" msgstr "啟用 AUR 支援" -#: ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "允許 Pamac 搜尋及安裝 AUR 上的軟體包" - -#: ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "預設在 AUR 中搜尋" - #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "自 AUR 檢查更新" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c94afb9..a41c777 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -52,11 +52,6 @@ set (APP_SOURCES ${APP_SOURCES} progress_box.vala) set (APP_SOURCES ${APP_SOURCES} transaction.vala) set (APP_SOURCES ${APP_SOURCES} transaction_sum_dialog.vala) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -72,6 +67,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/meson.build b/src/meson.build index 49775b4..746cb54 100644 --- a/src/meson.build +++ b/src/meson.build @@ -39,10 +39,6 @@ pamac_classic_vala_args = ['--pkg','posix'] pamac_classic_vala_args += ['--vapidir='+join_paths(meson.source_root(),'src/vapis')] pamac_classic_vala_args += ['--gresources='+join_paths(meson.source_root(),'data/pamac.transaction.gresource.xml')] pamac_classic_c_args = [] -if DISABLE_AUR - pamac_classic_vala_args += ['-D', 'DISABLE_AUR'] - pamac_classic_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_classic_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_classic_c_args += ['-DENABLE_UPDATE_ICON'] @@ -55,6 +51,10 @@ if KDE_TRAY pamac_classic_vala_args += ['-D', 'KDE_TRAY'] pamac_classic_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_classic_vala_args += ['-D', 'DISABLE_AUR'] + pamac_classic_c_args += ['-DDISABLE_AUR'] +endif pamac_classic_deps += [meson.get_compiler('c').find_library('m', required : false)] pamac_classic_vala_args += ['--gir=pamacclassic-6.0.gir'] diff --git a/src/pamac-clean-cache/CMakeLists.txt b/src/pamac-clean-cache/CMakeLists.txt index 34944c4..5eca156 100644 --- a/src/pamac-clean-cache/CMakeLists.txt +++ b/src/pamac-clean-cache/CMakeLists.txt @@ -35,11 +35,6 @@ set (APP_SOURCES ${APP_SOURCES} pamac_config.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -55,6 +50,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-clean-cache/meson.build b/src/pamac-clean-cache/meson.build index a4d0b14..4218ed6 100644 --- a/src/pamac-clean-cache/meson.build +++ b/src/pamac-clean-cache/meson.build @@ -20,10 +20,6 @@ pamac_clean_cache_vala_args = ['--pkg','posix'] pamac_clean_cache_vala_args += ['--vapidir='+join_paths(meson.source_root(),'src/vapis')] pamac_clean_cache_dependencies = [pamacclassic_library] pamac_clean_cache_c_args = [] -if DISABLE_AUR - pamac_clean_cache_vala_args += ['-D', 'DISABLE_AUR'] - pamac_clean_cache_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_clean_cache_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_clean_cache_c_args += ['-DENABLE_UPDATE_ICON'] @@ -36,6 +32,10 @@ if KDE_TRAY pamac_clean_cache_vala_args += ['-D', 'KDE_TRAY'] pamac_clean_cache_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_clean_cache_vala_args += ['-D', 'DISABLE_AUR'] + pamac_clean_cache_c_args += ['-DDISABLE_AUR'] +endif pamac_clean_cache_hfolders = ['../../src'] executable('pamac-clean-cache',pamac_clean_cache_sources,dependencies: pamac_clean_cache_deps,vala_args: pamac_clean_cache_vala_args,c_args: pamac_clean_cache_c_args,link_with: pamac_clean_cache_dependencies,include_directories: include_directories(pamac_clean_cache_hfolders),install: true) diff --git a/src/pamac-install/CMakeLists.txt b/src/pamac-install/CMakeLists.txt index 896417a..62d0fe0 100644 --- a/src/pamac-install/CMakeLists.txt +++ b/src/pamac-install/CMakeLists.txt @@ -35,11 +35,6 @@ set (APP_SOURCES ${APP_SOURCES} progress_dialog.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -55,6 +50,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-install/meson.build b/src/pamac-install/meson.build index 0e5528b..9d327f6 100644 --- a/src/pamac-install/meson.build +++ b/src/pamac-install/meson.build @@ -22,10 +22,6 @@ pamac_install_vala_args = ['--vapidir='+join_paths(meson.source_root(),'src/vapi pamac_install_vala_args += ['--gresources='+join_paths(meson.source_root(),'data/pamac.installer.gresource.xml')] pamac_install_dependencies = [pamacclassic_library] pamac_install_c_args = [] -if DISABLE_AUR - pamac_install_vala_args += ['-D', 'DISABLE_AUR'] - pamac_install_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_install_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_install_c_args += ['-DENABLE_UPDATE_ICON'] @@ -38,6 +34,10 @@ if KDE_TRAY pamac_install_vala_args += ['-D', 'KDE_TRAY'] pamac_install_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_install_vala_args += ['-D', 'DISABLE_AUR'] + pamac_install_c_args += ['-DDISABLE_AUR'] +endif pamac_install_hfolders = ['../../src'] executable('pamac-install',pamac_install_sources,dependencies: pamac_install_deps,vala_args: pamac_install_vala_args,c_args: pamac_install_c_args,link_with: pamac_install_dependencies,include_directories: include_directories(pamac_install_hfolders),install: true) diff --git a/src/pamac-manager/CMakeLists.txt b/src/pamac-manager/CMakeLists.txt index 9e822ac..be8e375 100644 --- a/src/pamac-manager/CMakeLists.txt +++ b/src/pamac-manager/CMakeLists.txt @@ -36,11 +36,6 @@ set (APP_SOURCES ${APP_SOURCES} manager_window.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -56,6 +51,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-manager/meson.build b/src/pamac-manager/meson.build index 2b1a60a..aa12a5a 100644 --- a/src/pamac-manager/meson.build +++ b/src/pamac-manager/meson.build @@ -23,10 +23,6 @@ pamac_manager_vala_args = ['--vapidir='+join_paths(meson.source_root(),'src/vapi pamac_manager_vala_args += ['--gresources='+join_paths(meson.source_root(),'data/pamac.manager.gresource.xml')] pamac_manager_dependencies = [pamacclassic_library] pamac_manager_c_args = [] -if DISABLE_AUR - pamac_manager_vala_args += ['-D', 'DISABLE_AUR'] - pamac_manager_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_manager_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_manager_c_args += ['-DENABLE_UPDATE_ICON'] @@ -39,6 +35,10 @@ if KDE_TRAY pamac_manager_vala_args += ['-D', 'KDE_TRAY'] pamac_manager_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_manager_vala_args += ['-D', 'DISABLE_AUR'] + pamac_manager_c_args += ['-DDISABLE_AUR'] +endif pamac_manager_hfolders = ['../../src'] executable('pamac-manager',pamac_manager_sources,dependencies: pamac_manager_deps,vala_args: pamac_manager_vala_args,c_args: pamac_manager_c_args,link_with: pamac_manager_dependencies,include_directories: include_directories(pamac_manager_hfolders),install: true) diff --git a/src/pamac-system-daemon/CMakeLists.txt b/src/pamac-system-daemon/CMakeLists.txt index 51780df..9bd40a6 100644 --- a/src/pamac-system-daemon/CMakeLists.txt +++ b/src/pamac-system-daemon/CMakeLists.txt @@ -42,11 +42,6 @@ set (APP_SOURCES ${APP_SOURCES} system_daemon.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -62,6 +57,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-system-daemon/meson.build b/src/pamac-system-daemon/meson.build index 2dc78be..ecdfa87 100644 --- a/src/pamac-system-daemon/meson.build +++ b/src/pamac-system-daemon/meson.build @@ -27,10 +27,6 @@ pamac_system_daemon_vala_args = ['--pkg','posix'] pamac_system_daemon_vala_args += ['--vapidir='+join_paths(meson.source_root(),'src/vapis')] pamac_system_daemon_dependencies = [pamacclassic_library] pamac_system_daemon_c_args = [] -if DISABLE_AUR - pamac_system_daemon_vala_args += ['-D', 'DISABLE_AUR'] - pamac_system_daemon_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_system_daemon_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_system_daemon_c_args += ['-DENABLE_UPDATE_ICON'] @@ -43,6 +39,10 @@ if KDE_TRAY pamac_system_daemon_vala_args += ['-D', 'KDE_TRAY'] pamac_system_daemon_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_system_daemon_vala_args += ['-D', 'DISABLE_AUR'] + pamac_system_daemon_c_args += ['-DDISABLE_AUR'] +endif pamac_system_daemon_hfolders = ['../../src'] executable('pamac-system-daemon',pamac_system_daemon_sources,dependencies: pamac_system_daemon_deps,vala_args: pamac_system_daemon_vala_args,c_args: pamac_system_daemon_c_args,link_with: pamac_system_daemon_dependencies,include_directories: include_directories(pamac_system_daemon_hfolders),install: true) diff --git a/src/pamac-tray/CMakeLists.txt b/src/pamac-tray/CMakeLists.txt index f2e4890..3a920e8 100644 --- a/src/pamac-tray/CMakeLists.txt +++ b/src/pamac-tray/CMakeLists.txt @@ -48,11 +48,6 @@ set (APP_SOURCES ${APP_SOURCES} tray.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -68,6 +63,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-tray/meson.build b/src/pamac-tray/meson.build index 7af7d19..a3fc04d 100644 --- a/src/pamac-tray/meson.build +++ b/src/pamac-tray/meson.build @@ -33,10 +33,6 @@ pamac_tray_vala_args = ['--pkg','posix'] pamac_tray_vala_args += ['--vapidir='+join_paths(meson.source_root(),'src/vapis')] pamac_tray_dependencies = [pamacclassic_library] pamac_tray_c_args = [] -if DISABLE_AUR - pamac_tray_vala_args += ['-D', 'DISABLE_AUR'] - pamac_tray_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_tray_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_tray_c_args += ['-DENABLE_UPDATE_ICON'] @@ -49,6 +45,10 @@ if KDE_TRAY pamac_tray_vala_args += ['-D', 'KDE_TRAY'] pamac_tray_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_tray_vala_args += ['-D', 'DISABLE_AUR'] + pamac_tray_c_args += ['-DDISABLE_AUR'] +endif pamac_tray_hfolders = ['../../src'] executable('pamac-tray',pamac_tray_sources,dependencies: pamac_tray_deps,vala_args: pamac_tray_vala_args,c_args: pamac_tray_c_args,link_with: pamac_tray_dependencies,include_directories: include_directories(pamac_tray_hfolders),install: true) diff --git a/src/pamac-user-daemon/CMakeLists.txt b/src/pamac-user-daemon/CMakeLists.txt index c876f6d..db7a5f5 100644 --- a/src/pamac-user-daemon/CMakeLists.txt +++ b/src/pamac-user-daemon/CMakeLists.txt @@ -38,11 +38,6 @@ set (APP_SOURCES ${APP_SOURCES} user_daemon.vala) set (CUSTOM_VAPIS_LIST ${CUSTOM_VAPIS_LIST} ${CMAKE_BINARY_DIR}/src/pamacclassic.vapi) -if (DISABLE_AUR) - set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) -endif () if (ENABLE_UPDATE_ICON) set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D ENABLE_UPDATE_ICON) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_UPDATE_ICON " ) @@ -58,6 +53,11 @@ if (KDE_TRAY) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DKDE_TRAY " ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKDE_TRAY " ) endif () +if (DISABLE_AUR) + set (COMPILE_OPTIONS ${COMPILE_OPTIONS} -D DISABLE_AUR) + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_AUR " ) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDISABLE_AUR " ) +endif () set (COMPILE_OPTIONS ${COMPILE_OPTIONS} --vapidir=${CMAKE_SOURCE_DIR}/src/vapis ) if ((${CMAKE_BUILD_TYPE} STREQUAL "Debug") OR (${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")) diff --git a/src/pamac-user-daemon/meson.build b/src/pamac-user-daemon/meson.build index 2476c76..c5fca10 100644 --- a/src/pamac-user-daemon/meson.build +++ b/src/pamac-user-daemon/meson.build @@ -23,10 +23,6 @@ pamac_user_daemon_vala_args = ['--pkg','posix'] pamac_user_daemon_vala_args += ['--vapidir='+join_paths(meson.source_root(),'src/vapis')] pamac_user_daemon_dependencies = [pamacclassic_library] pamac_user_daemon_c_args = [] -if DISABLE_AUR - pamac_user_daemon_vala_args += ['-D', 'DISABLE_AUR'] - pamac_user_daemon_c_args += ['-DDISABLE_AUR'] -endif if ENABLE_UPDATE_ICON pamac_user_daemon_vala_args += ['-D', 'ENABLE_UPDATE_ICON'] pamac_user_daemon_c_args += ['-DENABLE_UPDATE_ICON'] @@ -39,6 +35,10 @@ if KDE_TRAY pamac_user_daemon_vala_args += ['-D', 'KDE_TRAY'] pamac_user_daemon_c_args += ['-DKDE_TRAY'] endif +if DISABLE_AUR + pamac_user_daemon_vala_args += ['-D', 'DISABLE_AUR'] + pamac_user_daemon_c_args += ['-DDISABLE_AUR'] +endif pamac_user_daemon_hfolders = ['../../src'] executable('pamac-user-daemon',pamac_user_daemon_sources,dependencies: pamac_user_daemon_deps,vala_args: pamac_user_daemon_vala_args,c_args: pamac_user_daemon_c_args,link_with: pamac_user_daemon_dependencies,include_directories: include_directories(pamac_user_daemon_hfolders),install: true) From 4f71cfa4c2f163e75ab4cfe61ac7a01f9a096775 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 11 Nov 2017 11:41:17 -0300 Subject: [PATCH 4/7] undo translation to schemas --- data/org.pamac.aur.gschema.xml | 138 ++++-------------------- data/org.pamac.aur.gschema.xml.in | 32 ------ data/org.pamac.main.gschema.xml | 167 ++++++++--------------------- data/org.pamac.main.gschema.xml.in | 60 ----------- po/Makefile | 2 - po/af.po | 120 +++------------------ po/ar.po | 120 +++------------------ po/ast.po | 120 +++------------------ po/az_AZ.po | 120 +++------------------ po/be.po | 120 +++------------------ po/bg.po | 120 +++------------------ po/bn.po | 120 +++------------------ po/bs.po | 120 +++------------------ po/bs_BA.po | 120 +++------------------ po/ca.po | 120 +++------------------ po/ca_ES.po | 120 +++------------------ po/cs.po | 120 +++------------------ po/cs_CZ.po | 120 +++------------------ po/cy.po | 120 +++------------------ po/da.po | 120 +++------------------ po/de.po | 120 +++------------------ po/de_CH.po | 120 +++------------------ po/de_DE.po | 120 +++------------------ po/el.po | 120 +++------------------ po/el_GR.po | 120 +++------------------ po/en_GB.po | 120 +++------------------ po/eo.po | 120 +++------------------ po/es.po | 120 +++------------------ po/es_419.po | 120 +++------------------ po/es_AR.po | 120 +++------------------ po/es_ES.po | 120 +++------------------ po/es_MX.po | 120 +++------------------ po/es_SV.po | 120 +++------------------ po/et.po | 120 +++------------------ po/eu.po | 120 +++------------------ po/fa.po | 120 +++------------------ po/fa_IR.po | 120 +++------------------ po/fi.po | 120 +++------------------ po/files_to_translate | 2 - po/fo.po | 120 +++------------------ po/fr.po | 120 +++------------------ po/gl.po | 120 +++------------------ po/he.po | 120 +++------------------ po/hi.po | 120 +++------------------ po/hi_IN.po | 120 +++------------------ po/hr.po | 120 +++------------------ po/hr_HR.po | 120 +++------------------ po/hu.po | 120 +++------------------ po/id.po | 120 +++------------------ po/is.po | 120 +++------------------ po/is_IS.po | 120 +++------------------ po/it.po | 120 +++------------------ po/it_IT.po | 120 +++------------------ po/ja.po | 120 +++------------------ po/ka.po | 120 +++------------------ po/ko.po | 120 +++------------------ po/lt.po | 120 +++------------------ po/ml.po | 120 +++------------------ po/ms.po | 120 +++------------------ po/nb.po | 120 +++------------------ po/nl.po | 120 +++------------------ po/nl_BE.po | 120 +++------------------ po/nl_NL.po | 120 +++------------------ po/nn.po | 120 +++------------------ po/pamac.pot | 120 +++------------------ po/pl.po | 120 +++------------------ po/pl_PL.po | 120 +++------------------ po/pt.po | 120 +++------------------ po/pt_BR.po | 120 +++------------------ po/pt_PT.po | 120 +++------------------ po/ro.po | 120 +++------------------ po/ru.po | 120 +++------------------ po/si.po | 120 +++------------------ po/sk.po | 120 +++------------------ po/sl.po | 120 +++------------------ po/sl_SI.po | 120 +++------------------ po/sr.po | 120 +++------------------ po/sr@latin.po | 120 +++------------------ po/sr_RS.po | 120 +++------------------ po/sr_RS@latin.po | 120 +++------------------ po/sv.po | 120 +++------------------ po/tr.po | 120 +++------------------ po/uk.po | 120 +++------------------ po/ur_PK.po | 120 +++------------------ po/uz.po | 120 +++------------------ po/vi.po | 120 +++------------------ po/zh.po | 120 +++------------------ po/zh_CN.po | 120 +++------------------ po/zh_TW.po | 120 +++------------------ 89 files changed, 1226 insertions(+), 9135 deletions(-) delete mode 100644 data/org.pamac.aur.gschema.xml.in delete mode 100644 data/org.pamac.main.gschema.xml.in diff --git a/data/org.pamac.aur.gschema.xml b/data/org.pamac.aur.gschema.xml index e46a9a6..aef3a61 100644 --- a/data/org.pamac.aur.gschema.xml +++ b/data/org.pamac.aur.gschema.xml @@ -1,126 +1,32 @@ - - - - false - Enable AUR - + + + false + Enable AUR + Allow Pamac to search and install packages from AUR - Biarkan Pamac untuk mencari dan memasang paket dari AUR - Pamac toestaan om pakketten van AUR te zoeken en installeren - Dozvoli Pamac-u da traži i instalira pakete iz AUR-a - Дозволити Pamac шукати та встановлювати пакунки з AUR - Permitir que Pacman guete ya instale paquetes dende AUR - Позволи на Pamac да търси и инсталира пакети от AUR - Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR - Разрешить Pamac искать и устанавливать пакеты из AUR - Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren - اجازه دادن pamac برای جستجو و نصب بسته ها از AUR - Permette a Pamac cercare e installare pacchetti dal AUR - Leisti Pamac ieškoti ir diegti paketus iš AUR - Luba Pamacil otsida ning paigaldada pakette AURist - אפשר לPamac לחפש ולהתקין חבילות מתוך AUR - AUR paketleri aramak ve kurmak için izin ver - Permetre a Pamac buscar e instal·lar paquets des d'AUR - Pamac toestaan om pakketten van het AUR op te zoeken en te installeren - Permitir que o Pamac procure e instale pacotes do AUR - Permitir a Pamac que procure e instale os pacotes a partir de AUR - PamacがAURパッケージを探索し、インストールすることを許可する - Tillat Pamac å søke etter og installere pakker fra AUR - Pamac kereshet és telepíthet csomagokat az AUR -ból - Pamac toestaan om AUR pakketten te zoeken en te installeren - Permitir a Pamac buscar e instalar paquetes de AUR - Allow Pamac to search and install packages from AUR - Permitir que o Pamac procure e instale pacotes do AUR - Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति - Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR - 允许 Pamac 从 AUR 中搜索并安装软件包 - Cho phép Pamac tìm kiếm và cài đặt gói từ AUR - Tillåt Pamac att söka och installera paket från AUR - Gør det muligt for Pamac at søge i og installere pakker fra AUR - Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR - Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR - Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے - Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu - Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR - Омогући Памаку да претражује и инсталира пакете из AUR-a - Permite Pamac să caute și să instaleze pachete din AUR - Permettre à Pamac de chercher et installer des paquets depuis AUR - Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR - Permitir a Pamac buscar e instalar paquetes desde AUR - Dovoli Pamacu da išče in namešča pakete iz AUR - Anna Pamacin etsiä ja asentaa paketteja AUR:sta - Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish - 允許 Pamac 搜尋及安裝 AUR 上的軟體包 - Permitir Pamac para buscar e instalar paquetes desde AUR - Leyfa Pamac að leita að og setja inn pakka frá AUR - السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR - - - true - Search in AUR by default - AUR-da axtarmaq - Cari di AUR sebagai baku - Standaard in AUR zoeken - Uvijek traži u AUR-u - Шукати в AUR типово - Guetar n'AUR por defeutu - Търсене в AUR по подразбиране - Predvolene vyhľadávať v repozitári AUR - Поиск в AUR по умолчанию - Suche standardmäßig im AUR - جستجوی در AUR به صورت پیش فرض - Cerca in AUR come impostazione predefinita. - Pagal numatymą ieškoti AUR saugykloje - Vaikimisi otsi AURist - חפש בתוך AUR באופן שגרתי - Varsayılan olarak AUR depolarında da ara - Cerca a l'AUR per defecte - Zoek automatisch in AUR - Pesquisar no AUR por padrão - Pesquisar no AUR por padrão - デフォルトでAURを検索する - Søk i AUR som standard - Keresés AUR -ban alapértelmezetten - Stel zoeken in AUR als standaard in - Buscar en AUR por defecto - Search in AUR by default - Pesquisar no AUR por pré-definição - डिफ़ॉल्ट रूप से AUR में खोजें - Wyszukuj domyślnie w AUR - 默认在 AUR 中搜索 - Sök i AUR som standard - Søg i AUR som standard - Hledat v AUR defaultně - Αναζήτηση στο AUR από προεπιλογή - Bilatu AURen lehenetsita - Αναζήτηση στο AUR από προεπιλογή - Caută în AUR implicit - Rechercher depuis AUR par défaut - Buscar en AUR por defecto - Privzeto iskanje v AUR - 預設在 AUR 中搜尋 - Buscar en AUR por defecto - Leita sjálfgefið í AUR - بحث في AUR بشكل افتراضي - + + + true + Search in AUR by default + When AUR support is enabled search in AUR by default - - - false - Check AUR for updates - + + + false + Check AUR for updates + When AUR support is enabled check for updates from AUR - - - "/tmp" - AUR build directory - + + + "/tmp" + AUR build directory + Directory where to build packages that come from the AUR - - + + diff --git a/data/org.pamac.aur.gschema.xml.in b/data/org.pamac.aur.gschema.xml.in deleted file mode 100644 index aef3a61..0000000 --- a/data/org.pamac.aur.gschema.xml.in +++ /dev/null @@ -1,32 +0,0 @@ - - - - false - Enable AUR - - Allow Pamac to search and install packages from AUR - - - - true - Search in AUR by default - - When AUR support is enabled search in AUR by default - - - - false - Check AUR for updates - - When AUR support is enabled check for updates from AUR - - - - "/tmp" - AUR build directory - - Directory where to build packages that come from the AUR - - - - diff --git a/data/org.pamac.main.gschema.xml b/data/org.pamac.main.gschema.xml index 1762484..f21ef34 100644 --- a/data/org.pamac.main.gschema.xml +++ b/data/org.pamac.main.gschema.xml @@ -1,143 +1,60 @@ - - - - false - Remove unrequired dependencies - Hapus dependensi yang tidak dibutuhkan - Niet-benodigde afhankelijkheden verwijderen - Ukloni nepotrebne zavisnosti - Вилучити непотрібні залежності - Desaniciar dependencies non riquíes - Премахни ненужни зависимости - Odstrániť nepožadované závislosti - Удалить ненужные зависимости - Entferne nicht benötigte Abhängigkeiten - حذف وابستگی های غیرضروری - Rimuovere le dipendenze non necessarie - Šalinti nereikalingas priklausomybes - Eemalda mitte-nõutud sõltuvused - הסר תוספים לא נחוצים - Gereksiz bağımlılıkları kaldır - Elimina les dependències no requerides - Verwijder onnodige afhankelijkheiden - Remover dependências não requeridas - Remover dependências desnecessárias - 必要ではない依存関係を削除 - Fjern avhengige pakker som er unødvendige - Nem megkövetelt függőségek eltávolítása - Verwijder onnodige afhankelijkheden - Remover dependencias no requeridas - Remove unrequired dependencies - Remover dependências não requeridas - संयुक्त राष्ट्र आवश्यक निर्भरता निकालें - Usuwanie niewymaganych zależności - 移除不需要的依赖 - Gỡ bỏ phần phụ thuộc không cần thiết - Ta bort icke-nödvändiga beroenden - Fjern unødvendige afhængigheder - Odebrat nepotřebné závislosti - Αφαίρεση αχρησιμοποίητων εξαρτήσεων - غیر ضروری انحصار پیکج نکال دیں - Kendu behar ez diren menpekotasunak - Αφαίρεση αχρησιμοποίητων εξαρτήσεων - Уклони непотребне зависности - Elimină dependențe ce nu sunt necesare - Désinstaller les dépendances inutiles - Ukloni nepotrebne zavisnosti - Eliminar dependencias innecesarias - Odstrani nezahtevane odvisnosti - Poista ei-vaaditut riippuvuudet - Talab etilmagan qaramliklarni olib tashlash - 移除不需要的相依性 - Elimina dependencias sen contrapartida - Fjarlægja ónauðsynlegar kerfiskröfur - حذف الاعتماديات الغير مطلوبة - + + + false + Remove unrequired dependencies + When removing a package, also remove those dependencies that are not required by other packages (recurse option) - - - 6 - Refresh period - + + + 6 + Refresh period + How often to check for updates, value in hours (0 to disable) - - - true - Hide icon if there are no updates - + + + true + Hide icon if there are no updates + When there are no updates available, hide the tray icon - - - 3 - Numer of packages to keep - + + + 3 + Numer of packages to keep + Number of versions of each package to keep in the cache - Aantal in de cache te houden versies van elk pakket - Broj različitih verzija paketa za spremiti u predmemoriju - Кількість версій кожного пакунка зберігається в кеш-пам'яті - Брой версии от всеки пакет запазени в кеша - Počet verzií každého balíka, ktoré ponechať vo vyrovnávacej pamäti - Сохранять в кэше предыдущие версии пакетов в количестве - Anzahl der im Cache verbleibenden Paketversionen - تعدادی از نسخه های هر بسته را در حافظه موقت نگهداری کن - Numero di versioni di ogni pacchetto da conservare nella cache - Podėlyje laikomas kiekvieno paketo versijų skaičius - Önbellekte tutlacak her bir paketin sürüm sayısı - Nombre de versions de cada paquet per mantenir a la memòria cau - Número de versões de cada pacote a manter na cache - Número de versões de cada pacote a manter na cache - 各パッケージのバージョン番号をキャッシュに保存する - Antall versjoner av hver pakke som skal beholdes i hurtiglageret - A cache- ben csomagonként megtartandó példányok száma: - Aantal in de cache te houden versies van elk pakket - Número de versiones de cada paquete a mantener en caché - Número de versões de cada pacote a manter na cache - Liczba wersji każdego pakietu do przechowywania w pamięci podręcznej - 每个软件包保留在缓存中的版本数目 - Antal versioner av varje paket att behålla i cachen - Antal versioner af hver pakke der skal gemmes i cache - Počet verzí od každého balíčku udržovaného v paměti cache. - Katxean gorde beharreko pakete bakotzeko bertsio kopurua - Αριθμός των εκδόσεων για κάθε πακέτο που θα κρατηθεί στην αποθήκη - Nombre de versions de chaque paquet à conserver dans le cache - Número de versiones de cada paquete a guardar en cache - Število verzij za vsak paket shranjenih v predpomnilniku - 每個軟體包要保留在快取中的版本數量 - Número de versións de cada paquete para gardar na caché - Fjöldi af útgáfum af hverjum pakka til að halda í skyndiminni - - - false - Remove only uninstalled packages when cleaning cache - + + + false + Remove only uninstalled packages when cleaning cache + Remove only the versions of uninstalled packages when clean cache - - - "rgb(0,0,0)" - Terminal background color - + + + "rgb(0,0,0)" + Terminal background color + Terminal background color - - - "rgb(255,255,255)" - Terminal foreground color - + + + "rgb(255,255,255)" + Terminal foreground color + Terminal foreground color - - - "Monospace Regular 12" - Terminal font - + + + "Monospace Regular 12" + Terminal font + The font used in the terminal - - + + diff --git a/data/org.pamac.main.gschema.xml.in b/data/org.pamac.main.gschema.xml.in deleted file mode 100644 index f21ef34..0000000 --- a/data/org.pamac.main.gschema.xml.in +++ /dev/null @@ -1,60 +0,0 @@ - - - - false - Remove unrequired dependencies - - When removing a package, also remove those dependencies that are not required by other packages (recurse option) - - - - 6 - Refresh period - - How often to check for updates, value in hours (0 to disable) - - - - true - Hide icon if there are no updates - - When there are no updates available, hide the tray icon - - - - 3 - Numer of packages to keep - - Number of versions of each package to keep in the cache - - - - false - Remove only uninstalled packages when cleaning cache - - Remove only the versions of uninstalled packages when clean cache - - - - "rgb(0,0,0)" - Terminal background color - - Terminal background color - - - - "rgb(255,255,255)" - Terminal foreground color - - Terminal foreground color - - - - "Monospace Regular 12" - Terminal font - - The font used in the terminal - - - - diff --git a/po/Makefile b/po/Makefile index bedd223..14f326b 100644 --- a/po/Makefile +++ b/po/Makefile @@ -5,8 +5,6 @@ MSGOBJS=$(addprefix locale/,$(MSGLANGS:.po=/LC_MESSAGES/pamac.mo)) gettext: ../data/polkit/org.pamac.policy.in $(MSGOBJS) msgfmt --xml --template ../data/polkit/org.pamac.policy.in -d ./ -o ../data/polkit/org.pamac.policy - msgfmt --xml --template ../data/org.pamac.aur.gschema.xml.in -d ./ -o ../data/org.pamac.aur.gschema.xml - msgfmt --xml --template ../data/org.pamac.main.gschema.xml.in -d ./ -o ../data/org.pamac.main.gschema.xml clean: rm -rf locale diff --git a/po/af.po b/po/af.po index 20feb55..aff63a5 100644 --- a/po/af.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Afrikaans (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ar.po b/po/ar.po index 636408b..c0e7b99 100644 --- a/po/ar.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Arabic (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -592,8 +592,7 @@ msgstr "الواجهة Gtk3 لlibalpm" msgid "How often to check for updates, value in hours" msgstr "كيف سيتم التحقق من توفر تحديثات في اغلب الأوقات, قيمة بالساعات" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -613,109 +612,6 @@ msgstr "سرعة" msgid "Random" msgstr "عشوائية" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "بحث في AUR بشكل افتراضي" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "حذف الاعتماديات الغير مطلوبة" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "صلاحيات مطلوبة" @@ -801,6 +697,10 @@ msgstr "ملفات" msgid "_Apply" msgstr "_تطبيق" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "حذف الاعتماديات الغير مطلوبة" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -872,6 +772,14 @@ msgstr "" msgid "Enable AUR support" msgstr "تفعيل دعم مستودعات AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "السماح لـPamac بالبحث و تثبيت حزم من مستودعات AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "بحث في AUR بشكل افتراضي" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr " AUR تحقق من وجود تحديثات من " diff --git a/po/ast.po b/po/ast.po index c6c7b46..c9baf46 100644 --- a/po/ast.po +++ b/po/ast.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Asturian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -578,8 +578,7 @@ msgstr "Un frontal GTK3 pa libalpm" msgid "How often to check for updates, value in hours" msgstr "¿Cuándo quies guetar anovamientos? Valor n'hores" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -599,109 +598,6 @@ msgstr "Velocidá" msgid "Random" msgstr "Al debalu" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que Pacman guete ya instale paquetes dende AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Guetar n'AUR por defeutu" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Desaniciar dependencies non riquíes" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Ríquese l'autenticación" @@ -787,6 +683,10 @@ msgstr "Ficheros" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Desaniciar dependencies non riquíes" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -861,6 +761,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar sofitu d'AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que Pacman guete ya instale paquetes dende AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Guetar n'AUR por defeutu" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar anovamientos d'AUR" diff --git a/po/az_AZ.po b/po/az_AZ.po index 8dc1eba..0bb69b7 100644 --- a/po/az_AZ.po +++ b/po/az_AZ.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/" @@ -573,8 +573,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "Sürət" msgid "Random" msgstr "Təsadüfi" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "AUR-da axtarmaq" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Kimlik tələb olunur" @@ -782,6 +678,10 @@ msgstr "Fayllar" msgid "_Apply" msgstr "_Tətbiq etmək" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -851,6 +751,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR dəstəyini aktiv et" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "AUR-da axtarmaq" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR-dan yeniliklərin yoxlanılması" diff --git a/po/be.po b/po/be.po index 43130c9..3ad0ac2 100644 --- a/po/be.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Belarusian (http://www.transifex.com/manjarolinux/manjaro-" @@ -580,8 +580,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -601,109 +600,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -789,6 +685,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -858,6 +758,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bg.po b/po/bg.po index 5fa6cad..c2d66cf 100644 --- a/po/bg.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-08-01 11:22+0000\n" "Last-Translator: Galin Iskrenov \n" "Language-Team: Bulgarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -579,8 +579,7 @@ msgstr "GTK3 интерфейс за libalpm" msgid "How often to check for updates, value in hours" msgstr "Колко често да се проверява за актуализации, стойност в часове" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Брой версии от всеки пакет запазени в кеша" @@ -600,109 +599,6 @@ msgstr "Скорост" msgid "Random" msgstr "Разбъркано " -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Позволи на Pamac да търси и инсталира пакети от AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Търсене в AUR по подразбиране " - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Премахни ненужни зависимости" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Изисква се идентификация" @@ -788,6 +684,10 @@ msgstr "Файлове" msgid "_Apply" msgstr "_Приложи" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Премахни ненужни зависимости" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -861,6 +761,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Позволи AUR поддръжка" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Позволи на Pamac да търси и инсталира пакети от AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Търсене в AUR по подразбиране " + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Проверка за актуализации от AUR" diff --git a/po/bn.po b/po/bn.po index 140d057..3f57e64 100644 --- a/po/bn.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bengali (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bs.po b/po/bs.po index 4e4a805..bb4c1b5 100644 --- a/po/bs.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/bs_BA.po b/po/bs_BA.po index eecc2f1..518c555 100644 --- a/po/bs_BA.po +++ b/po/bs_BA.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ca.po b/po/ca.po index 42a351c..0a7f1db 100644 --- a/po/ca.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 14:18+0000\n" "Last-Translator: Davidmp \n" "Language-Team: Catalan (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,8 +581,7 @@ msgstr "Una interfície Gtk3 per a libalpm" msgid "How often to check for updates, value in hours" msgstr "Freqüència per comprovar si hi ha actualitzacions, valor en hores" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Nombre de versions de cada paquet per mantenir a la memòria cau" @@ -602,109 +601,6 @@ msgstr "Velocitat" msgid "Random" msgstr "Aleatori" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permetre a Pamac buscar e instal·lar paquets des d'AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cerca a l'AUR per defecte" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimina les dependències no requerides" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Cal autenticació" @@ -790,6 +686,10 @@ msgstr "Fitxers" msgid "_Apply" msgstr "_Aplica" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimina les dependències no requerides" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -866,6 +766,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar suport per AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permetre a Pamac buscar e instal·lar paquets des d'AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cerca a l'AUR per defecte" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprova si hi ha actualitzacions de l'AUR" diff --git a/po/ca_ES.po b/po/ca_ES.po index 4316cd6..40ca1e1 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/manjarolinux/" @@ -576,8 +576,7 @@ msgstr "interfície Gtk3 per a libalpm" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Cal autenticació" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/cs.po b/po/cs.po index 31bcf5c..ddc6430 100644 --- a/po/cs.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -582,8 +582,7 @@ msgstr "Gtk3 frontend pro libalpm" msgid "How often to check for updates, value in hours" msgstr "Jak často kontrolovat aktualizace, hodnota v hodinách" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Počet verzí od každého balíčku udržovaného v paměti cache." @@ -603,109 +602,6 @@ msgstr "rychlost" msgid "Random" msgstr "náhodně" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Hledat v AUR defaultně" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odebrat nepotřebné závislosti" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Je vyžadováno ověření" @@ -791,6 +687,10 @@ msgstr "Soubory" msgid "_Apply" msgstr "_Použít" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odebrat nepotřebné závislosti" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -865,6 +765,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Povolit podporu AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Povolit aplikaci Pamac vyhledávat a instalovat balíčky z AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Hledat v AUR defaultně" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Zkontrolovat aktualizace z AUR" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index fba9234..136b6f2 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/manjarolinux/" @@ -579,8 +579,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,109 +599,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -788,6 +684,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -857,6 +757,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/cy.po b/po/cy.po index e1f61bb..ef05a18 100644 --- a/po/cy.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Welsh (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,8 +579,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,109 +599,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -788,6 +684,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -857,6 +757,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/da.po b/po/da.po index 1a8b94d..61c4d19 100644 --- a/po/da.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Danish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -583,8 +583,7 @@ msgstr "En frontend til libalpm" msgid "How often to check for updates, value in hours" msgstr "Hvor ofte der checkes efter opdatering, værdi opgives i timer" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antal versioner af hver pakke der skal gemmes i cache" @@ -604,109 +603,6 @@ msgstr "Hastighed" msgid "Random" msgstr "Tilfældig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Gør det muligt for Pamac at søge i og installere pakker fra AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Søg i AUR som standard" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjern unødvendige afhængigheder" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Godkendelse er påkrævet" @@ -792,6 +688,10 @@ msgstr "Filer" msgid "_Apply" msgstr "_Anvend" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjern unødvendige afhængigheder" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -866,6 +766,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktiver AUR-understøttelse" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Gør det muligt for Pamac at søge i og installere pakker fra AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Søg i AUR som standard" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Tjek efter opdateringer fra AUR" diff --git a/po/de.po b/po/de.po index e3e6078..5875022 100644 --- a/po/de.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -590,8 +590,7 @@ msgstr "Eine GTK3-Benutzeroberfläche für libalpm" msgid "How often to check for updates, value in hours" msgstr "Wie oft soll nach Erneuerungen geprüft werden? (Wert in Stunden)" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Anzahl der im Cache verbleibenden Paketversionen" @@ -611,109 +610,6 @@ msgstr "Geschwindigkeit" msgid "Random" msgstr "Zufällig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Suche standardmäßig im AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Entferne nicht benötigte Abhängigkeiten" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authentifizierung erforderlich" @@ -799,6 +695,10 @@ msgstr "Dateien" msgid "_Apply" msgstr "_Übernehmen" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Entferne nicht benötigte Abhängigkeiten" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -875,6 +775,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR-Support aktivieren" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Erlaube Pamac nach Paketen im AUR zu suchen und zu installieren" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Suche standardmäßig im AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Suche nach Aktualisierungen aus dem AUR" diff --git a/po/de_CH.po b/po/de_CH.po index 955f034..59a1408 100644 --- a/po/de_CH.po +++ b/po/de_CH.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Switzerland) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 50fd2c3..591e868 100644 --- a/po/de_DE.po +++ b/po/de_DE.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Germany) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/el.po b/po/el.po index 955df2a..f0c7526 100644 --- a/po/el.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -584,8 +584,7 @@ msgstr "Ένα gtk3 εμπρόσθιο τμήμα για το pyalpm" msgid "How often to check for updates, value in hours" msgstr "Πόσο συχνά να ελέγχονται αναβαθμίσεις, τιμή σε ώρες" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Αριθμός των εκδόσεων για κάθε πακέτο που θα κρατηθεί στην αποθήκη" @@ -605,109 +604,6 @@ msgstr "Ταχύτητα" msgid "Random" msgstr "Τυχαίο" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Αναζήτηση στο AUR από προεπιλογή" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Απαιτείται πιστοποίηση" @@ -793,6 +689,10 @@ msgstr "Αρχεία" msgid "_Apply" msgstr "Εφαρμογή" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -867,6 +767,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Ενεργοποίηση υποστήριξης AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Αναζήτηση στο AUR από προεπιλογή" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Έλεγχος για αναβαθμίσεις από το AUR" diff --git a/po/el_GR.po b/po/el_GR.po index eda313f..1942a90 100644 --- a/po/el_GR.po +++ b/po/el_GR.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (Greece) (http://www.transifex.com/manjarolinux/manjaro-" @@ -573,8 +573,7 @@ msgstr "Ένα gtk3 εμπρόσθιο τμήμα για το pyalpm" msgid "How often to check for updates, value in hours" msgstr "Πόσο συχνά να ελέγχονται αναβαθμίσεις, τιμή σε ώρες" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "Ταχύτητα" msgid "Random" msgstr "Τυχαίο" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Αναζήτηση στο AUR από προεπιλογή" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Απαιτείται πιστοποίηση" @@ -782,6 +678,10 @@ msgstr "Αρχεία" msgid "_Apply" msgstr "Εφαρμογή" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Αφαίρεση αχρησιμοποίητων εξαρτήσεων" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -856,6 +756,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Ενεργοποίηση υποστήριξης AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Επέτρεψε στον pamac να ψάξει και να εγκαταστήσει πακέτα απο το AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Αναζήτηση στο AUR από προεπιλογή" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Έλεγχος για αναβαθμίσεις από το AUR" diff --git a/po/en_GB.po b/po/en_GB.po index 0b7d0c5..fecb678 100644 --- a/po/en_GB.po +++ b/po/en_GB.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/" @@ -575,8 +575,7 @@ msgstr "A Gtk3 frontend for libalpm" msgid "How often to check for updates, value in hours" msgstr "How often to check for updates, value in hours" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,109 +595,6 @@ msgstr "Speed" msgid "Random" msgstr "Random" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Allow Pamac to search and install packages from AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Search in AUR by default" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remove unrequired dependencies" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -784,6 +680,10 @@ msgstr "Files" msgid "_Apply" msgstr "_Apply" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remove unrequired dependencies" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -858,6 +758,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Enable AUR support" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Allow Pamac to search and install packages from AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Search in AUR by default" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Check for updates from AUR" diff --git a/po/eo.po b/po/eo.po index 9c84d9e..b6a5f16 100644 --- a/po/eo.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Esperanto (http://www.transifex.com/manjarolinux/manjaro-" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "Dosieroj" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es.po b/po/es.po index 689d499..6ce8fd7 100644 --- a/po/es.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -584,8 +584,7 @@ msgstr "Una interfaz gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frecuencia para buscar actualizaciones, valor en horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versiones de cada paquete a guardar en cache" @@ -605,109 +604,6 @@ msgstr "Velocidad" msgid "Random" msgstr "Aleatorio" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac buscar e instalar paquetes desde AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Eliminar dependencias innecesarias " - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se necesita autenticación" @@ -793,6 +689,10 @@ msgstr "Archivos" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Eliminar dependencias innecesarias " + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -870,6 +770,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar soporte para AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac buscar e instalar paquetes desde AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizaciones desde AUR" diff --git a/po/es_419.po b/po/es_419.po index e17d5fe..4afbe40 100644 --- a/po/es_419.po +++ b/po/es_419.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/" @@ -576,8 +576,7 @@ msgstr "Un frontend Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Cuán seguido revisar por actualizaciones, valor en horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versiones de cada paquete a mantener en caché" @@ -597,109 +596,6 @@ msgstr "Velocidad" msgid "Random" msgstr "Al azar" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac buscar e instalar paquetes de AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependencias no requeridas" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se requiere autenticación" @@ -785,6 +681,10 @@ msgstr "Buscar en AUR" msgid "_Apply" msgstr "...Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependencias no requeridas" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -861,6 +761,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar soporte de AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac buscar e instalar paquetes de AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizaciones desde AUR" diff --git a/po/es_AR.po b/po/es_AR.po index 3362372..6b3766c 100644 --- a/po/es_AR.po +++ b/po/es_AR.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index a568d7b..3c584cb 100644 --- a/po/es_ES.po +++ b/po/es_ES.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_MX.po b/po/es_MX.po index 24c94de..40a4a87 100644 --- a/po/es_MX.po +++ b/po/es_MX.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/manjarolinux/" @@ -573,8 +573,7 @@ msgstr "Una interfaz de gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Se requiere autenticación" @@ -782,6 +678,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -851,6 +751,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/es_SV.po b/po/es_SV.po index af4671d..f6cd754 100644 --- a/po/es_SV.po +++ b/po/es_SV.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (El Salvador) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/et.po b/po/et.po index e83db6b..5e8bd6f 100644 --- a/po/et.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Estonian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -575,8 +575,7 @@ msgstr "Gtk3 eessüsteem libalpm tarbeks" msgid "How often to check for updates, value in hours" msgstr "Kui tihti kontrollida uuendusi, väärtus tundides" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -596,109 +595,6 @@ msgstr "Kiirus" msgid "Random" msgstr "Suvaline" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Luba Pamacil otsida ning paigaldada pakette AURist" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Vaikimisi otsi AURist" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Eemalda mitte-nõutud sõltuvused" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -784,6 +680,10 @@ msgstr "Failid" msgid "_Apply" msgstr "_Rakenda" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Eemalda mitte-nõutud sõltuvused" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -855,6 +755,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Võimalda AURi tugi" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Luba Pamacil otsida ning paigaldada pakette AURist" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Vaikimisi otsi AURist" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Kontrolli uuendusi AURist" diff --git a/po/eu.po b/po/eu.po index 2a5486d..265918a 100644 --- a/po/eu.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Basque (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -577,8 +577,7 @@ msgstr "Gtk3n eraikitako ibalpm liburutegiaren interfaze bat" msgid "How often to check for updates, value in hours" msgstr "Eguneraketak egiaztatzeko maiztasuna, orduetan" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Katxean gorde beharreko pakete bakotzeko bertsio kopurua" @@ -598,109 +597,6 @@ msgstr "Abiadura" msgid "Random" msgstr "Ausazkoa" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Bilatu AURen lehenetsita" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Kendu behar ez diren menpekotasunak" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentifikazioa behar da" @@ -786,6 +682,10 @@ msgstr "Fitxategiak" msgid "_Apply" msgstr "_Aplikatu" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Kendu behar ez diren menpekotasunak" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -860,6 +760,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Gaitu AUR euskarria" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac AURtik paketeak bilatzeko eta instalatzeko baimendu" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Bilatu AURen lehenetsita" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Egiaztatu AUReko eguneraketak" diff --git a/po/fa.po b/po/fa.po index 95a392f..891c88e 100644 --- a/po/fa.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,8 +573,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -782,6 +678,10 @@ msgstr "فایل‌ها" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -851,6 +751,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/fa_IR.po b/po/fa_IR.po index 4e5f8c8..d8ac6ce 100644 --- a/po/fa_IR.po +++ b/po/fa_IR.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: manjaro-pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (Iran) (http://www.transifex.com/manjarolinux/manjaro-" @@ -579,8 +579,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "اغلب چگونگی به روز رسانی بسته را چک کنید ،ارزش زمانی " -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "تعدادی از نسخه های هر بسته را در حافظه موقت نگهداری کن" @@ -600,109 +599,6 @@ msgstr "سرعت" msgid "Random" msgstr "تصادفی" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "اجازه دادن pamac برای جستجو و نصب بسته ها از AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "جستجوی در AUR به صورت پیش فرض" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "حذف وابستگی های غیرضروری" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "تائید هویت شکست خورد" @@ -788,6 +684,10 @@ msgstr "فایل‌ها" msgid "_Apply" msgstr "_اعمال" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "حذف وابستگی های غیرضروری" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -859,6 +759,14 @@ msgstr "" msgid "Enable AUR support" msgstr "فعال کردن پشتیبانی از AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "اجازه دادن pamac برای جستجو و نصب بسته ها از AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "جستجوی در AUR به صورت پیش فرض" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "بررسی بروزرسانی از AUR" diff --git a/po/fi.po b/po/fi.po index 8733598..55dc683 100644 --- a/po/fi.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Finnish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,8 +581,7 @@ msgstr "Gtk3‐edustaohjelma libalpm:lle" msgid "How often to check for updates, value in hours" msgstr "Kuinka usein tarkistetaan päivityksiä, arvo tunneissa" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -602,109 +601,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Anna Pamacin etsiä ja asentaa paketteja AUR:sta" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Poista ei-vaaditut riippuvuudet" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -790,6 +686,10 @@ msgstr "Tiedostot" msgid "_Apply" msgstr "_hyväksy" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Poista ei-vaaditut riippuvuudet" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -861,6 +761,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Ota AUR-tuki käyttöön" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Anna Pamacin etsiä ja asentaa paketteja AUR:sta" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/files_to_translate b/po/files_to_translate index 61377f7..3d7409d 100644 --- a/po/files_to_translate +++ b/po/files_to_translate @@ -7,8 +7,6 @@ ../src/pamac-manager/manager_window.vala ../src/preferences_dialog.vala ../src/choose_ignorepkgs_dialog.vala -../data/org.pamac.aur.gschema.xml.in -../data/org.pamac.main.gschema.xml.in ../data/polkit/org.pamac.policy.in ../data/interface/choose_provider_dialog.ui ../data/interface/progress_dialog.ui diff --git a/po/fo.po b/po/fo.po index 7054a9a..12402fd 100644 --- a/po/fo.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Faroese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -574,8 +574,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -595,109 +594,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -783,6 +679,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -852,6 +752,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/fr.po b/po/fr.po index bc50899..4cce1e9 100644 --- a/po/fr.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-31 13:03+0000\n" "Last-Translator: Charles Monzat \n" "Language-Team: French (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -585,8 +585,7 @@ msgstr "Une interface Gtk3 pour libalpm" msgid "How often to check for updates, value in hours" msgstr "Fréquence de vérification des mises à jour, valeur en heures " -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Nombre de versions de chaque paquet à conserver dans le cache " @@ -606,109 +605,6 @@ msgstr "Vitesse" msgid "Random" msgstr "Aléatoire" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permettre à Pamac de chercher et installer des paquets depuis AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Rechercher depuis AUR par défaut" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Désinstaller les dépendances inutiles" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authentification nécessaire" @@ -794,6 +690,10 @@ msgstr "Fichiers" msgid "_Apply" msgstr "_Appliquer" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Désinstaller les dépendances inutiles" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -870,6 +770,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Activer le support d'AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permettre à Pamac de chercher et installer des paquets depuis AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Rechercher depuis AUR par défaut" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Vérifier les mises à jour depuis AUR" diff --git a/po/gl.po b/po/gl.po index 9f67b12..1c7b4ad 100644 --- a/po/gl.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Galician (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,8 +573,7 @@ msgstr "Unha interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Cantas veces para comprobar actualizacións, o valor en horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versións de cada paquete para gardar na caché" @@ -594,109 +593,6 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatorio" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir Pamac para buscar e instalar paquetes desde AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Buscar en AUR por defecto" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimina dependencias sen contrapartida" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "A autenticación é necesaria" @@ -782,6 +678,10 @@ msgstr "Arquivos" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimina dependencias sen contrapartida" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -858,6 +758,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Activar o soporte AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir Pamac para buscar e instalar paquetes desde AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Buscar en AUR por defecto" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Comprobar actualizacións dende AUR" diff --git a/po/he.po b/po/he.po index 241f6a2..a3eae35 100644 --- a/po/he.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hebrew (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,8 +576,7 @@ msgstr "מגשר חזיתי Gtk3 עבור libalpm" msgid "How often to check for updates, value in hours" msgstr "מהי תדירות בדיקת העדכונים, בשעות" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "מהירות" msgid "Random" msgstr "אקראי" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "אפשר לPamac לחפש ולהתקין חבילות מתוך AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "חפש בתוך AUR באופן שגרתי" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "הסר תוספים לא נחוצים" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "נדרש אישור" @@ -785,6 +681,10 @@ msgstr "קבצים" msgid "_Apply" msgstr "_החל" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "הסר תוספים לא נחוצים" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -857,6 +757,14 @@ msgstr "" msgid "Enable AUR support" msgstr "אפשר תמיכת AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "אפשר לPamac לחפש ולהתקין חבילות מתוך AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "חפש בתוך AUR באופן שגרתי" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "בדוק עדכונים מתוך AUR" diff --git a/po/hi.po b/po/hi.po index 499b006..72c65dd 100644 --- a/po/hi.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "घंटे में अपडेट, मूल्य के लिए जाँच करने के लिए कितनी बार" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "डिफ़ॉल्ट रूप से AUR में खोजें" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "संयुक्त राष्ट्र आवश्यक निर्भरता निकालें" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "प्रमाणीकरण की आवश्यकता है" @@ -785,6 +681,10 @@ msgstr "फ़ाइलें" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "संयुक्त राष्ट्र आवश्यक निर्भरता निकालें" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR समर्थन सक्रिय" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac AUR से संकुल को खोजने और स्थापित करने की अनुमति" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "डिफ़ॉल्ट रूप से AUR में खोजें" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR से अद्यतन के लिए जाँच करें" diff --git a/po/hi_IN.po b/po/hi_IN.po index ea07956..5addf79 100644 --- a/po/hi_IN.po +++ b/po/hi_IN.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (India) (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/hr.po b/po/hr.po index 7339a5c..beea84d 100644 --- a/po/hr.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-08-02 13:28+0000\n" "Last-Translator: Lovro Kudelić \n" "Language-Team: Croatian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,8 +581,7 @@ msgstr "GTK+ 3 sučelje za libalpm" msgid "How often to check for updates, value in hours" msgstr "Koliko često provjeravati ažuriranja, vrijednost u satima" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Broj različitih verzija paketa za spremiti u predmemoriju" @@ -602,109 +601,6 @@ msgstr "Brzina" msgid "Random" msgstr "Slučajni odabir" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dozvoli Pamac-u da traži i instalira pakete iz AUR-a" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Uvijek traži u AUR-u" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ukloni nepotrebne zavisnosti" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Potrebna je autorizacija" @@ -790,6 +686,10 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Primijeni" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ukloni nepotrebne zavisnosti" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -864,6 +764,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Omogući AUR podršku" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dozvoli Pamac-u da traži i instalira pakete iz AUR-a" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Uvijek traži u AUR-u" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Provjeri ažuriranja iz AUR-a" diff --git a/po/hr_HR.po b/po/hr_HR.po index 62d9f7c..a9ebc81 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/manjarolinux/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/hu.po b/po/hu.po index d7756ff..19d9cb6 100644 --- a/po/hu.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hungarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -577,8 +577,7 @@ msgstr "Egy gtk3 felület libalpm-hoz" msgid "How often to check for updates, value in hours" msgstr "Milyen gyakran ellenőrizze a frissítéseket? Értékek órában" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "A cache- ben csomagonként megtartandó példányok száma:" @@ -598,109 +597,6 @@ msgstr "Sebesség" msgid "Random" msgstr "Vélerlenszerű" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac kereshet és telepíthet csomagokat az AUR -ból" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Keresés AUR -ban alapértelmezetten" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Nem megkövetelt függőségek eltávolítása" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Hitelesítés szükséges" @@ -786,6 +682,10 @@ msgstr "Fájlok" msgid "_Apply" msgstr "Alkalmaz" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Nem megkövetelt függőségek eltávolítása" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -860,6 +760,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR támogatás engedélyezése" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac kereshet és telepíthet csomagokat az AUR -ból" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Keresés AUR -ban alapértelmezetten" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR frissítések keresése" diff --git a/po/id.po b/po/id.po index 682f040..552bc6b 100644 --- a/po/id.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Indonesian (http://www.transifex.com/manjarolinux/manjaro-" @@ -585,8 +585,7 @@ msgstr "Sebuah frontend Gtk3 untuk libalpm" msgid "How often to check for updates, value in hours" msgstr "Berapa lama untuk memeriksa pembaharuan, nilai dalam jam" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -606,109 +605,6 @@ msgstr "Kecepatan" msgid "Random" msgstr "Acak" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Biarkan Pamac untuk mencari dan memasang paket dari AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cari di AUR sebagai baku" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Hapus dependensi yang tidak dibutuhkan" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Membutuhkan Otentifikasi" @@ -794,6 +690,10 @@ msgstr "Berkas" msgid "_Apply" msgstr "_Terapkan" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Hapus dependensi yang tidak dibutuhkan" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -868,6 +768,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Izinkan dukungan AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Biarkan Pamac untuk mencari dan memasang paket dari AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cari di AUR sebagai baku" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Periksa pembaruan dari AUR" diff --git a/po/is.po b/po/is.po index 612cd61..4f2c2b2 100644 --- a/po/is.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (http://www.transifex.com/manjarolinux/manjaro-" @@ -575,8 +575,7 @@ msgstr "Gtk3 viðmót fyrir libalpm" msgid "How often to check for updates, value in hours" msgstr "Hversu oft á að athuga með uppfærslur, í klukkustundum" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Fjöldi af útgáfum af hverjum pakka til að halda í skyndiminni" @@ -596,109 +595,6 @@ msgstr "Hraði" msgid "Random" msgstr "Handahófskennt" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Leyfa Pamac að leita að og setja inn pakka frá AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Leita sjálfgefið í AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjarlægja ónauðsynlegar kerfiskröfur" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Auðkenningar er krafist" @@ -784,6 +680,10 @@ msgstr "Skrár" msgid "_Apply" msgstr "_Virkja" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjarlægja ónauðsynlegar kerfiskröfur" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -858,6 +758,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Virkja AUR-stuðning" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Leyfa Pamac að leita að og setja inn pakka frá AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Leita sjálfgefið í AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Athuga með uppfærslur frá AUR" diff --git a/po/is_IS.po b/po/is_IS.po index 800c991..009437e 100644 --- a/po/is_IS.po +++ b/po/is_IS.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (Iceland) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/it.po b/po/it.po index e7dc5c6..ebb8b53 100644 --- a/po/it.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -586,8 +586,7 @@ msgstr "Frontend gtk3 per libalpm" msgid "How often to check for updates, value in hours" msgstr "Con quale frequenza controllare gli aggiornamenti, il valore in ore" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Numero di versioni di ogni pacchetto da conservare nella cache" @@ -607,109 +606,6 @@ msgstr "Velocità" msgid "Random" msgstr "Casuale" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permette a Pamac cercare e installare pacchetti dal AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Cerca in AUR come impostazione predefinita." - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Rimuovere le dipendenze non necessarie" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticazione richiesta" @@ -795,6 +691,10 @@ msgstr "Files" msgid "_Apply" msgstr "_Applica" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Rimuovere le dipendenze non necessarie" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -869,6 +769,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Abilita supporto per AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permette a Pamac cercare e installare pacchetti dal AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Cerca in AUR come impostazione predefinita." + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controlla aggiornamenti da AUR" diff --git a/po/it_IT.po b/po/it_IT.po index 03d6715..eff682b 100644 --- a/po/it_IT.po +++ b/po/it_IT.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (Italy) (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ja.po b/po/ja.po index 83142fd..53886fb 100644 --- a/po/ja.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Japanese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,8 +573,7 @@ msgstr "libalpmのためのGtk3フロントエンド" msgid "How often to check for updates, value in hours" msgstr "どれくらいの頻度で更新をチェックしますか、時間で指定してください。" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "各パッケージのバージョン番号をキャッシュに保存する" @@ -594,109 +593,6 @@ msgstr "速度" msgid "Random" msgstr "ランダム" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "PamacがAURパッケージを探索し、インストールすることを許可する" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "デフォルトでAURを検索する" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "必要ではない依存関係を削除" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "認証が必要です" @@ -782,6 +678,10 @@ msgstr "ファイル" msgid "_Apply" msgstr "適用(_A)" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "必要ではない依存関係を削除" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -856,6 +756,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AURのサポートを可能にする" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "PamacがAURパッケージを探索し、インストールすることを許可する" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "デフォルトでAURを検索する" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR 更新の確認" diff --git a/po/ka.po b/po/ka.po index 14d3f65..0c14fae 100644 --- a/po/ka.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Georgian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -571,8 +571,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,109 +591,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -780,6 +676,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -849,6 +749,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "განახლებების შემოწმება AUR-იდან" diff --git a/po/ko.po b/po/ko.po index 2ef79ff..67feab9 100644 --- a/po/ko.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Korean (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -573,8 +573,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "인증이 필요합니다" @@ -782,6 +678,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -851,6 +751,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/lt.po b/po/lt.po index 156b061..b1dde7f 100644 --- a/po/lt.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-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-" @@ -579,8 +579,7 @@ msgstr "Gtk3 naudotojo sąsaja libalpm bibliotekai" msgid "How often to check for updates, value in hours" msgstr "Kaip dažnai tikrinti ar yra atnaujinimų, reikšmė valandomis" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Podėlyje laikomas kiekvieno paketo versijų skaičius" @@ -600,109 +599,6 @@ msgstr "Greitį" msgid "Random" msgstr "Atsitiktinai" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Leisti Pamac ieškoti ir diegti paketus iš AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pagal numatymą ieškoti AUR saugykloje" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Šalinti nereikalingas priklausomybes" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Reikalingas tapatybės nustatymas" @@ -788,6 +684,10 @@ msgstr "Failai" msgid "_Apply" msgstr "_Taikyti" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Šalinti nereikalingas priklausomybes" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -862,6 +762,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Įjungti AUR palaikymą" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Leisti Pamac ieškoti ir diegti paketus iš AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pagal numatymą ieškoti AUR saugykloje" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Tikrinti atnaujinimus iš AUR" diff --git a/po/ml.po b/po/ml.po index 30c9f98..27851e5 100644 --- a/po/ml.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malayalam (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/ms.po b/po/ms.po index 7f9894c..07a7aed 100644 --- a/po/ms.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malay (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -570,8 +570,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -591,109 +590,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -779,6 +675,10 @@ msgstr "Fail" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -848,6 +748,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/nb.po b/po/nb.po index d4e2332..4b2d5ae 100644 --- a/po/nb.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/manjarolinux/" @@ -590,8 +590,7 @@ msgstr "En Gtk3-frontend for libalpm" msgid "How often to check for updates, value in hours" msgstr "Hvor ofte skal oppdateringer sees etter, verdi i timer " -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antall versjoner av hver pakke som skal beholdes i hurtiglageret" @@ -611,109 +610,6 @@ msgstr "Hastighet" msgid "Random" msgstr "Tilfeldig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Tillat Pamac å søke etter og installere pakker fra AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Søk i AUR som standard" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Fjern avhengige pakker som er unødvendige" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentisering kreves" @@ -799,6 +695,10 @@ msgstr "Filer" msgid "_Apply" msgstr "_Utfør" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Fjern avhengige pakker som er unødvendige" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -873,6 +773,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktiver AUR-støtte" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Tillat Pamac å søke etter og installere pakker fra AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Søk i AUR som standard" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Se etter oppdateringer fra AUR" diff --git a/po/nl.po b/po/nl.po index d2f5c34..95ddd38 100644 --- a/po/nl.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 09:20+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -588,8 +588,7 @@ msgstr "Een Gtk3 frontend voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Controle interval voor updates, waarde in uren" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Aantal in de cache te houden versies van elk pakket" @@ -609,109 +608,6 @@ msgstr "Snelheid" msgid "Random" msgstr "Willekeurig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om AUR pakketten te zoeken en te installeren" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Stel zoeken in AUR als standaard in" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Verwijder onnodige afhankelijkheden" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Verificatie vereist" @@ -797,6 +693,10 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Toepassen" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Verwijder onnodige afhankelijkheden" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -871,6 +771,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Activeer AUR ondersteuning" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om AUR pakketten te zoeken en te installeren" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Stel zoeken in AUR als standaard in" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controleer AUR voor opwaarderingen" diff --git a/po/nl_BE.po b/po/nl_BE.po index b643bb7..9c4f36d 100644 --- a/po/nl_BE.po +++ b/po/nl_BE.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Dutch (Belgium) (http://www.transifex.com/manjarolinux/" @@ -573,8 +573,7 @@ msgstr "Een Gtk3 interface voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Hoe vaak voor updates kijken, waarde in uren" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "Snelheid" msgid "Random" msgstr "Rando" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om pakketten van het AUR op te zoeken en te installeren" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Zoek automatisch in AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Verwijder onnodige afhankelijkheiden" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -782,6 +678,10 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Doorvoeren " +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Verwijder onnodige afhankelijkheiden" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -856,6 +756,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR ondersteuning aanzetten " +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om pakketten van het AUR op te zoeken en te installeren" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Zoek automatisch in AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Zoeken naar updates van de AUR" diff --git a/po/nl_NL.po b/po/nl_NL.po index 5a6e744..6b7fcb3 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 09:19+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/manjarolinux/" @@ -578,8 +578,7 @@ msgstr "Een GTK3-frontend voor libalpm" msgid "How often to check for updates, value in hours" msgstr "Hoe vaak moet er worden gecontroleerd op updates? (waarde in uren)" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Aantal in de cache te houden versies van elk pakket" @@ -599,109 +598,6 @@ msgstr "Snelheid" msgid "Random" msgstr "Willekeurig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac toestaan om pakketten van AUR te zoeken en installeren" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Standaard in AUR zoeken" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Niet-benodigde afhankelijkheden verwijderen" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Authenticatie vereist" @@ -787,6 +683,10 @@ msgstr "Bestanden" msgid "_Apply" msgstr "_Toepassen" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Niet-benodigde afhankelijkheden verwijderen" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -861,6 +761,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR-ondersteuning inschakelen" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac toestaan om pakketten van AUR te zoeken en installeren" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Standaard in AUR zoeken" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Controleren op AUR-updates" diff --git a/po/nn.po b/po/nn.po index a502928..ec7a2cb 100644 --- a/po/nn.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/manjarolinux/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pamac.pot b/po/pamac.pot index d8e1c22..154d915 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 11:29-0300\n" +"POT-Creation-Date: 2017-11-11 11:40-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -571,8 +571,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -592,109 +591,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -780,6 +676,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -849,6 +749,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pl.po b/po/pl.po index 9c9d447..e9ba072 100644 --- a/po/pl.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-08-02 11:35+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: Polish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -591,8 +591,7 @@ msgstr "Nakładka gtk3 na libalpm" msgid "How often to check for updates, value in hours" msgstr "Jak często sprawdzać aktualizacje, wartość w godzinach" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Liczba wersji każdego pakietu do przechowywania w pamięci podręcznej" @@ -612,109 +611,6 @@ msgstr "Prędkość" msgid "Random" msgstr "Losowy" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Wyszukuj domyślnie w AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Usuwanie niewymaganych zależności" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Wymagane jest uwierzytelnienie" @@ -800,6 +696,10 @@ msgstr "Pliki" msgid "_Apply" msgstr "_Zastosuj" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Usuwanie niewymaganych zależności" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -875,6 +775,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Włącz obsługę AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pozwól Pamacowi wyszukiwać i instalować pakiety z AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Wyszukuj domyślnie w AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Sprawdź aktualizacje w AUR" diff --git a/po/pl_PL.po b/po/pl_PL.po index 1993373..6312421 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Polish (Poland) (http://www.transifex.com/manjarolinux/" @@ -580,8 +580,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -601,109 +600,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -789,6 +685,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -858,6 +758,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/pt.po b/po/pt.po index f15df7f..4553ac6 100644 --- a/po/pt.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (http://www.transifex.com/manjarolinux/manjaro-" @@ -573,8 +573,7 @@ msgstr "Uma interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frequência de verificação de actualizações, valor em horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -594,109 +593,6 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que o Pamac procure e instale pacotes do AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por pré-definição" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências não requeridas" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -782,6 +678,10 @@ msgstr "Ficheiros" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências não requeridas" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -857,6 +757,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Activar suporte ao AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que o Pamac procure e instale pacotes do AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por pré-definição" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar se há atualizações do AUR" diff --git a/po/pt_BR.po b/po/pt_BR.po index af9903c..2f41c10 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/manjarolinux/" @@ -590,8 +590,7 @@ msgstr "Um frontend GTK3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Vezes para verificar se há atualizações, o valor em horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -611,109 +610,6 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir a Pamac que procure e instale os pacotes a partir de AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por padrão" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências desnecessárias" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -799,6 +695,10 @@ msgstr "Arquivos" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências desnecessárias" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -874,6 +774,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar o suporte AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir a Pamac que procure e instale os pacotes a partir de AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por padrão" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar atualizações do AUR" diff --git a/po/pt_PT.po b/po/pt_PT.po index b5e15f4..3aa1dee 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/manjarolinux/" @@ -581,8 +581,7 @@ msgstr "Uma interface Gtk3 para libalpm" msgid "How often to check for updates, value in hours" msgstr "Frequência de verificação de actualizações, valor em horas" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Número de versões de cada pacote a manter na cache" @@ -602,109 +601,6 @@ msgstr "Velocidade" msgid "Random" msgstr "Aleatório" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permitir que o Pamac procure e instale pacotes do AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Pesquisar no AUR por padrão" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Remover dependências não requeridas" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autenticação necessária" @@ -790,6 +686,10 @@ msgstr "Ficheiros" msgid "_Apply" msgstr "_Aplicar" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Remover dependências não requeridas" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -865,6 +765,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Habilitar suporte ao AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permitir que o Pamac procure e instale pacotes do AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Pesquisar no AUR por padrão" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verificar se há atualizações do AUR" diff --git a/po/ro.po b/po/ro.po index c2bd5e3..77b9e14 100644 --- a/po/ro.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Romanian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,8 +581,7 @@ msgstr "O interfață Gtk3 pentru libalpm" msgid "How often to check for updates, value in hours" msgstr "Frecvența de verificare a actualizărilor, în ore" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -602,109 +601,6 @@ msgstr "Viteză" msgid "Random" msgstr "Aleatoriu" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Permite Pamac să caute și să instaleze pachete din AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Caută în AUR implicit" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Elimină dependențe ce nu sunt necesare" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -790,6 +686,10 @@ msgstr "Fișiere" msgid "_Apply" msgstr "_Aplică" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Elimină dependențe ce nu sunt necesare" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -863,6 +763,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Activează suport AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Permite Pamac să caute și să instaleze pachete din AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Caută în AUR implicit" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Verifică actualizări din AUR" diff --git a/po/ru.po b/po/ru.po index 2fb7483..fc92a0c 100644 --- a/po/ru.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Russian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -599,8 +599,7 @@ msgstr "Интерфейс Gtk3 для libalpm" msgid "How often to check for updates, value in hours" msgstr "Укажите интервал поиска обновлений, в часах" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Сохранять в кэше предыдущие версии пакетов в количестве" @@ -620,109 +619,6 @@ msgstr "Скорость" msgid "Random" msgstr "Случайно" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Разрешить Pamac искать и устанавливать пакеты из AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Поиск в AUR по умолчанию" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Удалить ненужные зависимости" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Запрошена авторизация" @@ -808,6 +704,10 @@ msgstr "Файлы" msgid "_Apply" msgstr "_Применить" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Удалить ненужные зависимости" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -882,6 +782,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Включить поддержку AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Разрешить Pamac искать и устанавливать пакеты из AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Поиск в AUR по умолчанию" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Проверить обновления AUR" diff --git a/po/si.po b/po/si.po index a46103a..1c5ae0b 100644 --- a/po/si.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Sinhala (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -574,8 +574,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -595,109 +594,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -783,6 +679,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -852,6 +752,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sk.po b/po/sk.po index 92945ce..e3867b3 100644 --- a/po/sk.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 06:06+0000\n" "Last-Translator: Dušan Kazik \n" "Language-Team: Slovak (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -582,8 +582,7 @@ msgstr "Rozhranie Gtk3 pre knižnicu libalpm" msgid "How often to check for updates, value in hours" msgstr "Ako často kontrolovať aktualizácie, hodnota je v hodinách" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Počet verzií každého balíka, ktoré ponechať vo vyrovnávacej pamäti" @@ -603,109 +602,6 @@ msgstr "Rýchlosti" msgid "Random" msgstr "Náhodne" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Predvolene vyhľadávať v repozitári AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odstrániť nepožadované závislosti" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Vyžaduje sa overenie totožnosti" @@ -791,6 +687,10 @@ msgstr "Súbory" msgid "_Apply" msgstr "_Použiť" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odstrániť nepožadované závislosti" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -866,6 +766,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Zapnúť podporu repozitára AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Umožní programu Pamac vyhľadať a inštalovať balíky z repozitára AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Predvolene vyhľadávať v repozitári AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Kontrolovať aktualizácie z repozitára AUR" diff --git a/po/sl.po b/po/sl.po index 6ea371f..f1a2963 100644 --- a/po/sl.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (http://www.transifex.com/manjarolinux/manjaro-" @@ -586,8 +586,7 @@ msgstr "Gtk3 začelje za libalpm" msgid "How often to check for updates, value in hours" msgstr "Kako pogosto naj se preverja za posodobitve, vrednost v urah" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Število verzij za vsak paket shranjenih v predpomnilniku" @@ -607,109 +606,6 @@ msgstr "Hitrost" msgid "Random" msgstr "Naključno" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dovoli Pamacu da išče in namešča pakete iz AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Privzeto iskanje v AUR" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Odstrani nezahtevane odvisnosti" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Zahtevana je overitev" @@ -795,6 +691,10 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Uveljavi" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Odstrani nezahtevane odvisnosti" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -870,6 +770,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Omogoči podporo AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dovoli Pamacu da išče in namešča pakete iz AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Privzeto iskanje v AUR" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Preveri za posodobitve iz AUR" diff --git a/po/sl_SI.po b/po/sl_SI.po index ca58f11..52260ab 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/manjarolinux/" @@ -579,8 +579,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,109 +599,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -788,6 +684,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -857,6 +757,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr.po b/po/sr.po index cab8a31..88cd9d6 100644 --- a/po/sr.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,8 +579,7 @@ msgstr "Gtk3 приказ за libalpm" msgid "How often to check for updates, value in hours" msgstr "Колико често да се проверавају ажурирања, вредност у сатима" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -600,109 +599,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Омогући Памаку да претражује и инсталира пакете из AUR-a" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Уклони непотребне зависности" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -788,6 +684,10 @@ msgstr "Датотеке" msgid "_Apply" msgstr "_Примени" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Уклони непотребне зависности" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -859,6 +759,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Омогући AUR подршку" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Омогући Памаку да претражује и инсталира пакете из AUR-a" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr@latin.po b/po/sr@latin.po index 7874163..488071b 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/manjarolinux/" @@ -582,8 +582,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Koliko često da proveravam ažuriranja, vrednost u satima" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -603,109 +602,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ukloni nepotrebne zavisnosti" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentifikacija je neophodna" @@ -791,6 +687,10 @@ msgstr "Datoteke" msgid "_Apply" msgstr "_Primeni" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ukloni nepotrebne zavisnosti" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -860,6 +760,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Odobri AUR podršku" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Dozvoli Pamac-u da pretražuje i instalira pakete sa AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Proveri ažuriranja iz AUR" diff --git a/po/sr_RS.po b/po/sr_RS.po index 6a23310..975b61d 100644 --- a/po/sr_RS.po +++ b/po/sr_RS.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/manjarolinux/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 467f70d..0cedd6c 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/" @@ -576,8 +576,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -597,109 +596,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -785,6 +681,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -854,6 +754,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/sv.po b/po/sv.po index 7f328d7..effc961 100644 --- a/po/sv.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Swedish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -581,8 +581,7 @@ msgstr "Ett Gtk3-gränssnitt för libalpm" msgid "How often to check for updates, value in hours" msgstr "Hur ofta söka efter uppdateringar, ange i timmar" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Antal versioner av varje paket att behålla i cachen" @@ -602,109 +601,6 @@ msgstr "Hastighet" msgid "Random" msgstr "Slumpmässig" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Tillåt Pamac att söka och installera paket från AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Sök i AUR som standard" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Ta bort icke-nödvändiga beroenden" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Autentisering krävs" @@ -790,6 +686,10 @@ msgstr "Filer" msgid "_Apply" msgstr "_Tillämpa" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Ta bort icke-nödvändiga beroenden" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -864,6 +764,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Aktivera AUR-stöd" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Tillåt Pamac att söka och installera paket från AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Sök i AUR som standard" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Leta efter uppdateringar i AUR" diff --git a/po/tr.po b/po/tr.po index ebc80ef..e608b46 100644 --- a/po/tr.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-08-04 06:07+0000\n" "Last-Translator: Demiray Muhterem \n" "Language-Team: Turkish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -579,8 +579,7 @@ msgstr "libalpm için Gtk3 arayüzü" msgid "How often to check for updates, value in hours" msgstr "Güncellemeler ne sıklıkta kontrol edilecek, saat belirtin" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Önbellekte tutlacak her bir paketin sürüm sayısı" @@ -600,109 +599,6 @@ msgstr "Hız" msgid "Random" msgstr "Rastgele" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "AUR paketleri aramak ve kurmak için izin ver" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Varsayılan olarak AUR depolarında da ara" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Gereksiz bağımlılıkları kaldır" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Kimlik doğrulaması gerekli" @@ -788,6 +684,10 @@ msgstr "Dosyalar" msgid "_Apply" msgstr "_Uygula" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Gereksiz bağımlılıkları kaldır" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -862,6 +762,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR desteği etkin" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "AUR paketleri aramak ve kurmak için izin ver" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Varsayılan olarak AUR depolarında da ara" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "AUR deposundaki güncellemelere bak" diff --git a/po/uk.po b/po/uk.po index 6441463..c31c6a2 100644 --- a/po/uk.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Ukrainian (http://www.transifex.com/manjarolinux/manjaro-" @@ -588,8 +588,7 @@ msgstr "Інтерфейс Gtk3 для libalpm" msgid "How often to check for updates, value in hours" msgstr "Як часто перевіряти оновлення (значення в годинах)" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "Кількість версій кожного пакунка зберігається в кеш-пам'яті" @@ -609,109 +608,6 @@ msgstr "Швидкість" msgid "Random" msgstr "Випадково" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Дозволити Pamac шукати та встановлювати пакунки з AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "Шукати в AUR типово" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Вилучити непотрібні залежності" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "Потрібна авторизація" @@ -797,6 +693,10 @@ msgstr "Файли" msgid "_Apply" msgstr "_Застосувати" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Вилучити непотрібні залежності" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -871,6 +771,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Активувати підтримку AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Дозволити Pamac шукати та встановлювати пакунки з AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "Шукати в AUR типово" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "Перевірка оновлень AUR" diff --git a/po/ur_PK.po b/po/ur_PK.po index 52b711d..7465aa9 100644 --- a/po/ur_PK.po +++ b/po/ur_PK.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/manjarolinux/" @@ -573,8 +573,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "اپ ڈیٹس چیک کرنے کی کثرت کی وضاحت گھنٹوں میں کریں" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -594,109 +593,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "غیر ضروری انحصار پیکج نکال دیں" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -782,6 +678,10 @@ msgstr "فائلیں" msgid "_Apply" msgstr "_عمل کریں" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "غیر ضروری انحصار پیکج نکال دیں" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -853,6 +753,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR سپورٹ کو فعال کریں" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac کو AUR پیکجز انسٹال کرنے کی اجازت ہے" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/uz.po b/po/uz.po index 9919551..18c10b1 100644 --- a/po/uz.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Uzbek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Qanchalik tez yangilanishlar tekshirilsin, qiymati soatda" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "Tezlik" msgid "Random" msgstr "Tavakkal" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Talab etilmagan qaramliklarni olib tashlash" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "Fayllar" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Talab etilmagan qaramliklarni olib tashlash" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "AUR qo'llab-quvvatlashni yoqish" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Pamac uchun AURdan paketlarni qidirish va o'rnatishga ruxsat etish" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/vi.po b/po/vi.po index ef97186..724a9ee 100644 --- a/po/vi.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Vietnamese (http://www.transifex.com/manjarolinux/manjaro-" @@ -572,8 +572,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "Bao lâu sẽ kiểm tra cập nhật, tính bằng giờ" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -593,109 +592,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "Cho phép Pamac tìm kiếm và cài đặt gói từ AUR" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "Gỡ bỏ phần phụ thuộc không cần thiết" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -781,6 +677,10 @@ msgstr "Tệp tin" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "Gỡ bỏ phần phụ thuộc không cần thiết" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -850,6 +750,14 @@ msgstr "" msgid "Enable AUR support" msgstr "Bật hỗ trợ AUR" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "Cho phép Pamac tìm kiếm và cài đặt gói từ AUR" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/zh.po b/po/zh.po index 9ea7d8a..9eb3017 100644 --- a/po/zh.po +++ b/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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -569,8 +569,7 @@ msgstr "" msgid "How often to check for updates, value in hours" msgstr "" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "" @@ -590,109 +589,6 @@ msgstr "" msgid "Random" msgstr "" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "" @@ -778,6 +674,10 @@ msgstr "" msgid "_Apply" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -847,6 +747,14 @@ msgstr "" msgid "Enable AUR support" msgstr "" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 5dbcd64..82efaef 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (China) (http://www.transifex.com/manjarolinux/" @@ -575,8 +575,7 @@ msgstr "libalpm 的 GTK3 前端" msgid "How often to check for updates, value in hours" msgstr "检查更新的频率,单位为小时" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "每个软件包保留在缓存中的版本数目" @@ -596,109 +595,6 @@ msgstr "速度" msgid "Random" msgstr "随机" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "允许 Pamac 从 AUR 中搜索并安装软件包" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "默认在 AUR 中搜索" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "移除不需要的依赖" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "需要验证" @@ -784,6 +680,10 @@ msgstr "文件" msgid "_Apply" msgstr "应用(_A)" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "移除不需要的依赖" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -855,6 +755,14 @@ msgstr "" msgid "Enable AUR support" msgstr "启用 AUR 支持" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "允许 Pamac 从 AUR 中搜索并安装软件包" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "默认在 AUR 中搜索" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "从 AUR 检查更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index 53e0df8..d65adc1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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-11-11 11:28-0300\n" +"POT-Creation-Date: 2017-11-11 11:39-0300\n" "PO-Revision-Date: 2017-07-30 12:17+0000\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/manjarolinux/" @@ -573,8 +573,7 @@ msgstr "一個 libalpm 的 Gtk3 前端" msgid "How often to check for updates, value in hours" msgstr "請選擇您想要檢查更新的頻率,單位是小時" -#: ../src/preferences_dialog.vala ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui +#: ../src/preferences_dialog.vala ../data/interface/preferences_dialog.ui msgid "Number of versions of each package to keep in the cache" msgstr "每個軟體包要保留在快取中的版本數量" @@ -594,109 +593,6 @@ msgstr "速度" msgid "Random" msgstr "隨機" -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Enable AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Allow Pamac to search and install packages from AUR" -msgstr "允許 Pamac 搜尋及安裝 AUR 上的軟體包" - -#: ../data/org.pamac.aur.gschema.xml.in ../data/interface/preferences_dialog.ui -msgid "Search in AUR by default" -msgstr "預設在 AUR 中搜尋" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled search in AUR by default" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Check AUR for updates" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "When AUR support is enabled check for updates from AUR" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "\"/tmp\"" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "AUR build directory" -msgstr "" - -#: ../data/org.pamac.aur.gschema.xml.in -msgid "Directory where to build packages that come from the AUR" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -#: ../data/interface/preferences_dialog.ui -msgid "Remove unrequired dependencies" -msgstr "移除不需要的相依性" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "" -"When removing a package, also remove those dependencies that are not " -"required by other packages (recurse option)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Refresh period" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "How often to check for updates, value in hours (0 to disable)" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Hide icon if there are no updates" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "When there are no updates available, hide the tray icon" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Numer of packages to keep" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only uninstalled packages when cleaning cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Remove only the versions of uninstalled packages when clean cache" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(0,0,0)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal background color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"rgb(255,255,255)\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal foreground color" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "\"Monospace Regular 12\"" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "Terminal font" -msgstr "" - -#: ../data/org.pamac.main.gschema.xml.in -msgid "The font used in the terminal" -msgstr "" - #: ../data/polkit/org.pamac.policy.in msgid "Authentication is required" msgstr "需要授權" @@ -782,6 +678,10 @@ msgstr "檔案" msgid "_Apply" msgstr "套用(_A)" +#: ../data/interface/preferences_dialog.ui +msgid "Remove unrequired dependencies" +msgstr "移除不需要的相依性" + #: ../data/interface/preferences_dialog.ui msgid "" "When removing a package, also remove its dependencies that are not required " @@ -853,6 +753,14 @@ msgstr "" msgid "Enable AUR support" msgstr "啟用 AUR 支援" +#: ../data/interface/preferences_dialog.ui +msgid "Allow Pamac to search and install packages from AUR" +msgstr "允許 Pamac 搜尋及安裝 AUR 上的軟體包" + +#: ../data/interface/preferences_dialog.ui +msgid "Search in AUR by default" +msgstr "預設在 AUR 中搜尋" + #: ../data/interface/preferences_dialog.ui msgid "Check for updates from AUR" msgstr "自 AUR 檢查更新" From fc472978522a7224dd1e814caeebd3e80fdbd471 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 11 Nov 2017 15:56:30 -0300 Subject: [PATCH 5/7] make tray icon config more effecient --- po/pamac.pot | 2 +- src/pamac-tray/tray.vala | 15 ++++++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/po/pamac.pot b/po/pamac.pot index 154d915..9330e2c 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 11:40-0300\n" +"POT-Creation-Date: 2017-11-11 15:55-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/pamac-tray/tray.vala b/src/pamac-tray/tray.vala index 053d72e..7c31514 100644 --- a/src/pamac-tray/tray.vala +++ b/src/pamac-tray/tray.vala @@ -45,7 +45,6 @@ namespace Pamac { UserDaemon daemon; bool extern_lock; uint refresh_timeout_id; - uint icon_timeout_id; public Gtk.Menu menu; GLib.File lockfile; bool updates_available; @@ -250,17 +249,17 @@ namespace Pamac { bool check_icon_hide_setting () { var pamac_config = new Pamac.Config (); if (!updates_available) { - set_icon_visible (!pamac_config.no_update_hide_icon); + if (get_icon_visible () && pamac_config.no_update_hide_icon) { + set_icon_visible (false); + } else if (!get_icon_visible () && !pamac_config.no_update_hide_icon) { + set_icon_visible (true); + } } return true; } void launch_icon_check_timeout () { - if (icon_timeout_id != 0) { - Source.remove (icon_timeout_id); - icon_timeout_id = 0; - } - icon_timeout_id = Timeout.add_seconds ((uint) 1, check_icon_hide_setting); + Timeout.add_seconds ((uint) 1, check_icon_hide_setting); } void launch_refresh_timeout (uint64 refresh_period_in_hours) { @@ -288,7 +287,6 @@ namespace Pamac { extern_lock = false; refresh_timeout_id = 0; - icon_timeout_id = 0; create_menu (); init_status_icon (); @@ -309,7 +307,6 @@ namespace Pamac { Timeout.add (200, check_extern_lock); // wait 30 seconds before check updates Timeout.add_seconds (30, () => { - check_icon_hide_setting (); check_updates (); return false; }); From 4209588710b53c02347eaeca370ad672fa717d93 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 11 Nov 2017 17:15:36 -0300 Subject: [PATCH 6/7] fix aur not showing on preferences change --- po/pamac.pot | 2 +- src/pamac-manager/manager_window.vala | 15 +++++++-------- src/transaction.vala | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/po/pamac.pot b/po/pamac.pot index 9330e2c..a07a4f2 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 15:55-0300\n" +"POT-Creation-Date: 2017-11-11 17:09-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/pamac-manager/manager_window.vala b/src/pamac-manager/manager_window.vala index d1a8865..868b457 100644 --- a/src/pamac-manager/manager_window.vala +++ b/src/pamac-manager/manager_window.vala @@ -367,7 +367,10 @@ namespace Pamac { #endif transaction.important_details_outpout.connect (on_important_details_outpout); transaction.finished.connect (on_transaction_finished); +#if DISABLE_AUR +#else transaction.save_pamac_config_finished.connect (on_save_pamac_config_finished); +#endif transaction.set_pkgreason_finished.connect (on_set_pkgreason_finished); transaction.generate_mirrors_list.connect (on_generate_mirrors_list); transaction.run_preferences_dialog_finished.connect (on_run_preferences_dialog_finished); @@ -398,14 +401,12 @@ namespace Pamac { } #if DISABLE_AUR - void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { - } #else void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, - bool enable_aur, bool search_aur) { - support_aur (enable_aur); -#endif + bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates) { + support_aur (transaction.enable_aur); } +#endif void on_set_pkgreason_finished () { transaction.unlock (); @@ -428,9 +429,7 @@ namespace Pamac { #else void support_aur (bool enable_aur) { if (enable_aur) { - if (filters_stack.visible_child_name == "search") { - packages_stackswitcher.visible = true; - } + packages_stackswitcher.visible = true; } else { packages_stackswitcher.visible = false; } diff --git a/src/transaction.vala b/src/transaction.vala index b0af570..bec2f92 100644 --- a/src/transaction.vala +++ b/src/transaction.vala @@ -1926,7 +1926,7 @@ namespace Pamac { void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon) { #else void on_save_pamac_config_finished (bool recurse, uint64 refresh_period, bool no_update_hide_icon, - bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates) { + bool enable_aur, bool search_aur, string aur_build_dir, bool check_aur_updates) { #endif system_daemon.save_pamac_config_finished.disconnect (on_save_pamac_config_finished); pamac_config.reload (); From 9a87ef0a9d8cc4ef8f1949e218e92453237f6ee7 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 11 Nov 2017 20:26:57 -0300 Subject: [PATCH 7/7] add download and installed size to details --- po/af.po | 10 +++++++++- po/ar.po | 10 +++++++++- po/ast.po | 10 +++++++++- po/az_AZ.po | 10 +++++++++- po/be.po | 10 +++++++++- po/bg.po | 10 +++++++++- po/bn.po | 10 +++++++++- po/bs.po | 10 +++++++++- po/bs_BA.po | 10 +++++++++- po/ca.po | 10 +++++++++- po/ca_ES.po | 10 +++++++++- po/cs.po | 10 +++++++++- po/cs_CZ.po | 10 +++++++++- po/cy.po | 10 +++++++++- po/da.po | 10 +++++++++- po/de.po | 10 +++++++++- po/de_CH.po | 10 +++++++++- po/de_DE.po | 10 +++++++++- po/el.po | 10 +++++++++- po/el_GR.po | 10 +++++++++- po/en_GB.po | 10 +++++++++- po/eo.po | 10 +++++++++- po/es.po | 10 +++++++++- po/es_419.po | 10 +++++++++- po/es_AR.po | 10 +++++++++- po/es_ES.po | 10 +++++++++- po/es_MX.po | 10 +++++++++- po/es_SV.po | 10 +++++++++- po/et.po | 10 +++++++++- po/eu.po | 10 +++++++++- po/fa.po | 10 +++++++++- po/fa_IR.po | 10 +++++++++- po/fi.po | 10 +++++++++- po/fo.po | 10 +++++++++- po/fr.po | 10 +++++++++- po/gl.po | 10 +++++++++- po/he.po | 10 +++++++++- po/hi.po | 10 +++++++++- po/hi_IN.po | 10 +++++++++- po/hr.po | 10 +++++++++- po/hr_HR.po | 10 +++++++++- po/hu.po | 10 +++++++++- po/id.po | 10 +++++++++- po/is.po | 10 +++++++++- po/is_IS.po | 10 +++++++++- po/it.po | 10 +++++++++- po/it_IT.po | 10 +++++++++- po/ja.po | 10 +++++++++- po/ka.po | 10 +++++++++- po/ko.po | 10 +++++++++- po/lt.po | 10 +++++++++- po/ml.po | 10 +++++++++- po/ms.po | 10 +++++++++- po/nb.po | 10 +++++++++- po/nl.po | 10 +++++++++- po/nl_BE.po | 10 +++++++++- po/nl_NL.po | 10 +++++++++- po/nn.po | 10 +++++++++- po/pamac.pot | 10 +++++++++- po/pl.po | 10 +++++++++- po/pl_PL.po | 10 +++++++++- po/pt.po | 10 +++++++++- po/pt_BR.po | 10 +++++++++- po/pt_PT.po | 10 +++++++++- po/ro.po | 10 +++++++++- po/ru.po | 10 +++++++++- po/si.po | 10 +++++++++- po/sk.po | 10 +++++++++- po/sl.po | 10 +++++++++- po/sl_SI.po | 10 +++++++++- po/sr.po | 10 +++++++++- po/sr@latin.po | 10 +++++++++- po/sr_RS.po | 10 +++++++++- po/sr_RS@latin.po | 10 +++++++++- po/sv.po | 10 +++++++++- po/tr.po | 10 +++++++++- po/uk.po | 10 +++++++++- po/ur_PK.po | 10 +++++++++- po/uz.po | 10 +++++++++- po/vi.po | 10 +++++++++- po/zh.po | 10 +++++++++- po/zh_CN.po | 10 +++++++++- po/zh_TW.po | 10 +++++++++- src/package.vala | 2 ++ src/pamac-manager/manager_window.vala | 6 ++++++ src/pamac-user-daemon/user_daemon.vala | 8 ++++++++ src/transaction.vala | 4 +++- 87 files changed, 766 insertions(+), 84 deletions(-) diff --git a/po/af.po b/po/af.po index aff63a5..0cb77a2 100644 --- a/po/af.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Afrikaans (http://www.transifex.com/manjarolinux/manjaro-" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/ar.po b/po/ar.po index c0e7b99..57cc5e5 100644 --- a/po/ar.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Arabic (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -481,6 +481,14 @@ msgstr "الرخص" msgid "Repository" msgstr "مستودع" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "مجموعات" diff --git a/po/ast.po b/po/ast.po index c9baf46..21c4d2c 100644 --- a/po/ast.po +++ b/po/ast.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Asturian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -467,6 +467,14 @@ msgstr "Llicencies" msgid "Repository" msgstr "Repositoriu" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/az_AZ.po b/po/az_AZ.po index 0bb69b7..6267415 100644 --- a/po/az_AZ.po +++ b/po/az_AZ.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/" @@ -462,6 +462,14 @@ msgstr "Lisenziyalar" msgid "Repository" msgstr "Repositorilər" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Qruplar" diff --git a/po/be.po b/po/be.po index 3ad0ac2..f1a0898 100644 --- a/po/be.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Belarusian (http://www.transifex.com/manjarolinux/manjaro-" @@ -469,6 +469,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/bg.po b/po/bg.po index c2d66cf..ec406da 100644 --- a/po/bg.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-08-01 11:22+0000\n" "Last-Translator: Galin Iskrenov \n" "Language-Team: Bulgarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -468,6 +468,14 @@ msgstr "Лицензи" msgid "Repository" msgstr "Хранилище" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Групи" diff --git a/po/bn.po b/po/bn.po index 3f57e64..513b258 100644 --- a/po/bn.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bengali (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/bs.po b/po/bs.po index bb4c1b5..26254db 100644 --- a/po/bs.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/bs_BA.po b/po/bs_BA.po index 518c555..eb3570b 100644 --- a/po/bs_BA.po +++ b/po/bs_BA.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/ca.po b/po/ca.po index 0a7f1db..925ee45 100644 --- a/po/ca.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 14:18+0000\n" "Last-Translator: Davidmp \n" "Language-Team: Catalan (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -470,6 +470,14 @@ msgstr "Llicències" msgid "Repository" msgstr "Repositori" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grups" diff --git a/po/ca_ES.po b/po/ca_ES.po index 40ca1e1..ef0a1cf 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/manjarolinux/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/cs.po b/po/cs.po index ddc6430..752ee60 100644 --- a/po/cs.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -471,6 +471,14 @@ msgstr "Licence" msgid "Repository" msgstr "Repozitář" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Skupiny" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 136b6f2..8384dc2 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/manjarolinux/" @@ -468,6 +468,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/cy.po b/po/cy.po index ef05a18..81fe63b 100644 --- a/po/cy.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Welsh (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -468,6 +468,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/da.po b/po/da.po index 61c4d19..4f17828 100644 --- a/po/da.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Danish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -472,6 +472,14 @@ msgstr "Licenser" msgid "Repository" msgstr "Arkiv" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupper" diff --git a/po/de.po b/po/de.po index 5875022..91b8d25 100644 --- a/po/de.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -479,6 +479,14 @@ msgstr "Lizenzen" msgid "Repository" msgstr "Paketquelle" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Gruppen" diff --git a/po/de_CH.po b/po/de_CH.po index 59a1408..c5737ac 100644 --- a/po/de_CH.po +++ b/po/de_CH.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Switzerland) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index 591e868..8b2b0c9 100644 --- a/po/de_DE.po +++ b/po/de_DE.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: German (Germany) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/el.po b/po/el.po index f0c7526..098408f 100644 --- a/po/el.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -473,6 +473,14 @@ msgstr "Άδειες" msgid "Repository" msgstr "Αποθετήριο" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Ομάδες" diff --git a/po/el_GR.po b/po/el_GR.po index 1942a90..588a420 100644 --- a/po/el_GR.po +++ b/po/el_GR.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Greek (Greece) (http://www.transifex.com/manjarolinux/manjaro-" @@ -462,6 +462,14 @@ msgstr "Άδειες" msgid "Repository" msgstr "Αποθετήριο" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Ομάδες" diff --git a/po/en_GB.po b/po/en_GB.po index fecb678..721c142 100644 --- a/po/en_GB.po +++ b/po/en_GB.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/" @@ -464,6 +464,14 @@ msgstr "Licences" msgid "Repository" msgstr "Repository" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Groups" diff --git a/po/eo.po b/po/eo.po index b6a5f16..af9fa85 100644 --- a/po/eo.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Esperanto (http://www.transifex.com/manjarolinux/manjaro-" @@ -465,6 +465,14 @@ msgstr "Permesiloj" msgid "Repository" msgstr "Deponejo" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupoj" diff --git a/po/es.po b/po/es.po index 6ce8fd7..092beda 100644 --- a/po/es.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -473,6 +473,14 @@ msgstr "Licencias" msgid "Repository" msgstr "Repositorio" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/es_419.po b/po/es_419.po index 4afbe40..db4b9a7 100644 --- a/po/es_419.po +++ b/po/es_419.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/" @@ -465,6 +465,14 @@ msgstr "Licencias" msgid "Repository" msgstr "Repositorio" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/es_AR.po b/po/es_AR.po index 6b3766c..bd231b4 100644 --- a/po/es_AR.po +++ b/po/es_AR.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 3c584cb..3a16002 100644 --- a/po/es_ES.po +++ b/po/es_ES.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/es_MX.po b/po/es_MX.po index 40a4a87..6654d9d 100644 --- a/po/es_MX.po +++ b/po/es_MX.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/manjarolinux/" @@ -462,6 +462,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/es_SV.po b/po/es_SV.po index f6cd754..da8448e 100644 --- a/po/es_SV.po +++ b/po/es_SV.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Spanish (El Salvador) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/et.po b/po/et.po index 5e8bd6f..d8e045d 100644 --- a/po/et.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Estonian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -464,6 +464,14 @@ msgstr "Litsentsid" msgid "Repository" msgstr "Hoidla" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupid" diff --git a/po/eu.po b/po/eu.po index 265918a..0b00265 100644 --- a/po/eu.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Basque (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -466,6 +466,14 @@ msgstr "Lizentziak" msgid "Repository" msgstr "Biltegia" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Taldeak" diff --git a/po/fa.po b/po/fa.po index 891c88e..6f7d458 100644 --- a/po/fa.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -462,6 +462,14 @@ msgstr "لایسنس" msgid "Repository" msgstr "مخزن" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "گروه‌ها" diff --git a/po/fa_IR.po b/po/fa_IR.po index d8ac6ce..41c690d 100644 --- a/po/fa_IR.po +++ b/po/fa_IR.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: manjaro-pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Persian (Iran) (http://www.transifex.com/manjarolinux/manjaro-" @@ -468,6 +468,14 @@ msgstr "لایسنس" msgid "Repository" msgstr "مخزن" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "گروه‌ها" diff --git a/po/fi.po b/po/fi.po index 55dc683..02abc76 100644 --- a/po/fi.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Finnish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -470,6 +470,14 @@ msgstr "Lisenssit" msgid "Repository" msgstr "Pakettivarasto" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Ryhmät" diff --git a/po/fo.po b/po/fo.po index 12402fd..2a1909b 100644 --- a/po/fo.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Faroese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -463,6 +463,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/fr.po b/po/fr.po index 4cce1e9..68f52f2 100644 --- a/po/fr.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-31 13:03+0000\n" "Last-Translator: Charles Monzat \n" "Language-Team: French (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -474,6 +474,14 @@ msgstr "Licences" msgid "Repository" msgstr "Dépôt " +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Groupes " diff --git a/po/gl.po b/po/gl.po index 1c7b4ad..27a4abe 100644 --- a/po/gl.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Galician (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -462,6 +462,14 @@ msgstr "Licenzas" msgid "Repository" msgstr "Repositorio" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/he.po b/po/he.po index a3eae35..c39c31e 100644 --- a/po/he.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hebrew (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -465,6 +465,14 @@ msgstr "רשיונות" msgid "Repository" msgstr "מאגר" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "קבוצה" diff --git a/po/hi.po b/po/hi.po index 72c65dd..af85d1d 100644 --- a/po/hi.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -465,6 +465,14 @@ msgstr "लाइसेंस" msgid "Repository" msgstr "कोष" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "समूह" diff --git a/po/hi_IN.po b/po/hi_IN.po index 5addf79..3041da0 100644 --- a/po/hi_IN.po +++ b/po/hi_IN.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hindi (India) (http://www.transifex.com/manjarolinux/manjaro-" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/hr.po b/po/hr.po index beea84d..27a3da1 100644 --- a/po/hr.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-08-02 13:28+0000\n" "Last-Translator: Lovro Kudelić \n" "Language-Team: Croatian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -470,6 +470,14 @@ msgstr "Licence" msgid "Repository" msgstr "Repozitorij" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupe" diff --git a/po/hr_HR.po b/po/hr_HR.po index a9ebc81..55a567b 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/manjarolinux/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/hu.po b/po/hu.po index 19d9cb6..1078aa7 100644 --- a/po/hu.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Hungarian (http://www.transifex.com/manjarolinux/manjaro-" @@ -466,6 +466,14 @@ msgstr "Licenszek" msgid "Repository" msgstr "Tároló" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Csoportok" diff --git a/po/id.po b/po/id.po index 552bc6b..97f39b4 100644 --- a/po/id.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Indonesian (http://www.transifex.com/manjarolinux/manjaro-" @@ -474,6 +474,14 @@ msgstr "Lisensi" msgid "Repository" msgstr "Gudang" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grup" diff --git a/po/is.po b/po/is.po index 4f2c2b2..e9b82f8 100644 --- a/po/is.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (http://www.transifex.com/manjarolinux/manjaro-" @@ -464,6 +464,14 @@ msgstr "Notkunarleyfi" msgid "Repository" msgstr "Hugbúnaðarsafn" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Hópar" diff --git a/po/is_IS.po b/po/is_IS.po index 009437e..7063152 100644 --- a/po/is_IS.po +++ b/po/is_IS.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Icelandic (Iceland) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/it.po b/po/it.po index ebb8b53..9f42ae8 100644 --- a/po/it.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -475,6 +475,14 @@ msgstr "Licenze" msgid "Repository" msgstr "Repository" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Gruppi" diff --git a/po/it_IT.po b/po/it_IT.po index eff682b..8656678 100644 --- a/po/it_IT.po +++ b/po/it_IT.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Italian (Italy) (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/ja.po b/po/ja.po index 53886fb..0debb4e 100644 --- a/po/ja.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Japanese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -462,6 +462,14 @@ msgstr "ライセンス" msgid "Repository" msgstr "リポジトリ" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "グループ" diff --git a/po/ka.po b/po/ka.po index 0c14fae..17dc8d7 100644 --- a/po/ka.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Georgian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -460,6 +460,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/ko.po b/po/ko.po index 67feab9..2fbdb12 100644 --- a/po/ko.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Korean (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -462,6 +462,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/lt.po b/po/lt.po index b1dde7f..2aff66f 100644 --- a/po/lt.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-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-" @@ -468,6 +468,14 @@ msgstr "Licencijos" msgid "Repository" msgstr "Saugykla" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupės" diff --git a/po/ml.po b/po/ml.po index 27851e5..08c7483 100644 --- a/po/ml.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malayalam (http://www.transifex.com/manjarolinux/manjaro-" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/ms.po b/po/ms.po index 07a7aed..4e624da 100644 --- a/po/ms.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Malay (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -459,6 +459,14 @@ msgstr "Lesen" msgid "Repository" msgstr "Repositori" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Kumpulan" diff --git a/po/nb.po b/po/nb.po index 4b2d5ae..21ed414 100644 --- a/po/nb.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/manjarolinux/" @@ -479,6 +479,14 @@ msgstr "Lisenser" msgid "Repository" msgstr "Arkiv" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupper" diff --git a/po/nl.po b/po/nl.po index 95ddd38..1e948a6 100644 --- a/po/nl.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 09:20+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -477,6 +477,14 @@ msgstr "Licenties" msgid "Repository" msgstr "Repository" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Groepen" diff --git a/po/nl_BE.po b/po/nl_BE.po index 9c4f36d..081637a 100644 --- a/po/nl_BE.po +++ b/po/nl_BE.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Dutch (Belgium) (http://www.transifex.com/manjarolinux/" @@ -462,6 +462,14 @@ msgstr "Licensies " msgid "Repository" msgstr "Repository" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Groepen" diff --git a/po/nl_NL.po b/po/nl_NL.po index 6b7fcb3..db30ddf 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 09:19+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/manjarolinux/" @@ -467,6 +467,14 @@ msgstr "Licenties" msgid "Repository" msgstr "Pakketbron" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Groepen" diff --git a/po/nn.po b/po/nn.po index ec7a2cb..69a321c 100644 --- a/po/nn.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/manjarolinux/" @@ -461,6 +461,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/pamac.pot b/po/pamac.pot index a07a4f2..8dbf850 100644 --- a/po/pamac.pot +++ b/po/pamac.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pamac\n" "Report-Msgid-Bugs-To: cromer@cromnix.org\n" -"POT-Creation-Date: 2017-11-11 17:09-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -460,6 +460,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/pl.po b/po/pl.po index e9ba072..a8721e2 100644 --- a/po/pl.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-08-02 11:35+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: Polish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -480,6 +480,14 @@ msgstr "Licencje" msgid "Repository" msgstr "Repozytorium" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupy" diff --git a/po/pl_PL.po b/po/pl_PL.po index 6312421..db9f7bb 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Polish (Poland) (http://www.transifex.com/manjarolinux/" @@ -469,6 +469,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/pt.po b/po/pt.po index 4553ac6..4b79cbe 100644 --- a/po/pt.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (http://www.transifex.com/manjarolinux/manjaro-" @@ -462,6 +462,14 @@ msgstr "Licenças" msgid "Repository" msgstr "Repositório" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/pt_BR.po b/po/pt_BR.po index 2f41c10..0c53848 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/manjarolinux/" @@ -479,6 +479,14 @@ msgstr "Licenças" msgid "Repository" msgstr "Repositório" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/pt_PT.po b/po/pt_PT.po index 3aa1dee..1759d86 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/manjarolinux/" @@ -470,6 +470,14 @@ msgstr "Licenças" msgid "Repository" msgstr "Repositório" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupos" diff --git a/po/ro.po b/po/ro.po index 77b9e14..d32985e 100644 --- a/po/ro.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Romanian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -470,6 +470,14 @@ msgstr "Licențe" msgid "Repository" msgstr "Depozit" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupe" diff --git a/po/ru.po b/po/ru.po index fc92a0c..0ff8f2d 100644 --- a/po/ru.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Russian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -488,6 +488,14 @@ msgstr "Лицензии" msgid "Repository" msgstr "Репозиторий" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Группы" diff --git a/po/si.po b/po/si.po index 1c5ae0b..6418d08 100644 --- a/po/si.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Sinhala (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -463,6 +463,14 @@ msgstr "බලපත්‍ර" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/sk.po b/po/sk.po index e3867b3..d53151b 100644 --- a/po/sk.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 06:06+0000\n" "Last-Translator: Dušan Kazik \n" "Language-Team: Slovak (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -471,6 +471,14 @@ msgstr "Licencie" msgid "Repository" msgstr "Repozitár" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Skupiny" diff --git a/po/sl.po b/po/sl.po index f1a2963..7b940b5 100644 --- a/po/sl.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (http://www.transifex.com/manjarolinux/manjaro-" @@ -475,6 +475,14 @@ msgstr "Licence" msgid "Repository" msgstr "Skladišče" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Skupine" diff --git a/po/sl_SI.po b/po/sl_SI.po index 52260ab..1514e9b 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/manjarolinux/" @@ -468,6 +468,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/sr.po b/po/sr.po index 88cd9d6..8ae56a3 100644 --- a/po/sr.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -468,6 +468,14 @@ msgstr "Лиценце" msgid "Repository" msgstr "Складиште - \"репозиторија\"" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Групе" diff --git a/po/sr@latin.po b/po/sr@latin.po index 488071b..88adcb6 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/manjarolinux/" @@ -471,6 +471,14 @@ msgstr "Licence" msgid "Repository" msgstr "Spremište" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupe" diff --git a/po/sr_RS.po b/po/sr_RS.po index 975b61d..0d7d273 100644 --- a/po/sr_RS.po +++ b/po/sr_RS.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/manjarolinux/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 0cedd6c..51c9e44 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Serbian (Latin) (Serbia) (http://www.transifex.com/" @@ -465,6 +465,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/sv.po b/po/sv.po index effc961..fae1037 100644 --- a/po/sv.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Swedish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -470,6 +470,14 @@ msgstr "LIcenser" msgid "Repository" msgstr "Förråd (repo)" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Grupper" diff --git a/po/tr.po b/po/tr.po index e608b46..1fc7db3 100644 --- a/po/tr.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-08-04 06:07+0000\n" "Last-Translator: Demiray Muhterem \n" "Language-Team: Turkish (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -468,6 +468,14 @@ msgstr "Lisanslar" msgid "Repository" msgstr "Depo" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Gruplar" diff --git a/po/uk.po b/po/uk.po index c31c6a2..a22b820 100644 --- a/po/uk.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Ukrainian (http://www.transifex.com/manjarolinux/manjaro-" @@ -477,6 +477,14 @@ msgstr "Ліцензії" msgid "Repository" msgstr "Репозиторій" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Групи" diff --git a/po/ur_PK.po b/po/ur_PK.po index 7465aa9..5e84d93 100644 --- a/po/ur_PK.po +++ b/po/ur_PK.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/manjarolinux/" @@ -462,6 +462,14 @@ msgstr "لائسنسز" msgid "Repository" msgstr "ریپوزی ٹوری (ذخیرہ)" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "گروپس" diff --git a/po/uz.po b/po/uz.po index 18c10b1..3265f4f 100644 --- a/po/uz.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Uzbek (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -461,6 +461,14 @@ msgstr "Litsenziyalar" msgid "Repository" msgstr "Repozitoriy" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Guruhlar" diff --git a/po/vi.po b/po/vi.po index 724a9ee..48c28df 100644 --- a/po/vi.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Vietnamese (http://www.transifex.com/manjarolinux/manjaro-" @@ -461,6 +461,14 @@ msgstr "Giấy phép" msgid "Repository" msgstr "Kho" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "Nhóm" diff --git a/po/zh.po b/po/zh.po index 9eb3017..4ed0c14 100644 --- a/po/zh.po +++ b/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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (http://www.transifex.com/manjarolinux/manjaro-pamac/" @@ -458,6 +458,14 @@ msgstr "" msgid "Repository" msgstr "" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 82efaef..9149079 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 02:40+0000\n" "Last-Translator: philm \n" "Language-Team: Chinese (China) (http://www.transifex.com/manjarolinux/" @@ -464,6 +464,14 @@ msgstr "许可" msgid "Repository" msgstr "软件仓库" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "组" diff --git a/po/zh_TW.po b/po/zh_TW.po index d65adc1..97e5b40 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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-11-11 11:39-0300\n" +"POT-Creation-Date: 2017-11-11 20:26-0300\n" "PO-Revision-Date: 2017-07-30 12:17+0000\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/manjarolinux/" @@ -462,6 +462,14 @@ msgstr "授權條款" msgid "Repository" msgstr "套件庫" +#: ../src/pamac-manager/manager_window.vala +msgid "Download size" +msgstr "" + +#: ../src/pamac-manager/manager_window.vala +msgid "Installed size" +msgstr "" + #: ../src/pamac-manager/manager_window.vala ../data/interface/manager_window.ui msgid "Groups" msgstr "套件群組" diff --git a/src/package.vala b/src/package.vala index a159660..f299c84 100644 --- a/src/package.vala +++ b/src/package.vala @@ -42,6 +42,8 @@ namespace Pamac { public string installdate; public string reason; public string has_signature; + public string downloadsize; + public string installsize; public string[] licenses; public string[] depends; public string[] optdepends; diff --git a/src/pamac-manager/manager_window.vala b/src/pamac-manager/manager_window.vala index 868b457..d738fd3 100644 --- a/src/pamac-manager/manager_window.vala +++ b/src/pamac-manager/manager_window.vala @@ -710,6 +710,12 @@ namespace Pamac { if (details.repo != "") { previous_widget = populate_details_grid (dgettext (null, "Repository"), details.repo, previous_widget); } + if (uint64.parse(details.downloadsize) > 0) { + previous_widget = populate_details_grid (dgettext (null, "Download size"), GLib.format_size(uint64.parse(details.downloadsize)).to_string (), previous_widget); + } + if (uint64.parse(details.installsize) > 0) { + previous_widget = populate_details_grid (dgettext (null, "Installed size"), GLib.format_size(uint64.parse(details.installsize)).to_string (), previous_widget); + } if (details.groups.length > 0) { var label = new Gtk.Label ("%s".printf (dgettext (null, "Groups") + ":")); label.use_markup = true; diff --git a/src/pamac-user-daemon/user_daemon.vala b/src/pamac-user-daemon/user_daemon.vala index d3d85df..ee0e7ce 100644 --- a/src/pamac-user-daemon/user_daemon.vala +++ b/src/pamac-user-daemon/user_daemon.vala @@ -611,6 +611,8 @@ namespace Pamac { string packager = ""; string builddate = ""; string installdate = ""; + string downloadsize = ""; + string installsize = ""; string[] groups = {}; string[] backups = {}; string[] licenses = {}; @@ -648,6 +650,10 @@ namespace Pamac { groups += ((Alpm.List) list).data; list.next (); } + // download size + downloadsize = alpm_pkg.download_size.to_string (); + // installed size + installsize = alpm_pkg.isize.to_string (); // licenses list = alpm_pkg.licenses; while (list != null) { @@ -744,6 +750,8 @@ namespace Pamac { details.builddate = (owned) builddate; details.installdate = (owned) installdate; details.reason = (owned) reason; + details.downloadsize = (owned) downloadsize; + details.installsize = (owned) installsize; details.has_signature = (owned) has_signature; details.licenses = (owned) licenses; details.depends = (owned) depends; diff --git a/src/transaction.vala b/src/transaction.vala index bec2f92..f4a50fa 100644 --- a/src/transaction.vala +++ b/src/transaction.vala @@ -815,7 +815,9 @@ namespace Pamac { builddate = "", installdate = "", reason = "", - has_signature = "" + has_signature = "", + downloadsize = "", + installsize = "" }; } }