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 @@ -56,49 +56,49 @@ SSHKeysApp::~SSHKeysApp() void SSHKeysApp::doRefreshListButton() { OProcess sshadd_process; QListViewItem *t = KeyList->firstChild(); while(t) { QListViewItem *next = t->nextSibling(); KeyList->takeItem(t); delete(t); t = next; } connect(&sshadd_process, SIGNAL(receivedStdout(OProcess*,char*,int)), this, SLOT(get_list_keys_output(OProcess*,char*,int))); keystate = KeySize; incoming_keyname=""; incoming_keysize=""; incoming_keyfingerprint=""; // log_text("Running ssh-add -l"); sshadd_process << "ssh-add" << "-l"; bool ret = sshadd_process.start(OProcess::Block, OProcess::AllOutput); if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); return; } } void SSHKeysApp::get_list_keys_output(OProcess *proc, char *buffer, int buflen) { int i; (void) proc; for (i=0; i<buflen; i++) { switch(keystate) { case Noise: noise: if (buffer[i] == '\n') { log_text(incoming_noise.local8Bit()); incoming_noise = ""; keystate = KeySize; } else { incoming_noise += buffer[i]; } break; case KeySize: @@ -146,82 +146,82 @@ void SSHKeysApp::get_list_keys_output(OProcess *proc, char *buffer, int buflen) keystate = Noise; goto noise; } break; } } } void SSHKeysApp::log_sshadd_output(OProcess *proc, char *buffer, int buflen) { (void)proc; (void)buflen; log_text(buffer); } void SSHKeysApp::ssh_add_exited(OProcess *proc) { (void)proc; doRefreshListButton(); setEnabled(TRUE); if (proc->exitStatus()) { - log_text(QString("ssh-add failed")); + log_text(QString(tr("ssh-add failed"))); } } void SSHKeysApp::add_text_changed(const QString &text) { struct stat sbuf; if (!text.length() || (!access(text.ascii(), R_OK) && !stat(text.ascii(), &sbuf) && S_ISREG(sbuf.st_mode))) AddButton->setEnabled(TRUE); else AddButton->setEnabled(FALSE); } void SSHKeysApp::doAddButton() { addprocess.clearArguments(); setEnabled(FALSE); if (KeyFileName->currentText().length()) { 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")); } bool ret = addprocess.start(OProcess::NotifyOnExit, OProcess::AllOutput); if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); doRefreshListButton(); setEnabled(TRUE); } } void SSHKeysApp::log_text(const char *text) { TextOutput->append(text); TextOutput->setCursorPosition(TextOutput->numLines()+1, 0, FALSE); } void SSHKeysApp::doRemoveAllButton() { OProcess sshadd_process; connect(&sshadd_process, SIGNAL(receivedStdout(OProcess*,char*,int)), this, SLOT(log_sshadd_output(OProcess*,char*,int))); - log_text("Running ssh-add -D"); + log_text(tr("Running ssh-add -D")); sshadd_process << "ssh-add" << "-D"; bool ret = sshadd_process.start(OProcess::Block, OProcess::AllOutput); if (!ret) { - log_text("Error running ssh-add"); + log_text(tr("Error running ssh-add")); } doRefreshListButton(); } |