Skip to content

Commit

Permalink
display evaluation help text
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed May 9, 2014
1 parent 18ab0c8 commit 253d6d1
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/clients/inst_scc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -486,11 +486,20 @@ def addon_regcodes_dialog_content(addons)
box1 = addon_regcode_items(addons)
end

HBox(
HSpacing(Opt(:hstretch), 3),
box1,
box2 ? box2 : Empty(),
HSpacing(Opt(:hstretch), 3)
VBox(
(UI.TextMode && addons.size > 4) ? Empty() :
VBox(
Label(_("Please enter a registration code for each of the Extension listed below.\n" +
"In case you do not have a registration code for an extension you will\n" +
"be granted a 60 day evolution period.")),
VSpacing(1)
),
HBox(
HSpacing(Opt(:hstretch), 3),
box1,
box2 ? box2 : Empty(),
HSpacing(Opt(:hstretch), 3)
)
)
end

Expand Down

0 comments on commit 253d6d1

Please sign in to comment.