diff --git a/CMakeLists.txt b/CMakeLists.txt index d147a18..168b306 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 2.8.12 ) ##### general package setup ##################### -project( ksshaskpass ) +project( tdesshaskpass ) set( VERSION 14.0.11 ) diff --git a/INSTALL b/INSTALL index 5c61726..63738bb 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,7 @@ Basic Installation ================== -ksshaskpass relies on cmake to build. +tdesshaskpass relies on cmake to build. Here are suggested default options: diff --git a/README b/README index 5d0115c..1f852b9 100644 --- a/README +++ b/README @@ -1,8 +1,8 @@ - Ksshaskpass - a TDE version of ssh-askpass with TDEWallet support + tdesshaskpass - a TDE version of ssh-askpass with TDEWallet support -Ksshaskpass is a TDE version of ssh-askpass. The usual TDE dialog box is +tdesshaskpass is a TDE version of ssh-askpass. The usual TDE dialog box is used to enter a password. It includes integrated support for TDEWallet. @@ -17,7 +17,7 @@ Features: CONTRIBUTING ============== -If you wish to contribute to ksshaskpass, you might do so: +If you wish to contribute to tdesshaskpass, you might do so: - TDE Gitea Workspace (TGW) collaboration tool. https://mirror.git.trinitydesktop.org/gitea diff --git a/doc/man/ksshaskpass.1 b/doc/man/tdesshaskpass.1 similarity index 85% rename from doc/man/ksshaskpass.1 rename to doc/man/tdesshaskpass.1 index e9dfcaf..1ab9232 100644 --- a/doc/man/ksshaskpass.1 +++ b/doc/man/tdesshaskpass.1 @@ -1,10 +1,10 @@ -.TH KSSHASKPASS 1 +.TH TDESSHASKPASS 1 .SH NAME -ksshaskpass \- prompts a user for a passphrase using TDE +tdesshaskpass \- prompts a user for a passphrase using TDE .SH SYNOPSIS -.B ksshaskpass +.B tdesshaskpass .SH DESCRIPTION -.B ksshaskpass +.B tdesshaskpass is a TDE-based passphrase dialog for use with OpenSSH. It is intended to be called by the .BR ssh\-add (1) @@ -21,7 +21,7 @@ or as one of the TDE startup programs, for example. .PP In order to be called automatically by .BR ssh\-add , -.B ksshaskpass +.B tdesshaskpass should be installed as .IR /usr/bin/ssh\-askpass . .SH AUTHOR diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt index fefbe5b..e4026a0 100644 --- a/src/CMakeL10n.txt +++ b/src/CMakeL10n.txt @@ -1,3 +1,3 @@ ##### create translation templates ############## -tde_l10n_create_template( "messages/ksshaskpass" ) +tde_l10n_create_template( "messages/tdesshaskpass" ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0c49fbb..016a8c6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -17,7 +17,7 @@ link_directories( tde_add_executable( ${PROJECT_NAME} AUTOMOC SOURCES - ksshaskpass.cpp + tdesshaskpass.cpp LINK tdeui-shared tdeio-shared diff --git a/src/ksshaskpass.cpp b/src/tdesshaskpass.cpp similarity index 89% rename from src/ksshaskpass.cpp rename to src/tdesshaskpass.cpp index 036b3dc..3914838 100644 --- a/src/ksshaskpass.cpp +++ b/src/tdesshaskpass.cpp @@ -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(); diff --git a/translations/messages/ksshaskpass.pot b/translations/messages/tdesshaskpass.pot similarity index 80% rename from translations/messages/ksshaskpass.pot rename to translations/messages/tdesshaskpass.pot index 34ba65c..8f96075 100644 --- a/translations/messages/ksshaskpass.pot +++ b/translations/messages/tdesshaskpass.pot @@ -27,24 +27,24 @@ msgid "" "Your emails" msgstr "" -#: ksshaskpass.cpp:31 +#: tdesshaskpass.cpp:31 msgid "Dialog message. Leave undefined for default message" msgstr "" -#: ksshaskpass.cpp:40 ksshaskpass.cpp:102 -msgid "Ksshaskpass" +#: tdesshaskpass.cpp:40 tdesshaskpass.cpp:102 +msgid "tdesshaskpass" msgstr "" -#: ksshaskpass.cpp:42 +#: tdesshaskpass.cpp:42 msgid "TDE version of ssh-askpass" msgstr "" -#: ksshaskpass.cpp:45 +#: tdesshaskpass.cpp:45 msgid "" -"Ksshaskpass allows you to interactively prompt users for a passphrase for " +"tdesshaskpass allows you to interactively prompt users for a passphrase for " "ssh-add" msgstr "" -#: ksshaskpass.cpp:66 +#: tdesshaskpass.cpp:66 msgid "Please enter password" msgstr ""