+{% load i18n %}
{% load chunks compressed catalogue_tags sponsor_tags %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<body id="{% block bodyid %}base{% endblock %}">
<!--[if lt IE 7]><link href=/static/infobar/infobar.css rel=stylesheet>
<div id=infobar><a href=http://browsehappy.pl/infobar>
- Internet Explorer nie potrafi poprawnie wyświetlić tej strony. Kliknij tutaj, aby dowiedzieć się więcej...
+ {% trans "Internet Explorer cannot display this site properly. Click here to read more..." %}
</a></div><div id=viewplot><script src=/static/infobar/infobar.js></script><![endif]-->
{% block bodycontent %}
<div id="top-message">
</div>
<div id="onepercent-banner" style="display:none">
<a href="{% url 1percent %}" id="onepercent-text"></a>
- <a href="{% url 1percent %}" id="onepercent-see-more">Zobacz więcej</a>
+ <a href="{% url 1percent %}" id="onepercent-see-more">{% trans "See more" %}</a>
</div>
<div id="header">
<div id="logo">
<div id="user-info" style="display:none">
{% if user.is_authenticated %}
<p>
- Witaj, <strong>{{ user.username }}</strong>
- | <a href="{% url user_shelves %}" id="user-shelves-link">Twoje półki</a>
+ {% trans "Welcome" %},<strong>{{ user.username }}</strong>
+ | <a href="{% url user_shelves %}" id="user-shelves-link">{% trans "Your shelves" %}</a>
{% if user.is_staff %}
- | <a href="/admin/">Administracja</a>
+ | <a href="/admin/">{% trans "Administration" %}</a>
{% endif %}
- | <a href="{% url logout %}?next={{ request.get_full_path }}">Wyloguj</a>
+ | <a href="{% url logout %}?next={{ request.get_full_path }}">{% trans "Logout" %}</a>
</p>
{% else %}
- <p><a href="{% url login %}" class="login-register-link">Zaloguj się / Załóż konto</a></p>
+ <p><a href="{% url login %}" class="login-register-link">{% trans "Sign in" %} / {% trans "Register" %}</a></p>
{% endif %}
</div>
<div class="social-links" style="float:right">
{% sponsor_page "footer" %}
</div>
<div id="login-register-window">
- <div class="header"><a href="#" class="jqmClose">Zamknij</a></div>
+ <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
<div class="target">
<form method="post" action="{% url login %}" id="login-form" class="cuteform">
- <h2>Zaloguj się / <a href="#" id="show-registration-form" style="font-size: 0.85em; font-weight: normal">Załóż konto</a></h2>
+ <h2>{% trans "Sign in" %} / <a href="#" id="show-registration-form" style="font-size: 0.85em; font-weight: normal">{% trans "Register" %}</a></h2>
<p><span id="id_login-__all__"></span></p>
<ol>
{% authentication_form %}
- <li><input type="submit" value="Zaloguj się" /></li>
+ <li><input type="submit" value="{% trans "Sign in" %}" /></li>
</ol>
</form>
<form method="post" action="{% url register %}" id="registration-form" class="cuteform" style="display: none;">
- <h2><a href="#" id="show-login-form" style="font-size: 0.85em; font-weight: normal">Zaloguj się</a> / Załóż konto</h2>
+ <h2><a href="#" id="show-login-form" style="font-size: 0.85em; font-weight: normal">{% trans "Sign in" %}</a> / {% trans "Register" %}</h2>
<p><span id="id_registration-__all__"></span></p>
<ol>
{% user_creation_form %}
- <li><input type="submit" value="Załóż konto" /></li>
+ <li><input type="submit" value="{% trans "Register" %}" /></li>
</ol>
</form>
</div>
</div>
<div id="user-shelves-window">
- <div class="header"><a href="#" class="jqmClose">Zamknij</a></div>
+ <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
<div class="target">
- <p><img src="/static/img/indicator.gif" alt="*"/> Ładowanie</p>
+ <p><img src="/static/img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
</div>
</div>
{% endblock bodycontent %}