mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 15:45:44 +01:00
Fix #5178 (No Category for English (Ireland))
This commit is contained in:
parent
b727737d9f
commit
11cbae2cf4
4 changed files with 4 additions and 3 deletions
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
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)'
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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']})]
|
||||
|
||||
|
|
|
|||
|
|
@ -105,6 +105,7 @@ def set_translators():
|
|||
'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)'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue