Fix the broken widget expansion and translation updates

This commit is contained in:
Matej Habrnal 2016-02-18 14:59:12 +01:00
parent e35d9eb1c7
commit 54131d237d
4 changed files with 111043 additions and 2 deletions

110963
0004-Translation-updates.patch Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,41 @@
From 7f7ca8e4868ce7a6ac4dfa2a3f54c7df66b7f925 Mon Sep 17 00:00:00 2001
From: Yuri Chornoivan <yurchor@ukr.net>
Date: Fri, 12 Feb 2016 22:58:13 +0200
Subject: [PATCH] Fix minor typos
---
src/plugins/report_CentOSBugTracker.xml.in | 4 ++--
src/plugins/reporter-ureport.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/plugins/report_CentOSBugTracker.xml.in b/src/plugins/report_CentOSBugTracker.xml.in
index 0e2adbe..89bfc8b 100644
--- a/src/plugins/report_CentOSBugTracker.xml.in
+++ b/src/plugins/report_CentOSBugTracker.xml.in
@@ -25,8 +25,8 @@
<_description>CentOS Bug Tracker account password</_description>
</option>
<option type="bool" name="Mantisbt_CreatePrivate">
- <_label>Restric access</_label>
- <_note-html>The issue will be accessible only to users with access to 'Pivate Issues'</_note-html>
+ <_label>Restrict access</_label>
+ <_note-html>The issue will be accessible only to users with access to 'Private Issues'</_note-html>
<default-value>no</default-value>
</option>
<advanced-options>
diff --git a/src/plugins/reporter-ureport.c b/src/plugins/reporter-ureport.c
index f49ebc8..52a05f5 100644
--- a/src/plugins/reporter-ureport.c
+++ b/src/plugins/reporter-ureport.c
@@ -105,7 +105,7 @@ int main(int argc, char **argv)
OPT_STRING('r', "report-result-type", &report_result_type, "REPORT_RESULT_TYPE",
_("use REPORT_RESULT_TYPE when looking for FIELD in reported_to (used only with -L)")),
OPT_STRING('T', "type", &attach_type, "ATTACHMENT_TYPE",
- _("attach DATA as ureporte attachment ATTACHMENT_TYPE (used only with -l|-L)")),
+ _("attach DATA as ureport attachment ATTACHMENT_TYPE (used only with -l|-L)")),
OPT_END(),
};
--
2.5.0

View File

@ -0,0 +1,30 @@
From 75794fcb6ee9c52930ff852eed3caa0520bac007 Mon Sep 17 00:00:00 2001
From: Matej Habrnal <mhabrnal@redhat.com>
Date: Thu, 18 Feb 2016 14:51:46 +0100
Subject: [PATCH] wizard: fix the broken widget expansion
GtkScrolledWindow widget is no longer expanded automatically.
Fixes #407
Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>
---
src/gui-wizard-gtk/wizard.glade | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/gui-wizard-gtk/wizard.glade b/src/gui-wizard-gtk/wizard.glade
index e1d2183..d79cc40 100644
--- a/src/gui-wizard-gtk/wizard.glade
+++ b/src/gui-wizard-gtk/wizard.glade
@@ -155,6 +155,8 @@
<object class="GtkScrolledWindow" id="scrolledwindow1">
<property name="visible">True</property>
<property name="can_focus">True</property>
+ <property name="hexpand">True</property>
+ <property name="vexpand">True</property>
<property name="shadow_type">in</property>
<child>
<object class="GtkTreeView" id="tv_sensitive_words">
--
2.5.0

View File

@ -7,7 +7,7 @@
Summary: Generic library for reporting various problems
Name: libreport
Version: 2.6.4
Release: 2%{?dist}
Release: 3%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: https://abrt.readthedocs.org/
@ -18,7 +18,10 @@ Source1: autogen.sh
# i=0; for p in `ls 0*.patch`; do printf "Patch%04d: %s\n" $i $p; ((i++)); done
Patch0001: 0001-wizard-remove-the-code-correcting-Bugzilla-groups.patch
Patch0002: 0002-wizard-fix-the-broken-Show-log-widget.patch
#Patch0003: 0003-translations-update-zanata-configuration.patch
Patch0004: 0004-Translation-updates.patch
Patch0005: 0005-Fix-minor-typos.patch
Patch0006: 0006-wizard-fix-the-broken-widget-expansion.patch
# git is need for '%%autosetup -S git' which automatically applies all the
# patches above. Please, be aware that the patches must be generated
@ -740,6 +743,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
* Thu Feb 18 2016 Matej Habrnal <mhabrnal@redhat.com> 2.6.4-3
- Translation updates
- wizard: fix the broken widget expansion
* Wed Feb 10 2016 Matej Habrnal <mhabrnal@redhat.com> 2.6.4-2
- wizard: fix the broken "Show log" widget
- Resolves: #1303326