author | zautrix <zautrix> | 2005-07-09 01:35:06 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-09 01:35:06 (UTC) |
commit | e27ad31c6016152449bbdaf4f9f387fa61183c37 (patch) (side-by-side diff) | |
tree | 615f3124d6f4f646287f126206ab93684caea7fb | |
parent | 3c756588a4f650fc6f2e5971d56d56b74d67bfda (diff) | |
download | kdepimpi-e27ad31c6016152449bbdaf4f9f387fa61183c37.zip kdepimpi-e27ad31c6016152449bbdaf4f9f387fa61183c37.tar.gz kdepimpi-e27ad31c6016152449bbdaf4f9f387fa61183c37.tar.bz2 |
comp fixes
-rw-r--r-- | bin/kdepim/kaddressbook/germantranslation.txt | 1 | ||||
-rw-r--r-- | bin/kdepim/korganizer/germantranslation.txt | 2 | ||||
-rw-r--r-- | microkde/kdialog.cpp | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/bin/kdepim/kaddressbook/germantranslation.txt b/bin/kdepim/kaddressbook/germantranslation.txt index 4a5122f..9532759 100644 --- a/bin/kdepim/kaddressbook/germantranslation.txt +++ b/bin/kdepim/kaddressbook/germantranslation.txt @@ -793,21 +793,22 @@ { "Port number (Default: %1)\nValid range from 1 to 65535","Port Nummer (Standard: %1)\nGültiger Bereich von 1 bis 65535" },
{ "Pi-Sync Error","Pi-Sync Fehler" },
{ "Got send file request\nwith invalid password","Erhielt "sende Datei" Anfrage\nmit ungültigem Passwort" },
{ "Got receive file request\nwith invalid password","Erhielt "empfange Datei" Anfrage\nmit ungültigem Passwort" },
{ "Wrong password: Receiving remote file failed.","Falsches Passwort: Empfangen von entfernter Datei fehlgeschlagen." },
{ "Please close error dialog on remote.","Bitte schließe Fehler-Dialog am entfernten Rechner" },
{ "Unknown error on remote.","Unbekannter Fehler am entfernten Rechner" },
{ "Pi-Sync: Connected!","Pi-Sync: Verbunden!" },
{ "Receiving file from remote...","Empfange entfernte Datei..." },
{ "Sending back synced file...","Sende synchronisierte Datei zurück..." },
{ "Do you want to\nclear all sync info\nof all profiles?","Möchten Sie wirklich\ndie Sync-Info\nfür alle Profile\nlöschen?" },
{ "Do you want to\nclear the sync\ninfo of profile\n%1?\n","Möchten Sie wirklich\ndie Sync-Info für Profil\n%1?\nlöschen" },
{ "Sorry, no valid port.Syncing cancelled.","Sorry, kein gültiger Port. Syncing abgebrochen." },
{ "Remote port number:\n(May be: 1 - 65535)","Ferne Port Nummer:\n(Darf sein: 1 - 65535)" },
{ "Writing back file ...","Schreibe Datei zurück..." },
{ "Sending back file ...","Sende Datei zurück..." },
+{ "Eeek, there I am ticklish!","Huch, da bin ich kitzlig!" },
{ "","" },
{ "","" },
{ "","" },
{ "","" },
{ "","" },
\ No newline at end of file diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt index ff5e095..ea7071d 100644 --- a/bin/kdepim/korganizer/germantranslation.txt +++ b/bin/kdepim/korganizer/germantranslation.txt @@ -1512,24 +1512,24 @@ { "Port number (Default: %1)\nValid range from 1 to 65535","Port Nummer (Standard: %1)\nGültiger Bereich von 1 bis 65535" }, { "Pi-Sync Error","Pi-Sync Fehler" }, { "Got send file request\nwith invalid password","Erhielt "sende Datei" Anfrage\nmit ungültigem Passwort" }, { "Got receive file request\nwith invalid password","Erhielt "empfange Datei" Anfrage\nmit ungültigem Passwort" }, { "Wrong password: Receiving remote file failed.","Falsches Passwort: Empfangen von entfernter Datei fehlgeschlagen." }, { "Please close error dialog on remote.","Bitte schließe Fehler-Dialog am entfernten Rechner" }, { "Unknown error on remote.","Unbekannter Fehler am entfernten Rechner" }, { "Pi-Sync: Connected!","Pi-Sync: Verbunden!" }, { "Receiving file from remote...","Empfange entfernte Datei..." }, { "Sending back synced file...","Sende synchronisierte Datei zurück..." }, { "Do you want to\nclear all sync info\nof all profiles?","Möchten Sie wirklich\ndie Sync-Info\nfür alle Profile\nlöschen?" }, { "Do you want to\nclear the sync\ninfo of profile\n%1?\n","Möchten Sie wirklich\ndie Sync-Info für Profil\n%1?\nlöschen" }, { "Sorry, no valid port.Syncing cancelled.","Sorry, kein gültiger Port. Syncing abgebrochen." }, { "Remote port number:\n(May be: 1 - 65535)","Ferne Port Nummer:\n(Darf sein: 1 - 65535)" }, { "Writing back file ...","Schreibe Datei zurück..." }, { "Sending back file ...","Sende Datei zurück..." }, -{ "","" }, +{ "Eeek, there I am ticklish!","Hihi, da bin ich kitzlig!" }, { "","" }, { "","" }, { "","" }, { "","" }, { "","" }, { "","" }, { "","" }, diff --git a/microkde/kdialog.cpp b/microkde/kdialog.cpp index f9e0126..8398956 100644 --- a/microkde/kdialog.cpp +++ b/microkde/kdialog.cpp @@ -48,24 +48,25 @@ void KProgressDialog::setLabelText ( const QString & t) } void KProgressDialog::setTotalSteps ( int totalSteps ) { setActiveWindow(); setFocus(); mBar->setTotalSteps ( totalSteps ); } void KProgressDialog::setProgress ( int progress ) { setActiveWindow(); setFocus(); mBar->setProgress ( progress ); } void KProgressDialog::accept() { - + mLabel->setText( i18n("Eeek, there I am ticklish!") ); + move ( geometry().x()-20,geometry().y()+20); // QDialog::accept(); } void KProgressDialog::reject() { emit cancelled (); //QDialog::reject(); } |