Index: django/contrib/comments/templates/comments/form.html
===================================================================
--- django/contrib/comments/templates/comments/form.html	(wersja 8934)
+++ django/contrib/comments/templates/comments/form.html	(kopia robocza)
@@ -1,5 +1,6 @@
 {% load comments %}
-<form action="{% comment_form_target %}" method="POST">
+{% load i18n %}
+<form action="{% comment_form_target %}" method="post">
   {% for field in form %}
     {% if field.is_hidden %}
       {{ field }}
@@ -13,7 +14,7 @@
     {% endif %}
   {% endfor %}
   <p class="submit">
-    <input type="submit" name="submit" class="submit-post" value="Post">
-    <input type="submit" name="submit" class="submit-preview" value="Preview">
+    <input type="submit" name="submit" class="submit-post" value="{% trans "Post" %}" />
+    <input type="submit" name="submit" class="submit-preview" value="{% trans "Preview" %}" />
   </p>
-</form>
\ No newline at end of file
+</form>
