Skip to content

Commit

Permalink
adapted suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
schubi2 committed Nov 8, 2017
1 parent 4eafdf0 commit 7a58cde
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/lib/registration/ui/base_system_registration_dialog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,16 @@ def help_text
# @return [Boolean] true when skipping has been confirmed
def show_skipping_warning
# Popup question: confirm skipping the registration
// TRANSLATORS:
// %{media_name} is the media name (e.g. SLE-15-Packages),
// %{download_url} is an URL link (e.g. https://download.suse.com)
warning = _("Without registration, update-channels will not be\n" \
"configured. This disables updates and security fixes.\n\n" \
"A full system can be installed using the\n" \
"%{media_name} media from https://download.suse.com.\n" \
"%{media_name} media from %{download_url}.\n" \
"Without these media only a minimum system is available\n" \
"in this installation.") % {media_name: "SLE-15-Packages"}
"in this installation.")
% {media_name: "SLE-15-Packages", download_url: "https://download.suse.com"}
Yast::Popup.Warning(warning)
end

Expand Down

0 comments on commit 7a58cde

Please sign in to comment.