X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/263e2a71c685149e406d7bee1de93b362970a88f..fadccea9dfcbacc70e113abb17444654e2e926c3:/wolnelektury/templates/base.html

diff --git a/wolnelektury/templates/base.html b/wolnelektury/templates/base.html
index 7538206cf..47d84d604 100644
--- a/wolnelektury/templates/base.html
+++ b/wolnelektury/templates/base.html
@@ -8,6 +8,7 @@
         <title>{% block title %}WolneLektury.pl{% endblock %}</title>
         <link rel="icon" href="/static/img/favicon.png" type="image/x-icon" />
         {% compressed_css "all" %}
+        <script type="text/javascript">var LANGUAGE_CODE = "{{ LANGUAGE_CODE}}";</script>
         {% compressed_js "jquery" %}
         {% compressed_js "all" %}
         {% block extrahead %}
@@ -33,7 +34,7 @@
             <div id="user-info" style="display:none">
                 {% if user.is_authenticated %}
                     <p>
-                        {% trans "Welcome" %},<strong>{{ user.username }}</strong>
+                        {% 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/">{% trans "Administration" %}</a>
@@ -49,6 +50,16 @@
                 <a href="http://twitter.com/wolnelektury"><img src="/static/img/social/twitter.png" /></a>
                 <a href="http://nasza-klasa.pl/profile/30441509"><img src="/static/img/social/naszaklasa.png" /></a>     
             </div>
+			<div class="lang-menu" style="float:right;">
+				<form action="/i18n/setlang/" method="post">
+					{% trans "Choose your interface language: " %} <select name="language">
+						{% for lang in LANGUAGES %}
+						<option value="{{ lang.0 }}"{% ifequal lang.0 LANGUAGE_CODE %} selected="selected"{% endifequal %}>{{ lang.1 }}</option>
+						{% endfor %}
+					</select>
+					<input type="submit" value="{% trans "Choose language" %}">
+				</form>
+			</div>			
             <div class="clearboth"></div>
         </div>
         <div id="maincontent">
@@ -58,13 +69,17 @@
         <div class="clearboth"></div>
         <div id="footer">
             <p>
-                Wolne Lektury to projekt prowadzony przez <a href="http://nowoczesnapolska.org.pl/">Fundację Nowoczesna
-                Polska</a>. Reprodukcje cyfrowe wykonane przez <a href="http://www.bn.org.pl/">Bibliotekę Narodową</a>
-                z egzemplarzy pochodzących ze zbiorów BN. Hosting <a href="http://eo.pl/">EO Networks</a>.
+            	{% blocktrans %}
+				Wolne Lektury is a project lead by <a href="http://nowoczesnapolska.org.pl/">Modern Poland Foundation</a>.
+				Digital reproductions are made by <a href="http://www.bn.org.pl/">The National Library</a>, based on TNL resources. 
+				Hosting <a href="http://eo.pl/">EO Networks</a>.
+				{% endblocktrans %}
             </p>
             <p>
-                Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17,
+            	{% blocktrans %}
+				Modern Poland Foundation, 00-514 Warsaw, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17
                 e-mail: <a href="mailto:fundacja@nowoczesnapolska.org.pl">fundacja@nowoczesnapolska.org.pl</a>
+				{% endblocktrans %}
             </p>
 
 			{% sponsor_page "footer" %}
@@ -106,4 +121,4 @@
         pageTracker._trackPageview();
         </script>
     </body>
-</html>
+</html>
\ No newline at end of file