Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Laval <jeremie.laval@gmail.com>2012-03-30 00:08:28 +0400
committerJeremie Laval <jeremie.laval@gmail.com>2012-03-30 00:08:28 +0400
commitec10550d9dfde5141a51b9ba1f6cb9bde2c3fc9e (patch)
treeb5b5b333d9ae89e1c626ecbda52aed11c504b8ec /AppleDocWizard
parent3826c2b11a543bf04e5a8a5aa0fc4118c554cd75 (diff)
[appledocwizard] Update dialog text to fixup language errors
Diffstat (limited to 'AppleDocWizard')
-rw-r--r--AppleDocWizard/AppleDocWizardController.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/AppleDocWizard/AppleDocWizardController.cs b/AppleDocWizard/AppleDocWizardController.cs
index 2d72ef1..4e95423 100644
--- a/AppleDocWizard/AppleDocWizardController.cs
+++ b/AppleDocWizard/AppleDocWizardController.cs
@@ -77,24 +77,24 @@ namespace macdoc
var alert = new NSAlert ();
switch (finishState) {
case FinishState.NothingToDo:
- alert.MessageText = "Up-to-date";
- alert.InformativeText = "Your MonoTouch documentation is already based on the latest version of the Apple documentation";
+ alert.MessageText = "Up to date";
+ alert.InformativeText = "Your MonoTouch documentation is already based on the latest Apple documentation.";
break;
case FinishState.Processed:
alert.MessageText = "Success";
- alert.InformativeText = "Your MonoTouch documentation was successfully merged with the available Apple documentation on your system";
+ alert.InformativeText = "Your MonoTouch documentation was successfully merged with the latest Apple documentation.";
break;
case FinishState.Canceled:
- alert.MessageText = "Canceled";
- alert.InformativeText = "The update operation was canceled";
+ alert.MessageText = "Cancelled";
+ alert.InformativeText = "The update operation was cancelled.";
break;
case FinishState.Error:
- alert.MessageText = "An error occured";
- alert.InformativeText = "A fatal error occured during one of the documentation installer step";
+ alert.MessageText = "An error occurred";
+ alert.InformativeText = "A fatal error occurred during one of the merge step. Please report it.";
break;
case FinishState.NotAdmin:
alert.MessageText = "Not enough rights";
- alert.InformativeText = "You need to be an administrator to use this tool";
+ alert.InformativeText = "You need to be an administrator to use this tool.";
break;
}