X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fdialogs%2FCookiesDialog.cpp;fp=src%2Fdialogs%2FCookiesDialog.cpp;h=693eb3c20fa8c006c7480f5e18d44c11aac20653;hp=4e85efe4d112f9bbf35e34121b34fd3a58af8e61;hb=dc74bf6bdf3d56e09465925a88a7328b8b71d746;hpb=77a3805e3b7c6ee7daeb2db660bb4b2789b33da2 diff --git a/src/dialogs/CookiesDialog.cpp b/src/dialogs/CookiesDialog.cpp index 4e85efe..693eb3c 100644 --- a/src/dialogs/CookiesDialog.cpp +++ b/src/dialogs/CookiesDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright © 2022 Soren Stoutner . + * Copyright © 2022-2023 Soren Stoutner . * * This file is part of Privacy Browser PC . * @@ -65,7 +65,7 @@ bool cookieSortPredicate(const QNetworkCookie &leftHandCookie, const QNetworkCoo QString leftHandThirdLevelDomain; QString rightHandThirdLevelDomain; - // Get the numer of dots in the strings. + // Get the number of dots in the strings. int leftHandDots = leftHandDomain.count(QLatin1Char('.')); int rightHandDots = rightHandDomain.count(QLatin1Char('.')); @@ -154,7 +154,7 @@ CookiesDialog::CookiesDialog(std::list *originalCookieListPointe treeModelPointer->horizontalHeaderItem(0)->setToolTip(i18nc("The cookie Name tool tip.", "The name identifies the cookie. Each cookie has a unique combination of domain, name, and path.")); treeModelPointer->horizontalHeaderItem(1)->setToolTip(i18nc("The cookie Durable tool tip", - "Durable cookies pursist across restarts, irrespective of the expiration date. All other cookies are deleted when Privacy Browser closes, irrespective of the expiration date.")); + "Durable cookies persist across restarts, irrespective of the expiration date. All other cookies are deleted when Privacy Browser closes, irrespective of the expiration date.")); treeModelPointer->horizontalHeaderItem(2)->setToolTip(i18nc("The cookie Path tool tip.", "Websites can restrict cookie access to subpath of their URL.")); treeModelPointer->horizontalHeaderItem(3)->setToolTip(i18nc("The cookie Expiration Date tool tip.", "Cookies without an expiration date are known as session cookies and are expected to be deleted every time the browser closes."));