diff --git a/SparkleShare/Linux/SparkleSetup.cs b/SparkleShare/Linux/SparkleSetup.cs index 01d23f47..e59125d6 100755 --- a/SparkleShare/Linux/SparkleSetup.cs +++ b/SparkleShare/Linux/SparkleSetup.cs @@ -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 ("" + "Password:" + "") { UseMarkup = true, Xalign = 1 diff --git a/SparkleShare/Mac/SparkleSetup.cs b/SparkleShare/Mac/SparkleSetup.cs index 50335942..7be067c5 100755 --- a/SparkleShare/Mac/SparkleSetup.cs +++ b/SparkleShare/Mac/SparkleSetup.cs @@ -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 () { diff --git a/SparkleShare/Windows/SparkleSetup.cs b/SparkleShare/Windows/SparkleSetup.cs index 059c5599..c55257be 100644 --- a/SparkleShare/Windows/SparkleSetup.cs +++ b/SparkleShare/Windows/SparkleSetup.cs @@ -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 () {