fix typos, ignore libpciaccess, translation updates

Resolves: #1064209
This commit is contained in:
Jakub Filak 2014-02-18 15:00:04 +01:00
parent 533ee8c2c1
commit 41471489b0
5 changed files with 2611 additions and 1 deletions

View File

@ -0,0 +1,26 @@
From 5dc6032eeb0ca8036200e6e4b93845141de5412e Mon Sep 17 00:00:00 2001
From: Martin Milata <mmilata@redhat.com>
Date: Tue, 11 Feb 2014 17:48:27 +0100
Subject: [LIBREPORT PATCH 07/11] Fix typo in error message
Signed-off-by: Martin Milata <mmilata@redhat.com>
---
src/plugins/ureport.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/ureport.c b/src/plugins/ureport.c
index b57eada..1ac2d13 100644
--- a/src/plugins/ureport.c
+++ b/src/plugins/ureport.c
@@ -335,7 +335,7 @@ static struct ureport_server_response *get_server_response(post_state_t *post_st
if (post_state->http_resp_code == 503)
{
- error_msg(_("The server at '%s' is currently can't handle the request (got error 503)"), config->ur_url);
+ error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url);
return NULL;
}
--
1.8.3.1

View File

@ -0,0 +1,23 @@
From 2474a3a2b4e50503fb929c2753cf1f7e2ed70e1e Mon Sep 17 00:00:00 2001
From: Jakub Filak <jfilak@redhat.com>
Date: Tue, 18 Feb 2014 14:44:15 +0100
Subject: [LIBREPORT PATCH 09/11] add libpciaccess.so to the list of ignored
keywords
Closes rhbz#1066433
---
src/gui-wizard-gtk/ignored_words.conf | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/gui-wizard-gtk/ignored_words.conf b/src/gui-wizard-gtk/ignored_words.conf
index bfc1148..662a784 100644
--- a/src/gui-wizard-gtk/ignored_words.conf
+++ b/src/gui-wizard-gtk/ignored_words.conf
@@ -1,3 +1,4 @@
+libpciaccess.so
libsecret
login.so
accountsservice
--
1.8.3.1

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,26 @@
From ea49c60373b40f6fcc90c1360f3428445bec7f78 Mon Sep 17 00:00:00 2001
From: Jakub Filak <jfilak@redhat.com>
Date: Tue, 18 Feb 2014 14:51:15 +0100
Subject: [LIBREPORT PATCH 11/11] Fix type in error message
Related to rhbz#1064209
---
src/plugins/ureport.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/ureport.c b/src/plugins/ureport.c
index 1ac2d13..39d27f6 100644
--- a/src/plugins/ureport.c
+++ b/src/plugins/ureport.c
@@ -353,7 +353,7 @@ static struct ureport_server_response *get_server_response(post_state_t *post_st
if (is_error(json))
{
- error_msg(_("Unable to parse response from ureport server at '%s"), config->ur_url);
+ error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url);
log_notice("%s", post_state->body);
json_object_put(json);
return NULL;
--
1.8.3.1

View File

@ -7,7 +7,7 @@
Summary: Generic library for reporting various problems Summary: Generic library for reporting various problems
Name: libreport Name: libreport
Version: 2.1.12 Version: 2.1.12
Release: 2%{?dist} Release: 3%{?dist}
License: GPLv2+ License: GPLv2+
Group: System Environment/Libraries Group: System Environment/Libraries
URL: https://fedorahosted.org/abrt/ URL: https://fedorahosted.org/abrt/
@ -19,6 +19,10 @@ Patch0003: 0003-event-configuration-load-default-values-from-configu.patch
Patch0004: 0004-testsuite-xml-translations.patch Patch0004: 0004-testsuite-xml-translations.patch
Patch0005: 0005-testsuite-complex-testing-of-xml-locales.patch Patch0005: 0005-testsuite-complex-testing-of-xml-locales.patch
Patch0006: 0006-localization-properly-handle-locales-with-encoding-s.patch Patch0006: 0006-localization-properly-handle-locales-with-encoding-s.patch
Patch0007: 0007-Fix-typo-in-error-message.patch
Patch0009: 0009-add-libpciaccess.so-to-the-list-of-ignored-keywords.patch
Patch0010: 0010-Translation-updates.patch
Patch0011: 0011-Fix-type-in-error-message.patch
# '%%autosetup -S git' -> git # '%%autosetup -S git' -> git
BuildRequires: git BuildRequires: git
@ -628,6 +632,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog %changelog
* Tue Feb 18 2014 Jakub Filak <jfilak@redhat.com> 2.1.12-3
- fix a pair of typos in error messages
- add libpciaccess.so to the list of ignored keywords
- translation updates
- Resolves: #1064209
* Mon Feb 10 2014 Jakub Filak <jfilak@redhat.com> 2.1.12-2 * Mon Feb 10 2014 Jakub Filak <jfilak@redhat.com> 2.1.12-2
- fix loading of localized strings from XML files - fix loading of localized strings from XML files
- fix loading of default event configuration files - fix loading of default event configuration files