diff --git a/resources/recipes/irish_independent.recipe b/resources/recipes/irish_independent.recipe index e6da5410c3..c01f0d7d6d 100644 --- a/resources/recipes/irish_independent.recipe +++ b/resources/recipes/irish_independent.recipe @@ -10,7 +10,7 @@ class IrishIndependent(BasicNewsRecipe): title = u'Irish Independent' description = 'Irish and World news from Irelands Bestselling Daily Broadsheet' __author__ = 'Neil Grogan' - language = 'en_GB' + language = 'en_IE' oldest_article = 7 max_articles_per_feed = 100 remove_tags_before = dict(id='article') diff --git a/resources/recipes/irish_times.recipe b/resources/recipes/irish_times.recipe index a5f1b70d0c..ab37271638 100644 --- a/resources/recipes/irish_times.recipe +++ b/resources/recipes/irish_times.recipe @@ -10,7 +10,7 @@ from calibre.web.feeds.news import BasicNewsRecipe class IrishTimes(BasicNewsRecipe): title = u'The Irish Times' __author__ = "Derry FitzGerald, Ray Kinsella and David O'Callaghan" - language = 'en' + language = 'en_IE' timefmt = ' (%A, %B %d, %Y)' diff --git a/resources/recipes/rte.recipe b/resources/recipes/rte.recipe index eba684115f..cbf540069f 100644 --- a/resources/recipes/rte.recipe +++ b/resources/recipes/rte.recipe @@ -5,7 +5,7 @@ class RTE(BasicNewsRecipe): oldest_article = 7 max_articles_per_feed = 100 __author__ = u'Robin Phillips' - language = 'en_GB' + language = 'en_IE' remove_tags = [dict(attrs={'class':['topAd','botad','previousNextItem','headline','footerLinks','footernav']})] diff --git a/src/calibre/utils/localization.py b/src/calibre/utils/localization.py index 90f86a8368..c487e66139 100644 --- a/src/calibre/utils/localization.py +++ b/src/calibre/utils/localization.py @@ -105,6 +105,7 @@ _extra_lang_codes = { 'en_PK' : _('English (Pakistan)'), 'en_SG' : _('English (Singapore)'), 'en_YE' : _('English (Yemen)'), + 'en_IE' : _('English (Ireland)'), 'de_AT' : _('German (AT)'), 'nl' : _('Dutch (NL)'), 'nl_BE' : _('Dutch (BE)'),