1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

Remove period for feed errors

This commit is contained in:
Frédéric Guillot 2018-02-07 19:10:36 -08:00
parent 0fb87eba3f
commit c6fd9eb9b1
4 changed files with 23 additions and 23 deletions

View file

@ -20,11 +20,11 @@ import (
var (
errRequestFailed = "Unable to execute request: %v"
errServerFailure = "Unable to fetch feed (statusCode=%d)."
errDuplicate = "This feed already exists (%s)."
errServerFailure = "Unable to fetch feed (statusCode=%d)"
errDuplicate = "This feed already exists (%s)"
errNotFound = "Feed %d not found"
errEncoding = "Unable to normalize encoding: %v."
errCategoryNotFound = "Category not found for this user."
errEncoding = "Unable to normalize encoding: %v"
errCategoryNotFound = "Category not found for this user"
errEmptyFeed = "This feed is empty"
)