setup: clarify why personal info is needed on setup page

This commit is contained in:
Hylke Bons 2011-12-02 14:52:34 +01:00
parent f78c6807db
commit e53690d3c3
2 changed files with 9 additions and 4 deletions

View file

@ -72,8 +72,8 @@ namespace SparkleShare {
case PageType.Setup: { case PageType.Setup: {
Header = "Welcome to SparkleShare!"; Header = "Welcome to SparkleShare!";
Description = "Before we can create a SparkleShare folder on this " + Description = "We'll need some info to mark your changes in the event log. " +
"computer, we need some information from you."; "Don't worry, this stays between you and your peers.";
FullNameLabel = new NSTextField () { FullNameLabel = new NSTextField () {
@ -150,6 +150,11 @@ namespace SparkleShare {
Buttons.Add (ContinueButton); Buttons.Add (ContinueButton);
Controller.CheckSetupPage (
FullNameTextField.StringValue,
EmailTextField.StringValue
);
break; break;
} }

View file

@ -73,8 +73,8 @@ namespace SparkleShare {
case PageType.Setup: { case PageType.Setup: {
Header = _("Welcome to SparkleShare!"); Header = _("Welcome to SparkleShare!");
Description = _("Before we can create a SparkleShare folder on this " + Description = "We'll need some info to mark your changes in the event log. " +
"computer, we need a few bits of information from you."); "Don't worry, this stays between you and your peers.";
Table = new Table (4, 2, true) { Table = new Table (4, 2, true) {
RowSpacing = 6 RowSpacing = 6