Locatizations.
[wolnelektury.git] / src / funding / templates / funding / includes / offer_status.html
index 4d5ae05..87a9872 100644 (file)
@@ -1,31 +1,35 @@
 {% load i18n %}
 
 {% if offer.is_current %}
-    {% if offer.is_win %}
-        <p>
-            {% blocktrans with end=offer.end %}The fundraiser
-            ends on {{ end }}. The full amount has been successfully
-            raised, but you can still contribute and help liberate
-            more books.{% endblocktrans %}
-        </p>
-    {% else %}
+  {% if offer.is_win %}
     <p>
-        <strong>{% blocktrans with target=offer.target|floatformat:-2 %}We need {{target}} zł to digitize it,
-        compile it and publish for free in multiple formats.{% endblocktrans %}</strong>
+      {% blocktrans trimmed with end=offer.end %}
+        Zbiórka kończy się {{ end }}. Pełna kwota została już zebrana,
+        ale ciągle możesz dołożyć się i pomóc uwolnić więcej książek.
+      {% endblocktrans %}
     </p>
+  {% else %}
+  <p>
+    <strong>{% blocktrans trimmed with target=offer.target|floatformat:-2 %}
+      Potrzebujemy {{ target }} zł, by zdigitalizować tę książkę, opracować
+      i bezpłatnie udostępnić w serwisie w wielu formatach.
+    {% endblocktrans %}</strong>
+  </p>
+  <p>
+    {% blocktrans trimmed with end=offer.end %}
+      Jeśli do {{ end }} uda się zebrać pełną kwotę, opublikujemy ją i będzie
+      dostępna dla wszystkich.
+    {% endblocktrans %}
+  </p>
+  {% endif %}
+{% else %}
+  {% if offer.is_win %}
     <p>
-        {% blocktrans with end=offer.end %}If we raise enough money before {{end}} we will
-        publish it and make it available for everyone.{% endblocktrans %}
+      {% trans "Udało się zebrać pełną kwotę!" %}
     </p>
-    {% endif %}
-{% else %}
-    {% if offer.is_win %}
-        <p>
-            {% trans "Full amount was successfully raised!" %}
-        </p>
-    {% else %}
-        <p>
-            {% trans "The amount needed was not raised." %}
-        </p>
-    {% endif %}
+  {% else %}
+    <p>
+      {% trans "Nie udało się zebrać pełnej kwoty." %}
+    </p>
+  {% endif %}
 {% endif %}