setup: advice user to choose a unique password on crypto setup. #1055

This commit is contained in:
Hylke Bons 2012-11-07 13:16:30 +00:00
parent 621712a436
commit 30336f760d
3 changed files with 8 additions and 9 deletions

View file

@ -511,9 +511,9 @@ namespace SparkleShare {
case PageType.CryptoSetup: {
Header = "Set up file encryption";
Description = "This project is supposed to be encrypted, but it doesn't yet have a password set. Please provide one below.";
Header = "Set up file encryption";
Description = "Please a provide a strong password that you don't use elsewhere below:";
Label password_label = new Label ("<b>" + "Password:" + "</b>") {
UseMarkup = true,
Xalign = 1

View file

@ -582,7 +582,7 @@ namespace SparkleShare {
if (type == PageType.CryptoSetup) {
Header = "Set up file encryption";
Description = "This project is supposed to be encrypted, but it doesn't yet have a password set. Please provide one below:";
Description = "Please a provide a strong password that you don't use elsewhere below:";
PasswordLabel = new NSTextField () {

View file

@ -543,10 +543,9 @@ namespace SparkleShare {
}
case PageType.CryptoSetup: {
Header = "Set up file encryption";
Description = "This project is supposed to be encrypted, but it doesn't yet have a password set. Please provide one below.";
Description = "Please a provide a strong password that you don't use elsewhere below:";
TextBlock password_label = new TextBlock () {
Text = "Password:",
FontWeight = FontWeights.Bold
@ -567,9 +566,9 @@ namespace SparkleShare {
};
TextBlock info_label = new TextBlock () {
Text = "This password can't be changed later, and your files can't be recovered if it's forgotten.",
Text = "This password can't be changed later, and your files can't be recovered if it's forgotten.",
TextWrapping = TextWrapping.Wrap,
Width = 315
Width = 315
};
Image warning_image = new Image () {