Skip to content

Commit

Permalink
fixed string substitution in a translated message
Browse files Browse the repository at this point in the history
Conflicts:
	package/yast2-nfs-client.changes
  • Loading branch information
lslezak committed Dec 15, 2014
1 parent b0fb2b2 commit 82a1f87
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions package/yast2-nfs-client.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Tue Nov 18 07:32:59 UTC 2014 - lslezak@suse.cz

- fixed string substitution in a translated message

-------------------------------------------------------------------
Fri Nov 7 17:00:31 CET 2014 - locilka@suse.com

- Removed obsolete service (nfsboot) handling (bnc#867766)
- 3.1.9.1

-------------------------------------------------------------------
Thu Sep 4 12:23:22 UTC 2014 - mvidner@suse.com

Expand Down
2 changes: 1 addition & 1 deletion src/modules/NfsOptions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def validate(options)
if non_value_option?(key)
next if value.nil?
# To translators: error popup
error_message = _("Unexpected value '#{value}' for option '#{key}'") % { :value => value, :key => key }
error_message = _("Unexpected value '%{value}' for option '%{key}'") % { :value => value, :key => key }
# All unknown options
elsif ! OPTIONS_WITH_VALUE.include?(key)
# To translators: error popup
Expand Down

0 comments on commit 82a1f87

Please sign in to comment.