diff options
author | Slávek Banko <[email protected]> | 2021-08-26 14:29:14 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-08-26 15:42:32 +0200 |
commit | 4d49d83565a99e1c41e3a7e8e0c2732afcd83b16 (patch) | |
tree | 03aeae3eceae2ca6bfc27fe84c932ef20f04bab5 /src | |
parent | 031ded8cf8bce48796f34575958d60495b3de42b (diff) | |
download | tdesshaskpass-4d49d83565a99e1c41e3a7e8e0c2732afcd83b16.tar.gz tdesshaskpass-4d49d83565a99e1c41e3a7e8e0c2732afcd83b16.zip |
Rebrand K => TDE.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeL10n.txt | 2 | ||||
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/tdesshaskpass.cpp (renamed from src/ksshaskpass.cpp) | 10 |
3 files changed, 7 insertions, 7 deletions
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 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 "[email protected]" // bugsEmailAddress ); about.addAuthor("Armin Berres", 0, "[email protected]"); @@ -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(); |