setup: Mention Client ID more explicitly on error page. Closes #1227

This commit is contained in:
Hylke Bons 2013-05-28 00:01:18 +01:00
parent 384ea84f62
commit f82a7b9bfc
3 changed files with 3 additions and 3 deletions

View file

@ -391,7 +391,7 @@ namespace SparkleShare {
};
Label label_two = new Label () {
Text = "Do you have access rights to this remote project?",
Text = "Is this computer's Client ID known by the host?",
Wrap = true,
Xalign = 0
};

View file

@ -412,7 +412,7 @@ namespace SparkleShare {
"</style>" +
"<ul>" +
" <li><b>" + Controller.PreviousUrl + "</b> is the address we've compiled. Does this look alright?</li>" +
" <li>Do you have access rights to this remote project?</li>" +
" <li>Is this computer's Client ID known by the host?</li>" +
"</ul>";
if (warnings.Length > 0) {

View file

@ -495,7 +495,7 @@ namespace SparkleShare {
help_block.Inlines.Add (new Bold (new Run (Controller.PreviousUrl)));
help_block.Inlines.Add (" is the address we've compiled. Does this look alright?\n\n");
help_block.Inlines.Add ("Do you have access rights to this remote project?");
help_block.Inlines.Add ("Is this computer's Client ID known by the host??");
if (warnings.Length > 0) {
bullets_block.Text += "\n\n•";