Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-storage-ng for
openSUSE:Factory checked in at 2023-04-02 19:16:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-storage-ng (Old)
and /work/SRC/openSUSE:Factory/.yast2-storage-ng.new.9019 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-storage-ng"
Sun Apr 2 19:16:49 2023 rev:139 rq:1076469 version:4.6.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-storage-ng/yast2-storage-ng.changes
2023-03-24 15:15:45.969415918 +0100
+++
/work/SRC/openSUSE:Factory/.yast2-storage-ng.new.9019/yast2-storage-ng.changes
2023-04-02 19:16:50.204361052 +0200
@@ -1,0 +2,7 @@
+Fri Mar 31 11:21:44 UTC 2023 - Imobach Gonzalez Sosa <[email protected]>
+
+- Fix the translation of widgets titles in the dialog to select
+ a partitioning scheme (bsc#1209697).
+- 4.6.3
+
+-------------------------------------------------------------------
Old:
----
yast2-storage-ng-4.6.2.tar.bz2
New:
----
yast2-storage-ng-4.6.3.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-storage-ng.spec ++++++
--- /var/tmp/diff_new_pack.iyyJaN/_old 2023-04-02 19:16:50.756363823 +0200
+++ /var/tmp/diff_new_pack.iyyJaN/_new 2023-04-02 19:16:50.756363823 +0200
@@ -17,7 +17,7 @@
Name: yast2-storage-ng
-Version: 4.6.2
+Version: 4.6.3
Release: 0
Summary: YaST2 - Storage Configuration
License: GPL-2.0-only OR GPL-3.0-only
++++++ yast2-storage-ng-4.6.2.tar.bz2 -> yast2-storage-ng-4.6.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.6.2/package/yast2-storage-ng.changes
new/yast2-storage-ng-4.6.3/package/yast2-storage-ng.changes
--- old/yast2-storage-ng-4.6.2/package/yast2-storage-ng.changes 2023-03-20
18:42:53.000000000 +0100
+++ new/yast2-storage-ng-4.6.3/package/yast2-storage-ng.changes 2023-03-31
15:38:33.000000000 +0200
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Fri Mar 31 11:21:44 UTC 2023 - Imobach Gonzalez Sosa <[email protected]>
+
+- Fix the translation of widgets titles in the dialog to select
+ a partitioning scheme (bsc#1209697).
+- 4.6.3
+
+-------------------------------------------------------------------
Mon Mar 20 16:42:45 UTC 2023 - Ladislav Slezák <[email protected]>
- Fixed crash in the proposal code when the requested candidate
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-storage-ng-4.6.2/package/yast2-storage-ng.spec
new/yast2-storage-ng-4.6.3/package/yast2-storage-ng.spec
--- old/yast2-storage-ng-4.6.2/package/yast2-storage-ng.spec 2023-03-20
18:42:53.000000000 +0100
+++ new/yast2-storage-ng-4.6.3/package/yast2-storage-ng.spec 2023-03-31
15:38:33.000000000 +0200
@@ -16,7 +16,7 @@
#
Name: yast2-storage-ng
-Version: 4.6.2
+Version: 4.6.3
Release: 0
Summary: YaST2 - Storage Configuration
License: GPL-2.0-only OR GPL-3.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-storage-ng-4.6.2/src/lib/y2storage/dialogs/guided_setup/select_scheme.rb
new/yast2-storage-ng-4.6.3/src/lib/y2storage/dialogs/guided_setup/select_scheme.rb
---
old/yast2-storage-ng-4.6.2/src/lib/y2storage/dialogs/guided_setup/select_scheme.rb
2023-03-20 18:42:53.000000000 +0100
+++
new/yast2-storage-ng-4.6.3/src/lib/y2storage/dialogs/guided_setup/select_scheme.rb
2023-03-31 15:38:33.000000000 +0200
@@ -109,10 +109,8 @@
CheckBox(
Id(:separate_vgs),
format(
- # TRANSLATORS: %{widget_label} refers to the label of the
widget. %{paths} is a
- # comma separated list of paths
- _("%{widget_label}\n(%{paths})"),
- widget_label: WIDGET_LABELS[:use_separate_vgs],
+ "%{widget_label}\n(%{paths})",
+ widget_label: _(WIDGET_LABELS[:use_separate_vgs]),
paths:
separated_volume_groups.map(&:mount_point).join(", ")
)
)
@@ -123,7 +121,7 @@
def enable_disk_encryption
VBox(
- Left(CheckBox(Id(:encryption), Opt(:notify),
WIDGET_LABELS[:enable_disk_encryption])),
+ Left(CheckBox(Id(:encryption), Opt(:notify),
_(WIDGET_LABELS[:enable_disk_encryption]))),
VSpacing(0.2),
Left(
HBox(
@@ -201,7 +199,7 @@
"so make sure not to lose it!</i>" \
"</p>"
),
- disk_encryption_label: WIDGET_LABELS[:use_disk_encryption]
+ disk_encryption_label: _(WIDGET_LABELS[:enable_disk_encryption])
)
# rubocop:enable Metrics/MethodLength
end
@@ -211,7 +209,7 @@
format(
_("<p><b>%{widget_label}:</b> indicates to the <i>Guided Setup</i>
that you want " \
"to put some of those special paths in an isolated Volume
Group.</p>"),
- widget_label: WIDGET_LABELS[:use_separate_vgs]
+ widget_label: _(WIDGET_LABELS[:use_separate_vgs])
)
end