clean feed and improve translation
This commit is contained in:
parent
5d7487d8f0
commit
3c38bdf535
3 changed files with 41 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
_template: feed_blog.xml
|
_template: feed_podcast-dhe.xml
|
||||||
---
|
---
|
||||||
_model: none
|
_model: none
|
||||||
_discoverable: no
|
_discoverable: no
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
;; Hier gibt es die Übersetzungen für die C3WOC Webseite
|
;; Hier gibt es die Übersetzungen für die C3WOC Webseite
|
||||||
|
|
||||||
[de]
|
[de]
|
||||||
description = Das CCC Waffel Operation Center (C3WOC) ist führender Experte in allen bereichen der süßen und herzhaften Teigprodukten. Sie bestehen aus einer Gruppe von Datenreisenden und Chaos Computer Club Enthusiasten, die sich dem Genuss und der Produktion von Waffeln zugewand haben... Möge die Waffel mit euch sein.
|
description = Das C3WOC - das CCC Waffel Operation Center - besitzt eine große expertise was in die Fachrichtung Waffel und Winkekatze geht. So gibt es auch einen Podcast in dem euch wertvolle Fakten zu Waffeln vermittelt werden.
|
||||||
api_url = /#tourdaten
|
api_url = /#tourdaten
|
||||||
api_url_open = /kontakt/
|
api_url_open = /kontakt/
|
||||||
api_space = Waffel
|
api_space = Waffel
|
||||||
|
@ -12,7 +12,8 @@ api_open_text = Es gibt gerade Waffeln! Wo genau? Das erfährst du auf c3woc.de/
|
||||||
blog_von = Geschrieben von
|
blog_von = Geschrieben von
|
||||||
blog_am = am
|
blog_am = am
|
||||||
blog_weiter = weiterlesen
|
blog_weiter = weiterlesen
|
||||||
xmlfeed = Neues vom C3 Waffel Operation Center
|
xmlfeed = Neues aus der Podcastwelt beim CCC Waffel Operation Center
|
||||||
|
dhefeed =
|
||||||
projectfeed = Rezepte des C3WOC
|
projectfeed = Rezepte des C3WOC
|
||||||
directytlink = Direktlink zum YouTube Video
|
directytlink = Direktlink zum YouTube Video
|
||||||
directlink = Video speichern
|
directlink = Video speichern
|
||||||
|
@ -20,7 +21,7 @@ projekt_title_start = Dieses Rezept wurde von
|
||||||
projekt_title_ende = rekonstruiert und verbessert.
|
projekt_title_ende = rekonstruiert und verbessert.
|
||||||
|
|
||||||
[en]
|
[en]
|
||||||
description = CCC Video Operation Center (C3VOC) is a working group consisting of Chaos Computer Club enthusiasts running lecture recording and streaming ..
|
description = The C3WOC - the CCC Waffel Operation Center - has great expertise in the field of waffles and waving cats. So there is also a podcast in which you will learn valuable facts about waffles.
|
||||||
api_url = /#tourdaten
|
api_url = /#tourdaten
|
||||||
api_url_open = /kontakt/
|
api_url_open = /kontakt/
|
||||||
api_space = ' '
|
api_space = ' '
|
||||||
|
@ -31,7 +32,8 @@ api_open_text = There are just waffles! Where exactly? You can find out on c3woc
|
||||||
blog_von = Written by
|
blog_von = Written by
|
||||||
blog_am = on
|
blog_am = on
|
||||||
blog_next = read more
|
blog_next = read more
|
||||||
xmlfeed = News from the C3 Waffel Operation Center
|
xmlfeed = Podcast news from the CCC Waffel Operation Center
|
||||||
|
dhefeed =
|
||||||
projectfeed = recipes of the C3WOC
|
projectfeed = recipes of the C3WOC
|
||||||
directytlink = Direct link to YouTube video
|
directytlink = Direct link to YouTube video
|
||||||
directlink = save video
|
directlink = save video
|
||||||
|
|
34
templates/feed_podcast-dhe.xml
Normal file
34
templates/feed_podcast-dhe.xml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>{%
|
||||||
|
set baseurl = "https://podcast.c3woc.de/" %}{%
|
||||||
|
set search = "eisen" %}
|
||||||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||||
|
<title type="text">{%
|
||||||
|
if bag('translate', this.alt, 'dhefeed') %}{{ bag('translate', this.alt, 'dhefeed') }}{%
|
||||||
|
else %}Waffel-Podcast{% endif %}</title>
|
||||||
|
<id>{{ baseurl }}podcast-dhe.xml</id>
|
||||||
|
<updated>{{ none|datetimeformat('YYYY-MM-ddThh:mm:ss') }}Z</updated>
|
||||||
|
<link href="{{ baseurl }}{{ search }}/" />
|
||||||
|
<link href="{{ baseurl }}podcast-dhe.xml" rel="self" />
|
||||||
|
<author>
|
||||||
|
<name>{% if this.author %}{{ this.author }}{% else %}L3D{% endif %}</name>
|
||||||
|
</author>{%
|
||||||
|
set pages = site.query('/blog').include_undiscoverable(true).all() %}{%
|
||||||
|
for page in pages %}{% if not page._hidden %}
|
||||||
|
<entry xml:base="{{ baseurl }}{{ search }}/{{ page._id }}/">
|
||||||
|
<title type="text">{{ page.title }}</title>
|
||||||
|
<id>{{ baseurl }}{{ search }}/{{ page._id }}</id>
|
||||||
|
<updated>{{ page.pub_date|datetimeformat('YYYY-MM-ddThh:mm:ss') }}Z</updated>
|
||||||
|
<link href="{{ search }}/{{ page._id }}/" xml:base="{{ baseurl }}" />
|
||||||
|
<author>
|
||||||
|
<name>{% if page.author %}{{ page.author }}{% else %}L3D{% endif %}</name>
|
||||||
|
</author>
|
||||||
|
<content type="{% if page.xml_img %}html{% else %}text{% endif %}">
|
||||||
|
{{ page.xml }}
|
||||||
|
{% if page.xml_img
|
||||||
|
%}<br/>
|
||||||
|
<img width="23%" src="{{ page.xml_img }}" />
|
||||||
|
{% endif %}
|
||||||
|
</content>
|
||||||
|
</entry>{% endif %}{%
|
||||||
|
endfor %}
|
||||||
|
</feed>
|
Loading…
Reference in a new issue