|
|
|
@ -36,14 +36,14 @@ int main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
TDEAboutData about (
|
|
|
|
|
"Ksshaskpass", // appName
|
|
|
|
|
I18N_NOOP("Ksshaskpass"), // programName
|
|
|
|
|
"tdesshaskpass", // appName
|
|
|
|
|
I18N_NOOP("tdesshaskpass"), // programName
|
|
|
|
|
"0.4.1", // version
|
|
|
|
|
I18N_NOOP("TDE version of ssh-askpass"), // shortDescription
|
|
|
|
|
TDEAboutData::License_GPL, // licenseType
|
|
|
|
|
"(c) 2006 Hans van Leeuwen\n(c) 2008 Armin Berres", // copyrightStatement statement
|
|
|
|
|
I18N_NOOP("Ksshaskpass allows you to interactively prompt users for a passphrase for ssh-add"), // text
|
|
|
|
|
"http://www.kde-apps.org/content/edit.php?content=50971", // homePageAddress
|
|
|
|
|
I18N_NOOP("tdesshaskpass allows you to interactively prompt users for a passphrase for ssh-add"), // text
|
|
|
|
|
"https://mirror.git.trinitydesktop.org/gitea/TDE/tdesshaskpass", // homePageAddress
|
|
|
|
|
"trigger@space-based.de" // bugsEmailAddress
|
|
|
|
|
);
|
|
|
|
|
about.addAuthor("Armin Berres", 0, "trigger@space-based.de");
|
|
|
|
@ -99,7 +99,7 @@ int main(int argc, char **argv)
|
|
|
|
|
// create the password dialog, but only show "Enable Keep" button, if the wallet is opened
|
|
|
|
|
KPasswordDialog *kpd = new KPasswordDialog(KPasswordDialog::Password, wallet, 0);
|
|
|
|
|
kpd->setPrompt(dialog);
|
|
|
|
|
kpd->setCaption(i18n("Ksshaskpass"));
|
|
|
|
|
kpd->setCaption(i18n("tdesshaskpass"));
|
|
|
|
|
kpd->setAllowEmptyPasswords(false);
|
|
|
|
|
// We don't want to dump core when the password dialog is shown, because it could contain the entered password.
|
|
|
|
|
kpd->disableCoreDumps();
|