diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/aboutdata.cpp | 4 | ||||
-rw-r--r-- | src/formatimporter.cpp | 2 | ||||
-rw-r--r-- | src/htmlexporter.cpp | 3 | ||||
-rw-r--r-- | src/likeback.h | 1 | ||||
-rw-r--r-- | src/notefactory.cpp | 4 |
5 files changed, 4 insertions, 10 deletions
diff --git a/src/aboutdata.cpp b/src/aboutdata.cpp index 1ae0e98..8507426 100644 --- a/src/aboutdata.cpp +++ b/src/aboutdata.cpp @@ -34,9 +34,7 @@ static const char description[] = I18N_NOOP( AboutData::AboutData() : TDEAboutData( "basket", I18N_NOOP("BasKet Note Pads"), VERSION, description, TDEAboutData::License_GPL_V2, - "(c) 2003-2007, S\303\251bastien Lao\303\273t", 0, - "http://basket.kde.org/", - "[email protected]" ) + "(c) 2003-2007, S\303\251bastien Lao\303\273t", NULL, NULL, NULL) { addAuthor( "Kelvie Wong", I18N_NOOP("Maintainer"), diff --git a/src/formatimporter.cpp b/src/formatimporter.cpp index 2a4c1c2..b87a350 100644 --- a/src/formatimporter.cpp +++ b/src/formatimporter.cpp @@ -133,7 +133,7 @@ void FormatImporter::importBaskets() // Move the folder to the new repository (normal basket) or copy the folder (mirorred folder): TQString folderName = *it; if (folderName.startsWith("/")) { // It was a folder mirror: - KMessageBox::information(0, i18n("<p>Folder mirroring is not possible anymore (see <a href='http://basket.kde.org/'>basket.kde.org</a> for more information).</p>" + KMessageBox::information(0, i18n("<p>Folder mirroring is not possible anymore.</p>" "<p>The folder <b>%1</b> has been copied for the basket needs. You can either delete this folder or delete the basket, or use both. But remember that " "modifying one will not modify the other anymore as they are now separate entities.</p>").arg(folderName), i18n("Folder Mirror Import"), "", KMessageBox::AllowLink); diff --git a/src/htmlexporter.cpp b/src/htmlexporter.cpp index c9fe762..a81c13f 100644 --- a/src/htmlexporter.cpp +++ b/src/htmlexporter.cpp @@ -217,7 +217,7 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket) "<html>\n" " <head>\n" " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n" - " <meta name=\"Generator\" content=\"" << kapp->aboutData()->programName() << " " << VERSION << " http://basket.kde.org/\">\n" + " <meta name=\"Generator\" content=\"" << kapp->aboutData()->programName() << " " << VERSION << "\">\n" " <style type=\"text/css\">\n" // " @media print {\n" // " span.printable { display: inline; }\n" @@ -320,7 +320,6 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket) " </div>\n" " <p class=\"credits\">%1</p>\n").arg( i18n("Made with %1, a TDE tool to take notes and keep information at hand.") - .arg("<a href=\"http://basket.kde.org/\">%1</a> %2") .arg(kapp->aboutData()->programName(), VERSION)); // Copy a transparent GIF image in the folder, needed for the JavaScript hack: diff --git a/src/likeback.h b/src/likeback.h index 7a2c90f..16ac184 100644 --- a/src/likeback.h +++ b/src/likeback.h @@ -69,7 +69,6 @@ class LikeBackDialog; * likeBack->sendACommentAction(actionCollection()); * @endcode * - * @see Visit http://basket.kde.org/likeback.php for more information, screenshots, a tutorial, hints, return of experiences, and to download the server-side developer interface... * @author Sebastien Laout <[email protected]> */ class LikeBack : public TQObject diff --git a/src/notefactory.cpp b/src/notefactory.cpp index 2b87549..7195640 100644 --- a/src/notefactory.cpp +++ b/src/notefactory.cpp @@ -447,9 +447,7 @@ Note* NoteFactory::dropNote(TQMimeSource *source, Basket *parent, bool fromDrop, /* Unsucceful drop */ note = createNoteUnknown(source, parent); TQString message = i18n("<p>%1 doesn't support the data you've dropped.<br>" - "It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>" - "<p>If you want the support of these data, please contact developer or visit the " - "<a href=\"http://basket.kde.org/dropdb.php\">BasKet Drop Database</a>.</p>").arg(kapp->aboutData()->programName()); + "It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>").arg(kapp->aboutData()->programName()); KMessageBox::information(parent, message, i18n("Unsupported MIME Type(s)"), "unsupportedDropInfo", KMessageBox::AllowLink); return note; |