Hello community, here is the log from the commit of package libpeas for openSUSE:Factory checked in at 2019-10-30 14:40:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libpeas (Old) and /work/SRC/openSUSE:Factory/.libpeas.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libpeas" Wed Oct 30 14:40:26 2019 rev:40 rq:743766 version:1.24.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libpeas/libpeas.changes 2019-10-17 13:02:47.888771870 +0200 +++ /work/SRC/openSUSE:Factory/.libpeas.new.2990/libpeas.changes 2019-10-30 14:40:27.813712833 +0100 @@ -1,0 +2,14 @@ +Mon Oct 28 18:12:12 UTC 2019 - Bjørn Lie <[email protected]> + +- Update to version 1.24.1: + + Fix missing access to peas_gettext() in public ABI. + + Fix loading of python2 plugin loader. + + Fix use of -export-dynamic with Clang. + + Various macOS build fixes. + + Fixes for libpeas-gtk pkg-config generation. + + Add support for GInitiallyUnowned with PeasExtension. + + Updated translations. +- Drop leftover _service and _servicedata files, package have been + switched back to tarball releases in last unstable cycle. + +------------------------------------------------------------------- Old: ---- _service _servicedata libpeas-1.24.0.tar.xz New: ---- libpeas-1.24.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libpeas.spec ++++++ --- /var/tmp/diff_new_pack.oyLPfi/_old 2019-10-30 14:40:28.321713374 +0100 +++ /var/tmp/diff_new_pack.oyLPfi/_new 2019-10-30 14:40:28.325713378 +0100 @@ -20,15 +20,14 @@ %bcond_without python2 %bcond_without python3 Name: libpeas -Version: 1.24.0 +Version: 1.24.1 Release: 0 Summary: GObject-based Plugin Engine License: LGPL-2.1-or-later Group: Development/Libraries/GNOME URL: https://wiki.gnome.org/Projects/Libpeas -# Source based on git _service -Source: https://download.gnome.org/sources/libpeas/1.24/%{name}-%{version}.tar.xz -#Source: http://download.gnome.org/sources/libpeas/1.20/%%{name}-%%{version}.tar.xz +Source0: https://download.gnome.org/sources/libpeas/1.24/%{name}-%{version}.tar.xz + BuildRequires: gettext BuildRequires: meson >= 0.49.0 BuildRequires: pkgconfig @@ -171,7 +170,7 @@ %lang_package %prep -%setup -q +%autosetup -p1 translation-update-upstream po %{name} %build @@ -216,7 +215,7 @@ %if %{with python2} %files loader-python -%{_libdir}/libpeas-1.0/loaders/libpython2loader.so +%{_libdir}/libpeas-1.0/loaders/libpythonloader.so %endif %if %{with python3} ++++++ libpeas-1.24.0.tar.xz -> libpeas-1.24.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/NEWS new/libpeas-1.24.1/NEWS --- old/libpeas-1.24.0/NEWS 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/NEWS 2019-10-28 18:24:28.000000000 +0100 @@ -1,3 +1,17 @@ +Overview of Changes in libpeas 1.24.1 +===================================== + +* Fix missing access to peas_gettext() in public ABI +* Fix loading of python2 plugin loader +* Fix use of -export-dynamic with Clang +* Various macOS build fixes +* Fixes for libpeas-gtk pkg-config generation +* Add support for GInitiallyUnowned with PeasExtension +* Translation updates: + - Danish + - Dutch + - Persian + Overview of Changes in libpeas 1.24.0 ===================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas/meson.build new/libpeas-1.24.1/libpeas/meson.build --- old/libpeas-1.24.0/libpeas/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/libpeas/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -46,6 +46,14 @@ 'peas-utils.c', ) +if build_machine.system() == 'darwin' + libpeas_sources += [ + 'peas-utils-osx.m', + 'peas-utils-osx.h', + ] +endif + + libpeas_deps = [ glib_dep, gobject_dep, @@ -64,6 +72,13 @@ libpeas_link_args = [ ] +if build_machine.system() == 'darwin' + libpeas_link_args += [ + '-Wl,-framework', '-Wl,Foundation', + '-Wl,-framework', '-Wl,AppKit', + ] +endif + libpeas_marshal = gnome.genmarshal( 'peas-marshal', sources: 'peas-marshal.list', @@ -89,9 +104,11 @@ package_string.strip('lib'), libpeas_sources, version: lib_version, + darwin_versions: lib_version_osx, include_directories: [rootdir, libpeas_srcdir], dependencies: libpeas_deps, c_args: libpeas_c_args + hidden_visibility_args, + objc_args: libpeas_c_args, link_args: libpeas_link_args, install: true, install_dir: libdir, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas/peas-dirs.c new/libpeas-1.24.1/libpeas/peas-dirs.c --- old/libpeas-1.24.0/libpeas/peas-dirs.c 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/libpeas/peas-dirs.c 2019-10-28 18:24:28.000000000 +0100 @@ -26,92 +26,7 @@ #include "peas-dirs.h" #ifdef OS_OSX - -#import <Cocoa/Cocoa.h> - -static gchar * -dirs_os_x_get_bundle_resource_dir (void) -{ - NSAutoreleasePool *pool; - gchar *str = NULL; - NSString *path; - - pool = [[NSAutoreleasePool alloc] init]; - - if ([[NSBundle mainBundle] bundleIdentifier] == nil) - { - [pool release]; - return NULL; - } - - path = [[NSBundle mainBundle] resourcePath]; - - if (!path) - { - [pool release]; - return NULL; - } - - str = g_strdup ([path UTF8String]); - [pool release]; - return str; -} - -static gchar * -dirs_os_x_get_resource_dir (const gchar *subdir, - const gchar *default_dir) -{ - gchar *res_dir; - gchar *ret; - - res_dir = dirs_os_x_get_bundle_resource_dir (); - - if (res_dir == NULL) - { - ret = g_build_filename (default_dir, "libpeas-1.0", NULL); - } - else - { - ret = g_build_filename (res_dir, subdir, "libpeas-1.0", NULL); - g_free (res_dir); - } - - return ret; -} - -static gchar * -dirs_os_x_get_data_dir (void) -{ - return dirs_os_x_get_resource_dir ("share", DATADIR); -} - -static gchar * -dirs_os_x_get_lib_dir (void) -{ - return dirs_os_x_get_resource_dir ("lib", LIBDIR); -} - -static gchar * -dirs_os_x_get_locale_dir (void) -{ - gchar *res_dir; - gchar *ret; - - res_dir = dirs_os_x_get_bundle_resource_dir (); - - if (res_dir == NULL) - { - ret = g_build_filename (DATADIR, "locale", NULL); - } - else - { - ret = g_build_filename (res_dir, "share", "locale", NULL); - g_free (res_dir); - } - - return ret; -} - +#include "peas-utils-osx.h" #endif gchar * @@ -127,7 +42,7 @@ data_dir = g_build_filename (win32_dir, "share", "libpeas-1.0", NULL); g_free (win32_dir); #elif defined (OS_OSX) - data_dir = dirs_os_x_get_data_dir (); + data_dir = peas_dirs_os_x_get_data_dir (); #else data_dir = g_build_filename (DATADIR, "libpeas-1.0", NULL); #endif @@ -148,7 +63,7 @@ lib_dir = g_build_filename (win32_dir, "lib", "libpeas-1.0", NULL); g_free (win32_dir); #elif defined (OS_OSX) - lib_dir = dirs_os_x_get_lib_dir (); + lib_dir = peas_dirs_os_x_get_lib_dir (); #else lib_dir = g_build_filename (LIBDIR, "libpeas-1.0", NULL); #endif @@ -189,7 +104,7 @@ g_free (win32_dir); #elif defined (OS_OSX) - locale_dir = dirs_os_x_get_locale_dir (); + locale_dir = peas_dirs_os_x_get_locale_dir (); #else locale_dir = g_build_filename (DATADIR, "locale", NULL); #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas/peas-i18n.h new/libpeas-1.24.1/libpeas/peas-i18n.h --- old/libpeas-1.24.0/libpeas/peas-i18n.h 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/libpeas/peas-i18n.h 2019-10-28 18:24:28.000000000 +0100 @@ -30,7 +30,7 @@ #include <config.h> #endif -#include <glib.h> +#include "peas-version-macros.h" G_BEGIN_DECLS @@ -64,6 +64,7 @@ # define N_(String) (String) #endif +PEAS_AVAILABLE_IN_ALL const gchar *peas_gettext (const char *msgid) G_GNUC_FORMAT(1); /* not really I18N-related, but also a string marker macro */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas/peas-utils-osx.h new/libpeas-1.24.1/libpeas/peas-utils-osx.h --- old/libpeas-1.24.0/libpeas/peas-utils-osx.h 1970-01-01 01:00:00.000000000 +0100 +++ new/libpeas-1.24.1/libpeas/peas-utils-osx.h 2019-10-28 18:24:28.000000000 +0100 @@ -0,0 +1,41 @@ +/* + * peas-utils-osx.h + * This file is part of libpeas + * + * Copyright (C) 2008 Ignacio Casal Quinteiro + * + * libpeas is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * libpeas is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Author: Tom Schoonjans <[email protected]> + */ +#ifndef __PEAS_UTILS_OSX_H__ +#define __PEAS_UTILS_OSX_H__ + +#include <glib.h> + +G_BEGIN_DECLS + +gchar *peas_dirs_os_x_get_bundle_resource_dir (void); +gchar *peas_dirs_os_x_get_resource_dir (const gchar *subdir, + const gchar *default_dir); +gchar *peas_dirs_os_x_get_data_dir (void); +gchar *peas_dirs_os_x_get_lib_dir (void); +gchar *peas_dirs_os_x_get_locale_dir (void); +void peas_open_url_osx (const gchar *uri); + +G_END_DECLS + +#endif /* __PEAS_UTILS_OSX_H__ */ + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas/peas-utils-osx.m new/libpeas-1.24.1/libpeas/peas-utils-osx.m --- old/libpeas-1.24.0/libpeas/peas-utils-osx.m 1970-01-01 01:00:00.000000000 +0100 +++ new/libpeas-1.24.1/libpeas/peas-utils-osx.m 2019-10-28 18:24:28.000000000 +0100 @@ -0,0 +1,121 @@ +/* + * peas-utils-osx.m + * This file is part of libpeas + * + * Copyright (C) 2008 Ignacio Casal Quinteiro + * + * libpeas is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * libpeas is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Author: Tom Schoonjans <[email protected]> + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "peas-utils-osx.h" + +#import <Foundation/Foundation.h> + +#import <AppKit/AppKit.h> + +void +peas_open_url_osx (const gchar *uri) +{ + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[NSString stringWithUTF8String:uri]]]; +} + +gchar * +peas_dirs_os_x_get_bundle_resource_dir (void) +{ + NSAutoreleasePool *pool; + gchar *str = NULL; + NSString *path; + + pool = [[NSAutoreleasePool alloc] init]; + + if ([[NSBundle mainBundle] bundleIdentifier] == nil) + { + [pool release]; + return NULL; + } + + path = [[NSBundle mainBundle] resourcePath]; + + if (!path) + { + [pool release]; + return NULL; + } + + str = g_strdup ([path UTF8String]); + [pool release]; + return str; +} + +gchar * +peas_dirs_os_x_get_resource_dir (const gchar *subdir, + const gchar *default_dir) +{ + gchar *res_dir; + gchar *ret; + + res_dir = peas_dirs_os_x_get_bundle_resource_dir (); + + if (res_dir == NULL) + { + ret = g_build_filename (default_dir, "libpeas-1.0", NULL); + } + else + { + ret = g_build_filename (res_dir, subdir, "libpeas-1.0", NULL); + g_free (res_dir); + } + + return ret; +} + +gchar * +peas_dirs_os_x_get_data_dir (void) +{ + return peas_dirs_os_x_get_resource_dir ("share", DATADIR); +} + +gchar * +peas_dirs_os_x_get_lib_dir (void) +{ + return peas_dirs_os_x_get_resource_dir ("lib", LIBDIR); +} + +gchar * +peas_dirs_os_x_get_locale_dir (void) +{ + gchar *res_dir; + gchar *ret; + + res_dir = peas_dirs_os_x_get_bundle_resource_dir (); + + if (res_dir == NULL) + { + ret = g_build_filename (DATADIR, "locale", NULL); + } + else + { + ret = g_build_filename (res_dir, "share", "locale", NULL); + g_free (res_dir); + } + + return ret; +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas-gtk/meson.build new/libpeas-1.24.1/libpeas-gtk/meson.build --- old/libpeas-1.24.0/libpeas-gtk/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/libpeas-gtk/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -56,6 +56,7 @@ package_gtk_string.strip('lib'), libpeas_gtk_c, version: lib_version, + darwin_versions: lib_version_osx, include_directories: rootdir, dependencies: libpeas_gtk_deps, c_args: libpeas_gtk_c_args, @@ -111,10 +112,17 @@ sources: libpeas_gtk_dep_sources, ) +libpeas_gtk_pc_reqs = [ + glib_dep, + gtk_dep, + package_string + ' >= @0@'.format(version) +] + libpeas_gtk_pc = pkg.generate( libpeas_gtk_sha, name: package_gtk_string, description: 'GObject plugins library widgetery', + requires: libpeas_gtk_pc_reqs, subdirs: package_string, install_dir: pkgconfigdir, ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/libpeas-gtk/peas-gtk-plugin-manager.c new/libpeas-1.24.1/libpeas-gtk/peas-gtk-plugin-manager.c --- old/libpeas-1.24.0/libpeas-gtk/peas-gtk-plugin-manager.c 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/libpeas-gtk/peas-gtk-plugin-manager.c 2019-10-28 18:24:28.000000000 +0100 @@ -30,7 +30,7 @@ #include <girepository.h> #ifdef OS_OSX -#import <Cocoa/Cocoa.h> +#include "peas-utils-osx.h" #endif #include <libpeas/peas-engine.h> @@ -190,7 +190,7 @@ help_uri = peas_plugin_info_get_help_uri (info); #ifdef OS_OSX - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[NSString stringWithUTF8String:help_uri]]]; + peas_open_url_osx (help_uri); #else gtk_show_uri_on_window (get_toplevel (button), help_uri, GDK_CURRENT_TIME, &error); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/loaders/lua5.1/meson.build new/libpeas-1.24.1/loaders/lua5.1/meson.build --- old/libpeas-1.24.0/loaders/lua5.1/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/loaders/lua5.1/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -27,7 +27,7 @@ '-DLGI_MICRO_VERSION=@0@'.format(lua51_lgi_version_micro), ] -lua51_loader_sha = shared_library( +lua51_loader_sha = shared_module( lua51_loader_name, lua51_loader_c + lua51_loader_res, include_directories: rootdir, @@ -37,5 +37,6 @@ install_dir: join_paths( pkglibdir, 'loaders', - ) + ), + name_suffix: module_suffix ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/loaders/python/meson.build new/libpeas-1.24.1/loaders/python/meson.build --- old/libpeas-1.24.0/loaders/python/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/loaders/python/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -1,4 +1,4 @@ -python2_loader_name = 'python2loader' +python2_loader_name = 'pythonloader' pygobject_version = pygobject_dep.version() pygobject_version_arr = pygobject_version.split('.') @@ -31,7 +31,7 @@ '-DPYGOBJECT_MICRO_VERSION=@0@'.format(pygobject_version_micro), ] -python2_loader_sha = shared_library( +python2_loader_sha = shared_module( python2_loader_name, python2_loader_c + python2_loader_res, include_directories: rootdir, @@ -41,5 +41,6 @@ install_dir: join_paths( pkglibdir, 'loaders', - ) + ), + name_suffix: module_suffix ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/loaders/python/peas-plugin-loader-python.c new/libpeas-1.24.1/loaders/python/peas-plugin-loader-python.c --- old/libpeas-1.24.0/loaders/python/peas-plugin-loader-python.c 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/loaders/python/peas-plugin-loader-python.c 2019-10-28 18:24:28.000000000 +0100 @@ -124,6 +124,10 @@ if (object == NULL) goto out; + /* Sink floating references if necessary */ + if (g_object_is_floating (object)) + g_object_ref_sink (object); + /* We have to remember which interface we are instantiating * for the deprecated peas_extension_get_extension_type(). */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/loaders/python3/meson.build new/libpeas-1.24.1/loaders/python3/meson.build --- old/libpeas-1.24.0/loaders/python3/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/loaders/python3/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -31,7 +31,7 @@ '-DPYGOBJECT_MICRO_VERSION=@0@'.format(pygobject_version_micro), ] -python3_loader_sha = shared_library( +python3_loader_sha = shared_module( python3_loader_name, python3_loader_c + python3_loader_res, include_directories: rootdir, @@ -41,5 +41,6 @@ install_dir: join_paths( pkglibdir, 'loaders', - ) + ), + name_suffix: module_suffix ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/meson.build new/libpeas-1.24.1/meson.build --- old/libpeas-1.24.0/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/meson.build 2019-10-28 18:24:28.000000000 +0100 @@ -1,6 +1,6 @@ project( 'libpeas', 'c', - version: '1.24.0', + version: '1.24.1', license: 'LGPLv2.1+', meson_version: '>= 0.49.0', default_options: [ @@ -39,6 +39,9 @@ lib_version_revision ) +osx_current = lib_version_current + 1 +lib_version_osx = [osx_current, '@0@.@1@'.format(osx_current, interface_age)] + package_name = meson.project_name() package_string = '@0@-@1@'.format(package_name, api_version) package_long_string = '@0@-@1@'.format(package_name, version) @@ -119,8 +122,11 @@ luajit_prg = find_program('luajit', required: false) xmllint_prg = find_program('xmllint', required: false) +module_suffix = [] if build_machine.system() == 'darwin' - config_h.set_quoted('OS_OSX', 1) + config_h.set('OS_OSX', 1) + add_languages('objc') + module_suffix = 'so' endif # Detect and set symbol visibility diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/po/da.po new/libpeas-1.24.1/po/da.po --- old/libpeas-1.24.0/po/da.po 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/po/da.po 2019-10-28 18:24:28.000000000 +0100 @@ -1,15 +1,16 @@ # Danish translation for libpeas. -# Copyright (C) 2011 libpeas's COPYRIGHT HOLDER. +# Copyright (C) 2011, 2019 libpeas's COPYRIGHT HOLDER. # This file is distributed under the same license as the libpeas package. +# # Joe Hansen ([email protected]), 2010, 2011. +# Ask Hjorth Larsen <[email protected]>, 2019. # msgid "" msgstr "" "Project-Id-Version: libpeas master\n" -"Report-Msgid-Bugs-To: " -"https://bugzilla.gnome.org/enter_bug.cgi?product=libpeas&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-03-25 04:28+0000\n" -"PO-Revision-Date: 2015-09-19 18:27+0200\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/libpeas/issues\n" +"POT-Creation-Date: 2019-08-06 00:27+0000\n" +"PO-Revision-Date: 2019-09-09 01:46+0200\n" "Last-Translator: Joe Hansen <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" "Language: da\n" @@ -18,174 +19,165 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../data/glade/libpeas-gtk.xml.in.h:1 -msgid "Plugin Manager" -msgstr "Håndtering af udvidelsesmoduler" - -#. Translators: What PeasGtkPluginManagerView to use -#: ../data/glade/libpeas-gtk.xml.in.h:3 -msgid "View" -msgstr "Vis" - -#: ../data/glade/libpeas-gtk.xml.in.h:4 -msgid "Plugin Manager View" -msgstr "Visning af udvidelsesmodulhåndtering" - -# skulle engelsk have været Built-in? -# In computing, a shell builtin is a command or a function, -# called from a shell, that is executed directly in the -# shell itself, instead of an external executable program -# which the shell would load and execute. -#. Translators: Whether builtin plugins should appear in the view (property name) -#: ../data/glade/libpeas-gtk.xml.in.h:6 -msgid "Show Builtin" -msgstr "Vis builtin" - -#: ../data/glade/libpeas-gtk.xml.in.h:7 -msgid "Peas Gtk" -msgstr "Peas Gtk" - -#: ../libpeas/peas-engine.c:1118 +#: libpeas/peas-engine.c:1118 #, c-format -msgid "Dependency '%s' was not found" -msgstr "Afhængighed “%s” blev ikke fundet" +msgid "Dependency “%s” was not found" +msgstr "Afhængigheden “%s” blev ikke fundet" -#: ../libpeas/peas-engine.c:1128 +#: libpeas/peas-engine.c:1128 #, c-format -msgid "Dependency '%s' failed to load" -msgstr "Afhængighed “%s” kunne ikke indlæses" +msgid "Dependency “%s” failed to load" +msgstr "Afhængigheden “%s” kunne ikke indlæses" -#: ../libpeas/peas-engine.c:1142 +#: libpeas/peas-engine.c:1142 #, c-format -msgid "Plugin loader '%s' was not found" -msgstr "Indlæser “%s” for udvidelsesmoduler blev ikke fundet" +msgid "Plugin loader “%s” was not found" +msgstr "Indlæseren “%s” for udvidelsesmoduler blev ikke fundet" -#: ../libpeas/peas-engine.c:1154 +#: libpeas/peas-engine.c:1154 #, c-format msgid "Failed to load" msgstr "Kunne ikke indlæse" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 msgid "Additional plugins must be disabled" msgstr "Yderligere udvidelsesmoduler skal deaktiveres" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 #, c-format -msgid "The following plugins depend on '%s' and will also be disabled:" +msgid "The following plugins depend on “%s” and will also be disabled:" msgstr "" "De følgende udvidelsesmoduler afhænger af “%s” og vil også blive deaktiveret:" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 msgid "An additional plugin must be disabled" msgstr "Et yderligere udvidelsesmodul skal deaktiveres" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 #, c-format msgid "" -"The '%s' plugin depends on the '%s' plugin.\n" -"If you disable '%s', '%s' will also be disabled." +"The “%s” plugin depends on the “%s” plugin.\n" +"If you disable “%s”, “%s” will also be disabled." msgstr "" "Udvidelsesmodulet “%s” afhænger af\n" "udvidelsesmodulet “%s”.\n" "Hvis du deaktiverer “%s”, vil “%s” også blive\n" "deaktiveret." -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 msgid "_Cancel" msgstr "_Annullér" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 msgid "Disable Plugins" msgstr "Deaktiver udvidelsesmoduler" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:207 +#: libpeas-gtk/peas-gtk-plugin-manager.c:207 msgid "There was an error displaying the help." msgstr "En fejl opstod under visning af hjælpen." -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:253 +#: libpeas-gtk/peas-gtk-plugin-manager.c:253 msgid "_Close" msgstr "_Luk" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:265 +#: libpeas-gtk/peas-gtk-plugin-manager.c:265 msgid "_Help" msgstr "_Hjælp" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:323 +#: libpeas-gtk/peas-gtk-plugin-manager.c:323 msgid "Pr_eferences" msgstr "Ind_stillinger" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:328 -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:379 +#: libpeas-gtk/peas-gtk-plugin-manager.c:328 +#: libpeas-gtk/peas-gtk-plugin-manager.c:379 msgid "_About" msgstr "_Om" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:387 +#: libpeas-gtk/peas-gtk-plugin-manager.c:387 msgid "_Preferences" msgstr "_Indstillinger" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:351 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:351 msgid "_Enabled" msgstr "_Aktiveret" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:362 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:362 msgid "E_nable All" msgstr "A_ktiver alle" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:366 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:366 msgid "_Disable All" msgstr "_Deaktiver alle" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:526 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:526 msgid "Enabled" msgstr "Aktiveret" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:547 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:547 msgid "Plugin" msgstr "Udvidelsesmodul" #. Avoid having markup in a translated string -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:634 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:634 #, c-format -msgid "The plugin '%s' could not be loaded" +msgid "The plugin “%s” could not be loaded" msgstr "Udvidelsesmodulet “%s” kunne ikke indlæses" #. Keep separate because some translations do special things #. * for the ':' and might accidentally not keep the space after it #. -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:640 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:640 #, c-format msgid "An error occurred: %s" msgstr "Der opstod en fejl: %s" #. Translators: The directory in which the demo program was compiled at -#: ../peas-demo/peas-demo.c:41 +#: peas-demo/peas-demo.c:41 msgid "Run from build directory" msgstr "Kør fra kompileringsmappe" -#: ../peas-demo/peas-demo.c:92 +#: peas-demo/peas-demo.c:92 msgid "_Quit" msgstr "_Afslut" -#: ../peas-demo/peas-demo.c:108 -msgid "- libpeas demo application" -msgstr "- libpeas' demoprogram" +#: peas-demo/peas-demo.c:108 +msgid "— libpeas demo application" +msgstr "— demoprogram til libpeas" -#: ../tests/libpeas-gtk/plugin-manager.c:77 +#: tests/libpeas-gtk/plugin-manager.c:77 msgid "About" msgstr "Om" -#: ../tests/libpeas-gtk/plugin-manager.c:82 +#: tests/libpeas-gtk/plugin-manager.c:82 msgid "Preferences" msgstr "Indstillinger" +#~ msgid "Plugin Manager" +#~ msgstr "Håndtering af udvidelsesmoduler" + +#~ msgid "View" +#~ msgstr "Vis" + +#~ msgid "Plugin Manager View" +#~ msgstr "Visning af udvidelsesmodulhåndtering" + +# skulle engelsk have været Built-in? +# In computing, a shell builtin is a command or a function, +# called from a shell, that is executed directly in the +# shell itself, instead of an external executable program +# which the shell would load and execute. +#~ msgid "Show Builtin" +#~ msgstr "Vis builtin" + +#~ msgid "Peas Gtk" +#~ msgstr "Peas Gtk" + #~ msgid "C_onfigure" #~ msgstr "_Konfigurer" #~ msgid "_Plugins:" #~ msgstr "_Udvidelsesmoduler:" - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/po/fa.po new/libpeas-1.24.1/po/fa.po --- old/libpeas-1.24.0/po/fa.po 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/po/fa.po 2019-10-28 18:24:28.000000000 +0100 @@ -2,179 +2,172 @@ # Copyright (C) 2011 Iranian Free Software Users Group (IFSUG.org)translation team. # This file is distributed under the same license as the libpeas package. # Arash Mousavi <[email protected]>, 2011, 2012, 2015. +# Danial Behzadi <[email protected]>, 2016, 2017, 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: libpeas master\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=libpeas&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-09-16 11:01+0000\n" -"PO-Revision-Date: 2015-09-17 01:07+0430\n" -"Last-Translator: Arash Mousavi <[email protected]>\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/libpeas/issues\n" +"POT-Creation-Date: 2019-09-25 10:34+0000\n" +"PO-Revision-Date: 2019-09-29 13:59+0000\n" +"Last-Translator: Danial Behzadi <[email protected]>\n" "Language-Team: Persian\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Generator: Poedit 1.8.4\n" +"X-Generator: Poedit 2.2.1\n" -#: ../data/glade/libpeas-gtk.xml.in.h:1 -msgid "Plugin Manager" -msgstr "مدیریت افزونه" - -#. Translators: What PeasGtkPluginManagerView to use -#: ../data/glade/libpeas-gtk.xml.in.h:3 -msgid "View" -msgstr "نما" - -#: ../data/glade/libpeas-gtk.xml.in.h:4 -msgid "Plugin Manager View" -msgstr "نما مدیریت افزونه" - -#. Translators: Whether builtin plugins should appear in the view (property name) -#: ../data/glade/libpeas-gtk.xml.in.h:6 -msgid "Show Builtin" -msgstr "نمایش توکارها" - -#: ../data/glade/libpeas-gtk.xml.in.h:7 -msgid "Peas Gtk" -msgstr "Peas Gtk" - -#: ../libpeas/peas-engine.c:976 +#: libpeas/peas-engine.c:1116 #, c-format -msgid "Dependency '%s' was not found" +msgid "Dependency “%s” was not found" msgstr "وابستگی «%s» پیدا نشد" -#: ../libpeas/peas-engine.c:986 +#: libpeas/peas-engine.c:1126 #, c-format -msgid "Dependency '%s' failed to load" -msgstr "بارگیری وابستگی «%s» شکست خورد" +msgid "Dependency “%s” failed to load" +msgstr "بار کردن وابستگی «%s» شکست خورد" -#: ../libpeas/peas-engine.c:1000 +#: libpeas/peas-engine.c:1140 #, c-format -msgid "Plugin loader '%s' was not found" -msgstr "بارگیر افزونهی «%s» پیدا نشد" +msgid "Plugin loader “%s” was not found" +msgstr "بارکنندهٔ افزایهٔ «%s» پیدا نشد" -#: ../libpeas/peas-engine.c:1012 +#: libpeas/peas-engine.c:1152 #, c-format msgid "Failed to load" -msgstr "بارگیری شکست خورد" +msgstr "شکست در بار کردن" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 msgid "Additional plugins must be disabled" -msgstr "افزونههای اضافی باید غیرفعال شوند" +msgstr "افزایههای اضافی باید از کار بیفتند." -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 #, c-format -msgid "The following plugins depend on '%s' and will also be disabled:" -msgstr "افزونههای مقابل نیز وابسته به «%s» هستن و غیرفعال خواهند شد:" +msgid "The following plugins depend on “%s” and will also be disabled:" +msgstr "افزایههای مقابل وابسته به «%s» بوده و آنها نیز از کار خواهند افتاد:" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 msgid "Plugins" -msgstr "افزونهها" +msgstr "افزایهها" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 msgid "An additional plugin must be disabled" -msgstr "یک افزونهی اضافی باید غیرفعال شود" +msgstr "یک افزایهٔ اضافی باید از کار بیفتد" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 #, c-format msgid "" -"The '%s' plugin depends on the '%s' plugin.\n" -"If you disable '%s', '%s' will also be disabled." +"The “%s” plugin depends on the “%s” plugin.\n" +"If you disable “%s”, “%s” will also be disabled." msgstr "" -"افزونهی «%s» وابسته به افزونهی «%s» است.\n" -"اگر شما «%s» را غیرفعال کنید، «%s» نیز غیرفعال میشود." +"افزایهٔ «%s» وابسته به افزایهٔ «%s» است.\n" +"اگر «%s» را از کار بیندازید، «%s» نیز از کار میافتد." -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 msgid "_Cancel" msgstr "_لغو" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 msgid "Disable Plugins" -msgstr "غیرفعالسازی افزونهها" +msgstr "از کار انداختن افزایهها" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:207 +#: libpeas-gtk/peas-gtk-plugin-manager.c:207 msgid "There was an error displaying the help." -msgstr "یک خطا هنگام نمایش راهنما وجود داشت." +msgstr "در نمایش راهنما خطابی وجود داشت." -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:253 +#: libpeas-gtk/peas-gtk-plugin-manager.c:253 msgid "_Close" -msgstr "_خروج" +msgstr "_بستن" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:265 +#: libpeas-gtk/peas-gtk-plugin-manager.c:265 msgid "_Help" msgstr "_راهنما" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:323 +#: libpeas-gtk/peas-gtk-plugin-manager.c:323 msgid "Pr_eferences" msgstr "_ترجیحات" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:328 -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:379 +#: libpeas-gtk/peas-gtk-plugin-manager.c:328 +#: libpeas-gtk/peas-gtk-plugin-manager.c:379 msgid "_About" msgstr "_درباره" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:387 +#: libpeas-gtk/peas-gtk-plugin-manager.c:387 msgid "_Preferences" msgstr "_ترجیحات" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:351 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:351 msgid "_Enabled" -msgstr "_فعالشد" +msgstr "_به کار افتاده" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:362 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:362 msgid "E_nable All" -msgstr "فعالسازی _همه" +msgstr "به کار انداختن _همه" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:366 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:366 msgid "_Disable All" -msgstr "_غیرفعالسازی همه" +msgstr "_از کار انداختن همه" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:526 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:575 msgid "Enabled" -msgstr "فعال شد" +msgstr "به کار افتاده" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:547 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:596 msgid "Plugin" -msgstr "افزونه" +msgstr "افزایه" #. Avoid having markup in a translated string -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:634 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:683 #, c-format -msgid "The plugin '%s' could not be loaded" -msgstr "امکان بارگیری افزونه «%s» نبود" +msgid "The plugin “%s” could not be loaded" +msgstr "امکان بار کردن افزایه «%s» نبود" #. Keep separate because some translations do special things #. * for the ':' and might accidentally not keep the space after it #. -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:640 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:689 #, c-format msgid "An error occurred: %s" msgstr "خطایی رخ داد: %s" #. Translators: The directory in which the demo program was compiled at -#: ../peas-demo/peas-demo.c:41 +#: peas-demo/peas-demo.c:41 msgid "Run from build directory" -msgstr "اجرا از شاخه build" +msgstr "اجرا از شاخهٔ ساخت" -#: ../peas-demo/peas-demo.c:92 +#: peas-demo/peas-demo.c:92 msgid "_Quit" msgstr "_خروج" -#: ../peas-demo/peas-demo.c:108 -msgid "- libpeas demo application" -msgstr "- برنامه نمایشی libpeas" +#: peas-demo/peas-demo.c:108 +msgid "— libpeas demo application" +msgstr "— برنامه نمایشی libpeas" -#: ../tests/libpeas-gtk/plugin-manager.c:77 +#: tests/libpeas-gtk/plugin-manager.c:77 msgid "About" msgstr "درباره" -#: ../tests/libpeas-gtk/plugin-manager.c:82 +#: tests/libpeas-gtk/plugin-manager.c:82 msgid "Preferences" msgstr "ترجیحات" +#~ msgid "Plugin Manager" +#~ msgstr "مدیریت افزونه" + +#~ msgid "View" +#~ msgstr "نما" + +#~ msgid "Plugin Manager View" +#~ msgstr "نما مدیریت افزونه" + +#~ msgid "Show Builtin" +#~ msgstr "نمایش توکارها" + +#~ msgid "Peas Gtk" +#~ msgstr "Peas Gtk" + #~ msgid "C_onfigure" #~ msgstr "_پیکربندی" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/po/nl.po new/libpeas-1.24.1/po/nl.po --- old/libpeas-1.24.0/po/nl.po 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/po/nl.po 2019-10-28 18:24:28.000000000 +0100 @@ -3,180 +3,173 @@ # This file is distributed under the same license as the lipeas package. # # Wouter Bolsterlee <[email protected]>, 2011 +# Nathan Follens <[email protected]>, 2019 # msgid "" msgstr "" "Project-Id-Version: lipeas\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=libpeas&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-12-16 01:04+0000\n" -"PO-Revision-Date: 2016-04-08 21:56+0100\n" -"Last-Translator: Justin van Steijn <[email protected]>\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/libpeas/issues\n" +"POT-Creation-Date: 2019-08-06 16:59+0000\n" +"PO-Revision-Date: 2019-09-25 12:32+0200\n" +"Last-Translator: Nathan Follens <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"X-Generator: Poedit 2.2.3\n" -#: ../data/glade/libpeas-gtk.xml.in.h:1 -msgid "Plugin Manager" -msgstr "Plug-in-beheer" - -#. Translators: What PeasGtkPluginManagerView to use -#: ../data/glade/libpeas-gtk.xml.in.h:3 -msgid "View" -msgstr "Weergave" - -#: ../data/glade/libpeas-gtk.xml.in.h:4 -msgid "Plugin Manager View" -msgstr "Plug-in-beheerweergave" - -#. Translators: Whether builtin plugins should appear in the view (property name) -#: ../data/glade/libpeas-gtk.xml.in.h:6 -msgid "Show Builtin" -msgstr "Ingebouwde plug-ins tonen" - -#: ../data/glade/libpeas-gtk.xml.in.h:7 -msgid "Peas Gtk" -msgstr "Peas Gtk" - -#: ../libpeas/peas-engine.c:1115 +#: libpeas/peas-engine.c:1116 #, c-format -msgid "Dependency '%s' was not found" +msgid "Dependency “%s” was not found" msgstr "Afhankelijkheid ‘%s’ niet gevonden" -#: ../libpeas/peas-engine.c:1125 +#: libpeas/peas-engine.c:1126 #, c-format -msgid "Dependency '%s' failed to load" +msgid "Dependency “%s” failed to load" msgstr "Laden van afhankelijkheid ‘%s’ mislukt" -#: ../libpeas/peas-engine.c:1139 +#: libpeas/peas-engine.c:1140 #, c-format -msgid "Plugin loader '%s' was not found" +msgid "Plugin loader “%s” was not found" msgstr "Plug-in-lader ‘%s’ niet gevonden" -#: ../libpeas/peas-engine.c:1151 +#: libpeas/peas-engine.c:1152 #, c-format msgid "Failed to load" msgstr "Laden mislukt" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:95 msgid "Additional plugins must be disabled" msgstr "Aanvullende plug-ins moeten uitgeschakeld worden" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:102 #, c-format -msgid "The following plugins depend on '%s' and will also be disabled:" +msgid "The following plugins depend on “%s” and will also be disabled:" msgstr "" "De volgende plug-ins zijn afhankelijk van ‘%s’ en zullen ook uitgeschakeld " "worden:" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:144 msgid "Plugins" msgstr "Plug-ins" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:161 msgid "An additional plugin must be disabled" msgstr "Een aanvullende plug-in moet uitgeschakeld worden" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:168 #, c-format msgid "" -"The '%s' plugin depends on the '%s' plugin.\n" -"If you disable '%s', '%s' will also be disabled." +"The “%s” plugin depends on the “%s” plugin.\n" +"If you disable “%s”, “%s” will also be disabled." msgstr "" "De plug-in ‘%s’ is afhankelijk van de plug-in ‘%s’.\n" "Als u ‘%s’ uitschakelt, zal ook ‘%s’ uitgeschakeld worden." -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:182 msgid "_Cancel" msgstr "_Annuleren" -#: ../libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 +#: libpeas-gtk/peas-gtk-disable-plugins-dialog.c:184 msgid "Disable Plugins" msgstr "Plug-ins uitschakelen" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:207 +#: libpeas-gtk/peas-gtk-plugin-manager.c:207 msgid "There was an error displaying the help." -msgstr "Fout bij het weergeven van de hulp" +msgstr "Fout bij het weergeven van de hulp." -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:253 +#: libpeas-gtk/peas-gtk-plugin-manager.c:253 msgid "_Close" msgstr "_Sluiten" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:265 +#: libpeas-gtk/peas-gtk-plugin-manager.c:265 msgid "_Help" msgstr "_Hulp" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:323 +#: libpeas-gtk/peas-gtk-plugin-manager.c:323 msgid "Pr_eferences" msgstr "Voork_euren" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:328 -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:379 +#: libpeas-gtk/peas-gtk-plugin-manager.c:328 +#: libpeas-gtk/peas-gtk-plugin-manager.c:379 msgid "_About" msgstr "_Over" -#: ../libpeas-gtk/peas-gtk-plugin-manager.c:387 +#: libpeas-gtk/peas-gtk-plugin-manager.c:387 msgid "_Preferences" msgstr "_Voorkeuren" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:351 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:351 msgid "_Enabled" msgstr "_Ingeschakeld" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:362 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:362 msgid "E_nable All" msgstr "Alles in_schakelen" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:366 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:366 msgid "_Disable All" msgstr "Alles _uitschakelen" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:526 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:526 msgid "Enabled" msgstr "Ingeschakeld" -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:547 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:547 msgid "Plugin" msgstr "Plug-in" #. Avoid having markup in a translated string -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:634 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:634 #, c-format -msgid "The plugin '%s' could not be loaded" +msgid "The plugin “%s” could not be loaded" msgstr "De plug-in ‘%s’ kon niet geladen worden" #. Keep separate because some translations do special things #. * for the ':' and might accidentally not keep the space after it #. -#: ../libpeas-gtk/peas-gtk-plugin-manager-view.c:640 +#: libpeas-gtk/peas-gtk-plugin-manager-view.c:640 #, c-format msgid "An error occurred: %s" msgstr "Er trad een fout op: %s" #. Translators: The directory in which the demo program was compiled at -#: ../peas-demo/peas-demo.c:41 +#: peas-demo/peas-demo.c:41 msgid "Run from build directory" msgstr "Starten vanuit ‘build’-map" -#: ../peas-demo/peas-demo.c:92 +#: peas-demo/peas-demo.c:92 msgid "_Quit" msgstr "A_fsluiten" -#: ../peas-demo/peas-demo.c:108 -msgid "- libpeas demo application" -msgstr "- libpeas demo-toepassing" +#: peas-demo/peas-demo.c:108 +msgid "— libpeas demo application" +msgstr "— libpeas-demotoepassing" -#: ../tests/libpeas-gtk/plugin-manager.c:77 +#: tests/libpeas-gtk/plugin-manager.c:77 msgid "About" msgstr "Over" -#: ../tests/libpeas-gtk/plugin-manager.c:82 +#: tests/libpeas-gtk/plugin-manager.c:82 msgid "Preferences" msgstr "Voorkeuren" +#~ msgid "Plugin Manager" +#~ msgstr "Plug-in-beheer" + +#~ msgid "View" +#~ msgstr "Weergave" + +#~ msgid "Plugin Manager View" +#~ msgstr "Plug-in-beheerweergave" + +#~ msgid "Show Builtin" +#~ msgstr "Ingebouwde plug-ins tonen" + +#~ msgid "Peas Gtk" +#~ msgstr "Peas Gtk" + #~ msgid "C_onfigure" #~ msgstr "_Configureren" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/tests/libpeas/introspection/meson.build new/libpeas-1.24.1/tests/libpeas/introspection/meson.build --- old/libpeas-1.24.0/tests/libpeas/introspection/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/tests/libpeas/introspection/meson.build 2019-10-28 18:24:29.000000000 +0100 @@ -30,7 +30,7 @@ ] libintrospection_link_args = [ - '-export-dynamic', + '-Wl,--export-dynamic', ] libintrospection_lib = library( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/tests/libpeas/testing/meson.build new/libpeas-1.24.1/tests/libpeas/testing/meson.build --- old/libpeas-1.24.0/tests/libpeas/testing/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/tests/libpeas/testing/meson.build 2019-10-28 18:24:29.000000000 +0100 @@ -26,7 +26,7 @@ ] libpeas_testing_link_args = [ - '-export-dynamic', + '-Wl,--export-dynamic', ] libpeas_testing_lib = library( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/tests/libpeas-gtk/testing/meson.build new/libpeas-1.24.1/tests/libpeas-gtk/testing/meson.build --- old/libpeas-1.24.0/tests/libpeas-gtk/testing/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/tests/libpeas-gtk/testing/meson.build 2019-10-28 18:24:29.000000000 +0100 @@ -24,7 +24,7 @@ ] libpeas_gtk_testing_link_args = [ - '-export-dynamic', + '-Wl,--export-dynamic', ] libpeas_gtk_testing_lib = library( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpeas-1.24.0/tests/testing-util/meson.build new/libpeas-1.24.1/tests/testing-util/meson.build --- old/libpeas-1.24.0/tests/testing-util/meson.build 2019-09-10 02:41:29.000000000 +0200 +++ new/libpeas-1.24.1/tests/testing-util/meson.build 2019-10-28 18:24:29.000000000 +0100 @@ -22,7 +22,7 @@ ] libtesting_util_link_args = [ - '-export-dynamic', + '-Wl,--export-dynamic', ] libtesting_util_lib = library(
