v/pol
1
0
mirror of https://github.com/taroved/pol synced 2025-05-18 23:30:14 -07:00
This commit is contained in:
Alexandr Nesterenko 2017-05-17 13:24:05 -07:00
parent 6d7ff4a828
commit 1a4bd30d2a
6 changed files with 19 additions and 9 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-07-21 14:05-0700\n"
"POT-Creation-Date: 2017-05-17 13:12-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -25,15 +25,19 @@ msgstr "Made by"
msgid "made_name"
msgstr "Alexandr Nesterenko"
#: templates/frontend/index.html:6 templates/frontend/index.html.py:12
#: templates/frontend/index.html:5
msgid "index_title"
msgstr "PolitePol.com: Generate RSS feeds for any web page"
#: templates/frontend/index.html:8 templates/frontend/index.html.py:14
msgid "brand"
msgstr "Polite Pol"
#: templates/frontend/index.html:14
#: templates/frontend/index.html:16
msgid "hello"
msgstr "Create you feed yourself!"
#: templates/frontend/index.html:25
#: templates/frontend/index.html:27
msgid "go"
msgstr "Go!"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-07-21 14:05-0700\n"
"POT-Creation-Date: 2017-05-17 13:12-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -27,15 +27,19 @@ msgstr "Сделал"
msgid "made_name"
msgstr "Александр Нестеренко"
#: templates/frontend/index.html:6 templates/frontend/index.html.py:12
#: templates/frontend/index.html:5
msgid "index_title"
msgstr "PolitePol.com: Создай RSS канал для любой веб-страницы"
#: templates/frontend/index.html:8 templates/frontend/index.html.py:14
msgid "brand"
msgstr "Polite Pol"
#: templates/frontend/index.html:14
#: templates/frontend/index.html:16
msgid "hello"
msgstr "Создай новостную ленту сам!"
#: templates/frontend/index.html:25
#: templates/frontend/index.html:27
msgid "go"
msgstr "Поехали!"

View File

@ -8,7 +8,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if title %} {{ title }} {% else %} Polite Pol {% endif %}</title>
<title>{% block title %}Polite Pol{% endblock %}</title>
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>

View File

@ -2,6 +2,8 @@
{% load staticfiles %}
{% load i18n %}
{% block title %}{% trans "index_title" %}{% endblock %}
{% block logo %}
<a href="{% url 'index' %}" class="brand">{% trans "brand" %}</a>
{% endblock %}