summaryrefslogtreecommitdiff
path: root/noncore
authordwmw2 <dwmw2>2002-09-20 13:02:13 (UTC)
committer dwmw2 <dwmw2>2002-09-20 13:02:13 (UTC)
commitcc311b771843c289fadbe9a301e432963b906208 (patch) (unidiff)
tree02665007b0be38bc29f840e497c5c14757c1f4b0 /noncore
parent6cbf7b19d7bb3fcd2471dbaa531a7b2ae05f0fcc (diff)
downloadopie-cc311b771843c289fadbe9a301e432963b906208.zip
opie-cc311b771843c289fadbe9a301e432963b906208.tar.gz
opie-cc311b771843c289fadbe9a301e432963b906208.tar.bz2
tr()
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sshkeys/sshkeys.cpp14
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()
79 if (!ret) { 79 if (!ret) {
80 log_text("Error running ssh-add"); 80 log_text(tr("Error running ssh-add"));
81 return; 81 return;
@@ -169,3 +169,3 @@ void SSHKeysApp::ssh_add_exited(OProcess *proc)
169 169
170 log_text(QString("ssh-add failed")); 170 log_text(QString(tr("ssh-add failed")));
171 } 171 }
@@ -193,6 +193,6 @@ void SSHKeysApp::doAddButton()
193 addprocess << "ssh-add" << "--" << KeyFileName->currentText(); 193 addprocess << "ssh-add" << "--" << KeyFileName->currentText();
194 log_text(QString("Running ssh-add -- ") + KeyFileName->currentText()); 194 log_text(QString(tr("Running ssh-add -- ")) + KeyFileName->currentText());
195 } else { 195 } else {
196 addprocess << "ssh-add"; 196 addprocess << "ssh-add";
197 log_text("Running ssh-add"); 197 log_text(tr("Running ssh-add"));
198 } 198 }
@@ -200,3 +200,3 @@ void SSHKeysApp::doAddButton()
200 if (!ret) { 200 if (!ret) {
201 log_text("Error running ssh-add"); 201 log_text(tr("Error running ssh-add"));
202 doRefreshListButton(); 202 doRefreshListButton();
@@ -219,3 +219,3 @@ void SSHKeysApp::doRemoveAllButton()
219 219
220 log_text("Running ssh-add -D"); 220 log_text(tr("Running ssh-add -D"));
221 sshadd_process << "ssh-add" << "-D"; 221 sshadd_process << "ssh-add" << "-D";
@@ -223,3 +223,3 @@ void SSHKeysApp::doRemoveAllButton()
223 if (!ret) { 223 if (!ret) {
224 log_text("Error running ssh-add"); 224 log_text(tr("Error running ssh-add"));
225 } 225 }