author | dwmw2 <dwmw2> | 2002-09-20 13:02:13 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-09-20 13:02:13 (UTC) |
commit | cc311b771843c289fadbe9a301e432963b906208 (patch) (side-by-side diff) | |
tree | 02665007b0be38bc29f840e497c5c14757c1f4b0 | |
parent | 6cbf7b19d7bb3fcd2471dbaa531a7b2ae05f0fcc (diff) | |
download | opie-cc311b771843c289fadbe9a301e432963b906208.zip opie-cc311b771843c289fadbe9a301e432963b906208.tar.gz opie-cc311b771843c289fadbe9a301e432963b906208.tar.bz2 |
tr()
-rw-r--r-- | noncore/settings/sshkeys/sshkeys.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/noncore/settings/sshkeys/sshkeys.cpp b/noncore/settings/sshkeys/sshkeys.cpp index 5095d16..701356a 100644 --- a/noncore/settings/sshkeys/sshkeys.cpp +++ b/noncore/settings/sshkeys/sshkeys.cpp @@ -79,3 +79,3 @@ void SSHKeysApp::doRefreshListButton() if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); return; @@ -169,3 +169,3 @@ void SSHKeysApp::ssh_add_exited(OProcess *proc) - log_text(QString("ssh-add failed")); + log_text(QString(tr("ssh-add failed"))); } @@ -193,6 +193,6 @@ void SSHKeysApp::doAddButton() addprocess << "ssh-add" << "--" << KeyFileName->currentText(); - log_text(QString("Running ssh-add -- ") + KeyFileName->currentText()); + log_text(QString(tr("Running ssh-add -- ")) + KeyFileName->currentText()); } else { addprocess << "ssh-add"; - log_text("Running ssh-add"); + log_text(tr("Running ssh-add")); } @@ -200,3 +200,3 @@ void SSHKeysApp::doAddButton() if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); doRefreshListButton(); @@ -219,3 +219,3 @@ void SSHKeysApp::doRemoveAllButton() - log_text("Running ssh-add -D"); + log_text(tr("Running ssh-add -D")); sshadd_process << "ssh-add" << "-D"; @@ -223,3 +223,3 @@ void SSHKeysApp::doRemoveAllButton() if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); } |