Skip to content

Commit

Permalink
Fixed user-visible messages (bsc#1084015)
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Feb 17, 2020
1 parent 3c7b160 commit c5bde51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/include/dhcp-server/dialogs2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2059,7 +2059,7 @@ def OtherOptionsValidate(key, event)
UI.SetFocus(Id("other_opts"))
Popup.Error(
Builtins.sformat(
_("\"-%1\" is not a valid DHCP server commandline option"),
_("\"-%1\" is not a valid DHCP server commandline option."),
k
)
)
Expand All @@ -2070,7 +2070,7 @@ def OtherOptionsValidate(key, event)
UI.SetFocus(Id("other_opts"))
Popup.Error(
Builtins.sformat(
_("DHCP server commandline option \"-%1\" requires an argument"),
_("DHCP server commandline option \"-%1\" requires an argument."),
k
)
)
Expand Down
4 changes: 2 additions & 2 deletions src/include/dhcp-server/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ def initialize_dhcp_server_helps(include_target)
# help text
"other_options" => _(
"<p><b><big>DHCP Server Start-Up Arguments</big></b><br>\n" +
"Here you can specify parameters that you want DHCP Server to be started with \n" +
"Here you can specify parameters that you want the DHCP Server to be started with \n" +
"(e.g. \"-p 1234\") for a non-standard port to listen on). For all possible options,\n" +
"consult dhcpd manual page. If left blank, default values will be used.</p>"
"consult the dhcpd manual page. If left blank, default values will be used.</p>"
),
# Wizard Installation - Step 1 (version for expert UI)
"card_selection_expert" => _(
Expand Down

0 comments on commit c5bde51

Please sign in to comment.