Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Recipes

Notices

View Poll Results: Which type of recipes you'd like to have the most?
Ukrainian sources in Ukrainian 1 33.33%
Ukrainian sources in Russian 0 0%
Russian sources in Russian 0 0%
Russian & Ukrainian sources in English 2 66.67%
Multiple Choice Poll. Voters: 3. You may not vote on this poll

Reply
 
Thread Tools Search this Thread
Old Today, 01:50 PM   #31
bugmen00t
Connoisseur
bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!bugmen00t rocks like Gibraltar!
 
bugmen00t's Avatar
 
Posts: 72
Karma: 100000
Join Date: Aug 2015
Device: Kindle Keyboard + Kindle Voyage WiFi + Kindle PW11 Kids
New recipes (part 15)

GaGadget: Ukrainian tech news & consumer electronic reviews. Favicon.
Russian version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
#    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


Ukrainian version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
#    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

#    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})

    remove_tags =   [
        dict(name='div', attrs={'class': 'footer-content'}),
        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


English version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
       ('Gagadget', 'https://gagadget.com/en/rss/'),
       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


German version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
       ('Gagadget', 'https://gagadget.com/de/rss/'),
       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


Norwegian (Bokmål) version
Need to check if language code 'nb' is correct as there're no Norwegian recipes yet.
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
       ('Gagadget', 'https://gagadget.com/nb/rss/'),
       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


Dutch version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
    language = 'nl'
#    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
       ('Gagadget', 'https://gagadget.com/nl/rss/'),
       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


Spanish version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
    language = 'es'
#    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
       ('Gagadget', 'https://gagadget.com/es/rss/'),
       ('Noticias', 'https://gagadget.com/es/rss/news/'),
       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


Italian version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
    language = 'it'
#    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
       ('Gagadget', 'https://gagadget.com/it/rss/'),
       ('Notizia', 'https://gagadget.com/it/rss/news/'),
       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
#       ('Gagadget', 'https://gagadget.com/fr/rss/'),
#       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
#       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
#       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]


French version
Spoiler:
Code:
#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class Gagadget(BasicNewsRecipe):
    title = u'Gagadget'
# Russian
#    description = u'Gagadget.com - \u043D\u0435\u0441\u043A\u0443\u0447\u043D\u044B\u0439 \u0441\u0430\u0439\u0442 \u043E \u0442\u0435\u0445\u043D\u0438\u043A\u0435.'
# Ukrainian
#    description = u'Gagadget.com - \u043D\u0435\u043D\u0443\u0434\u043D\u0438\u0439 \u0441\u0430\u0439\u0442 \u043F\u0440\u043E \u0442\u0435\u0445\u043D\u0456\u043A\u0443.'
# Other
    description = u'Gagadget.com is Ukrainian no-nonsense tech site. We only write about what is interesting to us, and we do this in the most vivid and ironic way.'
    __author__ = 'bugmen00t'
    publisher = 'Gagadget'
    publication_type = 'news'
    oldest_article = 7
    max_articles_per_feed = 100
#    language = 'ru_UK'
#    language = 'uk'
#    language = 'en_UK'
#    language = 'de'
#    language = 'nb'
#    language = 'nl'
#    language = 'es'
#    language = 'it'
    language = 'fr'
    cover_url = 'https://gagadget.com/static/img/gagadget.jpg'
    auto_cleanup = False
    no_stylesheets = False

    remove_tags_before = dict(name='h1')

    remove_tags_after = dict(name='div', attrs={'class': 'l-inner l-inner_high'})
#
# Ukrainian version only
# 
#    remove_tags_after = dict(name='div', attrs={'class': 'top20 bottom20 post-links'})
#
#    remove_tags =   [
#        dict(name='div', attrs={'class': 'footer-content'}),
#        ]

    feeds = [
#
# Russian 
#
#       ('\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B', 'https://gagadget.com/rss/'),
#       ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438', 'https://gagadget.com/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u044C\u0438', 'https://gagadget.com/rss/articles/'),
#       ('\u041E\u0431\u0437\u043E\u0440\u044B', 'https://gagadget.com/rss/reviews/'),
#       ('\u0421\u043F\u0435\u0446\u043F\u0440\u043E\u0435\u043A\u0442\u044B', 'https://gagadget.com/rss/specials/'),
#
# Ukrainian 
#
#       ('\u0423\u0441\u0456 \u043C\u0430\u0442\u0435\u0440\u0456\u0430\u043B\u0438', 'https://gagadget.com/uk/rss/'),
#       ('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://gagadget.com/uk/rss/news/'),
#       ('\u0421\u0442\u0430\u0442\u0442\u0456', 'https://gagadget.com/uk/rss/articles/'),
#       ('\u041E\u0433\u043B\u044F\u0434\u0438', 'https://gagadget.com/uk/rss/reviews/'),
#
# English 
#
#       ('Gagadget', 'https://gagadget.com/en/rss/'),
#       ('News', 'https://gagadget.com/en/rss/news/'),
#
# German 
#
#       ('Gagadget', 'https://gagadget.com/de/rss/'),
#       ('Nachrichten', 'https://gagadget.com/de/rss/news/'),
#       ('Tests', 'https://gagadget.com/de/rss/reviews/'),
#       ('Artikel', 'https://gagadget.com/de/rss/articles/'),
#
# Norwegian 
#
#       ('Gagadget', 'https://gagadget.com/nb/rss/'),
#       ('Nyheter', 'https://gagadget.com/nb/rss/news/'),
#       ('Anmeldelser', 'https://gagadget.com/nb/rss/reviews/'),
#       ('Artikler', 'https://gagadget.com/nb/rss/articles/'),
#
# Dutch 
#
#       ('Gagadget', 'https://gagadget.com/nl/rss/'),
#       ('Nieuws', 'https://gagadget.com/nl/rss/news/'),
#       ('Recensies', 'https://gagadget.com/nl/rss/reviews/'),
#       ('Artikelen', 'https://gagadget.com/nl/rss/articles/'),
#
# Spanish 
#
#       ('Gagadget', 'https://gagadget.com/es/rss/'),
#       ('Noticias', 'https://gagadget.com/es/rss/news/'),
#       ('Rese\u00F1as', 'https://gagadget.com/es/rss/reviews/'),
#       ('Art\u00EDculos', 'https://gagadget.com/es/rss/articles/'),
#
# Italian 
#
#       ('Gagadget', 'https://gagadget.com/it/rss/'),
#       ('Notizia', 'https://gagadget.com/it/rss/news/'),
#       ('Recensioni', 'https://gagadget.com/it/rss/reviews/'),
#       ('Articoli', 'https://gagadget.com/it/rss/articles/'),
#
# French 
#
       ('Gagadget', 'https://gagadget.com/fr/rss/'),
       ('Nouvelles', 'https://gagadget.com/fr/rss/news/'),
       ('Commentaires', 'https://gagadget.com/fr/rss/reviews/'),
       ('Des articles', 'https://gagadget.com/fr/rss/articles/'),
#
     ]
Attached Images
         
Attached Files
File Type: recipe gagadget_ru.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_ua.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_en.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_de.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_nb.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_nl.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_es.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_it.recipe (4.1 KB, 1 views)
File Type: recipe gagadget_fr.recipe (4.1 KB, 1 views)
bugmen00t is offline   Reply With Quote
Reply

Tags
fixes, russain, ukraninan


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
New and updated recipes for Ukrainian media rpalyvoda Recipes 2 06-12-2015 04:56 PM
New recipes for a couple of Ukrainian media rpalyvoda Recipes 1 06-11-2015 05:31 PM
looking for built-in recipes Bobus Recipes 4 09-26-2011 03:31 PM
customizing built in recipes jrasmussen Calibre 2 02-15-2010 11:26 PM


All times are GMT -4. The time now is 04:17 PM.


MobileRead.com is a privately owned, operated and funded community.