diff --git a/http/client/response.go b/http/client/response.go index 9780c1b2..e61bf562 100644 --- a/http/client/response.go +++ b/http/client/response.go @@ -42,7 +42,7 @@ func (r *Response) String() string { ) } -// IsNotFound returns true if the resource doesn't exists anymore. +// IsNotFound returns true if the resource doesn't exist anymore. func (r *Response) IsNotFound() bool { return r.StatusCode == 404 || r.StatusCode == 410 } diff --git a/locale/translations/de_DE.json b/locale/translations/de_DE.json index ea44153a..a5830ff8 100644 --- a/locale/translations/de_DE.json +++ b/locale/translations/de_DE.json @@ -380,5 +380,5 @@ "Website unreachable, the request timed out after %d seconds": "Webseite nicht erreichbar, die Anfrage endete nach %d Sekunden", "You are not authorized to access this resource (invalid username/password)": "Sie sind nicht berechtigt, auf diese Ressource zuzugreifen (Benutzername/Passwort ungültig)", "Unable to fetch this resource (Status Code = %d)": "Ressource konnte nicht abgerufen werden (code=%d)", - "Resource not found (404), this feed doesn't exists anymore, check the feed URL": "Ressource nicht gefunden (404), dieses Abonnement existiert nicht mehr, überprüfen Sie die Abonnement-URL" + "Resource not found (404), this feed doesn't exist anymore, check the feed URL": "Ressource nicht gefunden (404), dieses Abonnement existiert nicht mehr, überprüfen Sie die Abonnement-URL" } diff --git a/locale/translations/fr_FR.json b/locale/translations/fr_FR.json index 1698da47..ec56292e 100644 --- a/locale/translations/fr_FR.json +++ b/locale/translations/fr_FR.json @@ -380,5 +380,5 @@ "Website unreachable, the request timed out after %d seconds": "Site web injoignable, la requête à échouée après %d secondes", "You are not authorized to access this resource (invalid username/password)": "Vous n'êtes pas autorisé à accéder à cette ressource (nom d'utilisateur / mot de passe incorrect)", "Unable to fetch this resource (Status Code = %d)": "Impossible de récupérer cette ressource (code=%d)", - "Resource not found (404), this feed doesn't exists anymore, check the feed URL": "Page introuvable (404), cet abonnement n'existe plus, vérifiez l'adresse du flux" + "Resource not found (404), this feed doesn't exist anymore, check the feed URL": "Page introuvable (404), cet abonnement n'existe plus, vérifiez l'adresse du flux" } diff --git a/reader/browser/browser.go b/reader/browser/browser.go index 733d5f55..a3c3ec47 100644 --- a/reader/browser/browser.go +++ b/reader/browser/browser.go @@ -14,7 +14,7 @@ var ( errServerFailure = "Unable to fetch this resource (Status Code = %d)" errEncoding = "Unable to normalize encoding: %q" errEmptyFeed = "This feed is empty" - errResourceNotFound = "Resource not found (404), this feed doesn't exists anymore, check the feed URL" + errResourceNotFound = "Resource not found (404), this feed doesn't exist anymore, check the feed URL" errNotAuthorized = "You are not authorized to access this resource (invalid username/password)" )