Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-nfs-client for openSUSE:Factory checked in at 2022-05-14 22:52:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-nfs-client (Old) and /work/SRC/openSUSE:Factory/.yast2-nfs-client.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-nfs-client" Sat May 14 22:52:17 2022 rev:94 rq:976606 version:4.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-nfs-client/yast2-nfs-client.changes 2022-04-08 00:27:57.234163921 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-nfs-client.new.1538/yast2-nfs-client.changes 2022-05-14 22:52:23.731008397 +0200 @@ -1,0 +2,6 @@ +Wed May 11 13:12:14 UTC 2022 - Josef Reidinger <jreidin...@suse.com> + +- Fix localization of NFS Version widget values (bsc#1198076) +- 4.5.1 + +------------------------------------------------------------------- @@ -4 +10 @@ -- Bump version to 4.5.0 (#bsc1198109) +- Bump version to 4.5.0 (bsc#1198109) Old: ---- yast2-nfs-client-4.5.0.tar.bz2 New: ---- yast2-nfs-client-4.5.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-nfs-client.spec ++++++ --- /var/tmp/diff_new_pack.c6NNwm/_old 2022-05-14 22:52:24.299009107 +0200 +++ /var/tmp/diff_new_pack.c6NNwm/_new 2022-05-14 22:52:24.303009112 +0200 @@ -17,7 +17,7 @@ Name: yast2-nfs-client -Version: 4.5.0 +Version: 4.5.1 Release: 0 URL: https://github.com/yast/yast-nfs-client Summary: YaST2 - NFS Configuration ++++++ yast2-nfs-client-4.5.0.tar.bz2 -> yast2-nfs-client-4.5.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-client-4.5.0/package/yast2-nfs-client.changes new/yast2-nfs-client-4.5.1/package/yast2-nfs-client.changes --- old/yast2-nfs-client-4.5.0/package/yast2-nfs-client.changes 2022-04-06 15:34:59.000000000 +0200 +++ new/yast2-nfs-client-4.5.1/package/yast2-nfs-client.changes 2022-05-12 14:25:10.000000000 +0200 @@ -1,7 +1,13 @@ ------------------------------------------------------------------- +Wed May 11 13:12:14 UTC 2022 - Josef Reidinger <jreidin...@suse.com> + +- Fix localization of NFS Version widget values (bsc#1198076) +- 4.5.1 + +------------------------------------------------------------------- Wed Apr 06 13:24:58 UTC 2022 - Ladislav Slez??k <lsle...@suse.cz> -- Bump version to 4.5.0 (#bsc1198109) +- Bump version to 4.5.0 (bsc#1198109) ------------------------------------------------------------------- Fri Feb 4 13:54:00 UTC 2022 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-client-4.5.0/package/yast2-nfs-client.spec new/yast2-nfs-client-4.5.1/package/yast2-nfs-client.spec --- old/yast2-nfs-client-4.5.0/package/yast2-nfs-client.spec 2022-04-06 15:34:59.000000000 +0200 +++ new/yast2-nfs-client-4.5.1/package/yast2-nfs-client.spec 2022-05-12 14:25:10.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-nfs-client -Version: 4.5.0 +Version: 4.5.1 Release: 0 Url: https://github.com/yast/yast-nfs-client Summary: YaST2 - NFS Configuration diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-nfs-client-4.5.0/src/lib/y2nfs_client/widgets/nfs_version.rb new/yast2-nfs-client-4.5.1/src/lib/y2nfs_client/widgets/nfs_version.rb --- old/yast2-nfs-client-4.5.0/src/lib/y2nfs_client/widgets/nfs_version.rb 2022-04-06 15:34:59.000000000 +0200 +++ new/yast2-nfs-client-4.5.1/src/lib/y2nfs_client/widgets/nfs_version.rb 2022-05-12 14:25:10.000000000 +0200 @@ -27,11 +27,8 @@ # Widget to select a NFS version class NfsVersion include Yast::UIShortcuts - extend Yast::I18n include Yast::I18n - textdomain "nfs" - # Constructor # # @param initial_version [Y2Storage::Filesystems::NfsVersion] @@ -87,15 +84,15 @@ def label_for(version) case version.value when "any" - N_("Any (Highest Available)") + _("Any (Highest Available)") when "3" - N_("Force NFSv3") + _("Force NFSv3") when "4" - N_("Force NFSv4") + _("Force NFSv4") when "4.1" - N_("Force pNFS (v4.1)") + _("Force pNFS (v4.1)") when "4.2" - N_("Force NFSv4.2") + _("Force NFSv4.2") else version.value end