{% endif %}
diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py
index 191c51a50..8a901bfba 100644
--- a/wagtail/wagtailadmin/tests/test_pages_views.py
+++ b/wagtail/wagtailadmin/tests/test_pages_views.py
@@ -547,6 +547,71 @@ class TestPageMove(TestCase, WagtailTestUtils):
self.assertEqual(response.status_code, 200)
+class TestPageCopy(TestCase, WagtailTestUtils):
+ def setUp(self):
+ # Find root page
+ self.root_page = Page.objects.get(id=2)
+
+ # Create a page
+ self.test_page = SimplePage()
+ self.test_page.title = "Hello world!"
+ self.test_page.slug = "hello-world"
+ self.root_page.add_child(instance=self.test_page)
+
+ # Login
+ self.user = self.login()
+
+ def test_page_copy(self):
+ response = self.client.get(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )))
+ self.assertEqual(response.status_code, 200)
+ self.assertTemplateUsed(response, 'wagtailadmin/pages/copy.html')
+
+ def test_page_copy_bad_permissions(self):
+ # Remove privileges from user
+ self.user.is_superuser = False
+ self.user.user_permissions.add(
+ Permission.objects.get(content_type__app_label='wagtailadmin', codename='access_admin')
+ )
+ self.user.save()
+
+ # Get copy page
+ response = self.client.get(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )))
+
+ # Check that the user recieved a 403 response
+ self.assertEqual(response.status_code, 403)
+
+ def test_page_copy_post(self):
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello-world-2',
+ 'copy_subpages': False,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Check that the user was redirected to the parents explore page
+ self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, )))
+
+ # Check that the copy exists
+ self.assertTrue(self.root_page.get_children().filter(slug='hello-world-2').exists())
+
+ def test_page_copy_post_existing_slug(self):
+ # This tests the existing slug checking on page copy
+
+ # Attempt to copy the page but forget to change the slug
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello-world',
+ 'copy_subpages': False,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Should not be redirected (as the save should fail)
+ self.assertEqual(response.status_code, 200)
+
+ # Check that a form error was raised
+ self.assertFormError(response, 'form', 'new_slug', "This slug is already in use")
+
+
class TestPageUnpublish(TestCase, WagtailTestUtils):
def setUp(self):
self.user = self.login()
diff --git a/wagtail/wagtailadmin/urls.py b/wagtail/wagtailadmin/urls.py
index ee68f4655..c0dfcac28 100644
--- a/wagtail/wagtailadmin/urls.py
+++ b/wagtail/wagtailadmin/urls.py
@@ -63,6 +63,8 @@ urlpatterns += [
url(r'^pages/(\d+)/move/(\d+)/confirm/$', pages.move_confirm, name='wagtailadmin_pages_move_confirm'),
url(r'^pages/(\d+)/set_position/$', pages.set_page_position, name='wagtailadmin_pages_set_page_position'),
+ url(r'^pages/(\d+)/copy/$', pages.copy, name='wagtailadmin_pages_copy'),
+
url(r'^pages/moderation/(\d+)/approve/$', pages.approve_moderation, name='wagtailadmin_pages_approve_moderation'),
url(r'^pages/moderation/(\d+)/reject/$', pages.reject_moderation, name='wagtailadmin_pages_reject_moderation'),
url(r'^pages/moderation/(\d+)/preview/$', pages.preview_for_moderation, name='wagtailadmin_pages_preview_for_moderation'),
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index b6677d7ec..af3af33e1 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -9,7 +9,7 @@ from django.utils.translation import ugettext as _
from django.views.decorators.vary import vary_on_headers
from wagtail.wagtailadmin.edit_handlers import TabbedInterface, ObjectList
-from wagtail.wagtailadmin.forms import SearchForm
+from wagtail.wagtailadmin.forms import SearchForm, CopyForm
from wagtail.wagtailadmin import tasks, hooks
from wagtail.wagtailcore.models import Page, PageRevision
@@ -527,6 +527,59 @@ def set_page_position(request, page_to_move_id):
return HttpResponse('')
+@permission_required('wagtailadmin.access_admin')
+def copy(request, page_id):
+ page = Page.objects.get(id=page_id)
+ subpage_count = page.get_descendants().count()
+ parent_page = page.get_parent()
+
+ # Make sure this user has permission to add subpages on the parent
+ if not parent_page.permissions_for_user(request.user).can_add_subpage():
+ raise PermissionDenied
+
+ # Create the form
+ form = CopyForm(request.POST or None, initial={
+ 'new_title': page.title,
+ 'new_slug': page.slug,
+ 'copy_subpages': True,
+ })
+
+ # Stick an extra validator into the form to make sure that the slug is not already in use
+ def clean_slug(slug):
+ # Make sure the slug isn't already in use
+ if parent_page.get_children().filter(slug=slug).count() > 0:
+ raise ValidationError(_("This slug is already in use"))
+ return slug
+ form.fields['new_slug'].clean = clean_slug
+
+ # Check if user is submitting
+ if request.method == 'POST' and form.is_valid():
+ # Copy the page
+ page.copy(
+ recursive=form.cleaned_data['copy_subpages'],
+ update_attrs={
+ 'title': form.cleaned_data['new_title'],
+ 'slug': form.cleaned_data['new_slug'],
+ }
+ )
+
+ # Give a success message back to the user
+ if form.cleaned_data['copy_subpages']:
+ messages.success(request, _("Page '{0}' and {1} subpages copied.").format(page.title, subpage_count))
+ else:
+ messages.success(request, _("Page '{0}' copied.").format(page.title))
+
+ # Redirect to explore of parent page
+ return redirect('wagtailadmin_explore', parent_page.id)
+
+ return render(request, 'wagtailadmin/pages/copy.html', {
+ 'page': page,
+ 'subpage_count': subpage_count,
+ 'parent_page': parent_page,
+ 'form': form,
+ })
+
+
PAGE_EDIT_HANDLERS = {}
From dabfb5f2b9bc04da5f495d970ecf31df6c96f2be Mon Sep 17 00:00:00 2001
From: Karl Hobley
Date: Fri, 11 Jul 2014 10:05:25 +0100
Subject: [PATCH 03/29] Set owner of copied pages to the user who copied them
---
wagtail/wagtailadmin/tests/test_pages_views.py | 3 +++
wagtail/wagtailadmin/views/pages.py | 5 ++++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py
index 28a558bbb..e9a3a32a1 100644
--- a/wagtail/wagtailadmin/tests/test_pages_views.py
+++ b/wagtail/wagtailadmin/tests/test_pages_views.py
@@ -837,6 +837,9 @@ class TestPageCopy(TestCase, WagtailTestUtils):
# Check that the copy exists
self.assertTrue(self.root_page.get_children().filter(slug='hello-world-2').exists())
+ # Check that the owner of the page is set correctly
+ self.assertEqual(self.root_page.get_children().filter(slug='hello-world-2').first().owner, self.user)
+
def test_page_copy_post_existing_slug(self):
# This tests the existing slug checking on page copy
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index c9cae9e16..d0dd21e2b 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -660,7 +660,7 @@ def copy(request, page_id):
# Check if user is submitting
if request.method == 'POST' and form.is_valid():
# Copy the page
- page.copy(
+ new_page = page.copy(
recursive=form.cleaned_data['copy_subpages'],
update_attrs={
'title': form.cleaned_data['new_title'],
@@ -668,6 +668,9 @@ def copy(request, page_id):
}
)
+ # Assign usef of this request as the owner of all the new pages
+ new_page.get_descendants(inclusive=True).update(owner=request.user)
+
# Give a success message back to the user
if form.cleaned_data['copy_subpages']:
messages.success(request, _("Page '{0}' and {1} subpages copied.").format(page.title, subpage_count))
From 71089dc6d5e2cd0ebe09486a782b03562fef617c Mon Sep 17 00:00:00 2001
From: Karl Hobley
Date: Fri, 11 Jul 2014 11:21:41 +0100
Subject: [PATCH 04/29] Added option to copy form to publish copied pages. This
is not displayed to users without publish permissions.
---
wagtail/wagtailadmin/forms.py | 8 +-
.../templates/wagtailadmin/pages/copy.html | 11 +-
.../wagtailadmin/tests/test_pages_views.py | 185 +++++++++++++++++-
wagtail/wagtailadmin/views/pages.py | 19 +-
4 files changed, 204 insertions(+), 19 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index 49fa2053c..a8da2525e 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -78,12 +78,8 @@ class PasswordResetForm(PasswordResetForm):
return cleaned_data
-YES_OR_NO = (
- (True, ugettext_lazy("Yes")),
- (False, ugettext_lazy("No")),
-)
-
class CopyForm(forms.Form):
new_title = forms.CharField()
new_slug = forms.CharField()
- copy_subpages = forms.BooleanField(widget=forms.RadioSelect(choices=(YES_OR_NO)), required=False)
+ copy_subpages = forms.BooleanField(required=False)
+ publish_copies = forms.BooleanField(required=False)
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
index d93f9e9b9..019bee779 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
@@ -14,10 +14,17 @@
{% include "wagtailadmin/shared/field_as_li.html" with field=form.new_title %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.new_slug %}
- {% if subpage_count %}
+ {% if pages_to_copy.count > 1 %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.copy_subpages %}
- {% blocktrans %}This will copy {{ subpage_count }} subpages.{% endblocktrans %}
+ {% blocktrans with copy_page_count=pages_to_copy.count|add:'-1' %}This will copy {{ copy_page_count }} subpages.{% endblocktrans %}
+
+ {% endif %}
+
+ {% if can_publish %}
+ {% include "wagtailadmin/shared/field_as_li.html" with field=form.publish_copies %}
+
+ {% blocktrans with live_page_count=pages_to_copy.live.count %}{{ live_page_count }} of the pages being copied are live. Would you like to publish their copies?{% endblocktrans %}
{% endif %}
diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py
index e9a3a32a1..651ef703a 100644
--- a/wagtail/wagtailadmin/tests/test_pages_views.py
+++ b/wagtail/wagtailadmin/tests/test_pages_views.py
@@ -2,7 +2,7 @@ from datetime import timedelta
from django.test import TestCase
from django.core.urlresolvers import reverse
-from django.contrib.auth.models import User, Permission
+from django.contrib.auth.models import User, Group, Permission
from django.core import mail
from django.core.paginator import Paginator
from django.utils import timezone
@@ -796,19 +796,41 @@ class TestPageCopy(TestCase, WagtailTestUtils):
self.root_page = Page.objects.get(id=2)
# Create a page
- self.test_page = SimplePage()
- self.test_page.title = "Hello world!"
- self.test_page.slug = "hello-world"
- self.root_page.add_child(instance=self.test_page)
+ self.test_page = self.root_page.add_child(instance=SimplePage(
+ title="Hello world!",
+ slug='hello-world',
+ live=True,
+ ))
+
+ # Create a couple of child pages
+ self.test_child_page = self.test_page.add_child(instance=SimplePage(
+ title="Child page",
+ slug='child-page',
+ live=True,
+ ))
+
+ self.test_unpublished_child_page = self.test_page.add_child(instance=SimplePage(
+ title="Unpublished Child page",
+ slug='unpublished-child-page',
+ live=False,
+ ))
# Login
self.user = self.login()
def test_page_copy(self):
response = self.client.get(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )))
+
+ # Check response
self.assertEqual(response.status_code, 200)
self.assertTemplateUsed(response, 'wagtailadmin/pages/copy.html')
+ # Make sure all fields are in the form
+ self.assertContains(response, "New title")
+ self.assertContains(response, "New slug")
+ self.assertContains(response, "Copy subpages")
+ self.assertContains(response, "Publish copies")
+
def test_page_copy_bad_permissions(self):
# Remove privileges from user
self.user.is_superuser = False
@@ -828,17 +850,101 @@ class TestPageCopy(TestCase, WagtailTestUtils):
'new_title': "Hello world 2",
'new_slug': 'hello-world-2',
'copy_subpages': False,
+ 'publish_copies': False,
}
response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
# Check that the user was redirected to the parents explore page
self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, )))
+ # Get copy
+ page_copy = self.root_page.get_children().filter(slug='hello-world-2').first()
+
# Check that the copy exists
- self.assertTrue(self.root_page.get_children().filter(slug='hello-world-2').exists())
+ self.assertNotEqual(page_copy, None)
+
+ # Check that the copy is not live
+ self.assertFalse(page_copy.live)
# Check that the owner of the page is set correctly
- self.assertEqual(self.root_page.get_children().filter(slug='hello-world-2').first().owner, self.user)
+ self.assertEqual(page_copy.owner, self.user)
+
+ # Check that the children were not copied
+ self.assertEqual(page_copy.get_children().count(), 0)
+
+ def test_page_copy_post_copy_subpages(self):
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello-world-2',
+ 'copy_subpages': True,
+ 'publish_copies': False,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Check that the user was redirected to the parents explore page
+ self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, )))
+
+ # Get copy
+ page_copy = self.root_page.get_children().filter(slug='hello-world-2').first()
+
+ # Check that the copy exists
+ self.assertNotEqual(page_copy, None)
+
+ # Check that the copy is not live
+ self.assertFalse(page_copy.live)
+
+ # Check that the owner of the page is set correctly
+ self.assertEqual(page_copy.owner, self.user)
+
+ # Check that the children were copied
+ self.assertEqual(page_copy.get_children().count(), 2)
+
+ # Check the the child pages
+ # Neither of them should be live
+ child_copy = page_copy.get_children().filter(slug='child-page').first()
+ self.assertNotEqual(child_copy, None)
+ self.assertFalse(child_copy.live)
+
+ unpublished_child_copy = page_copy.get_children().filter(slug='unpublished-child-page').first()
+ self.assertNotEqual(unpublished_child_copy, None)
+ self.assertFalse(unpublished_child_copy.live)
+
+ def test_page_copy_post_copy_subpages_publish_copies(self):
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello-world-2',
+ 'copy_subpages': True,
+ 'publish_copies': True,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Check that the user was redirected to the parents explore page
+ self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, )))
+
+ # Get copy
+ page_copy = self.root_page.get_children().filter(slug='hello-world-2').first()
+
+ # Check that the copy exists
+ self.assertNotEqual(page_copy, None)
+
+ # Check that the copy is live
+ self.assertTrue(page_copy.live)
+
+ # Check that the owner of the page is set correctly
+ self.assertEqual(page_copy.owner, self.user)
+
+ # Check that the children were copied
+ self.assertEqual(page_copy.get_children().count(), 2)
+
+ # Check the the child pages
+ # The child_copy should be live but the unpublished_child_copy shouldn't
+ child_copy = page_copy.get_children().filter(slug='child-page').first()
+ self.assertNotEqual(child_copy, None)
+ self.assertTrue(child_copy.live)
+
+ unpublished_child_copy = page_copy.get_children().filter(slug='unpublished-child-page').first()
+ self.assertNotEqual(unpublished_child_copy, None)
+ self.assertFalse(unpublished_child_copy.live)
def test_page_copy_post_existing_slug(self):
# This tests the existing slug checking on page copy
@@ -857,6 +963,71 @@ class TestPageCopy(TestCase, WagtailTestUtils):
# Check that a form error was raised
self.assertFormError(response, 'form', 'new_slug', "This slug is already in use")
+ def test_page_copy_no_publish_permission(self):
+ # Turn user into an editor who can add pages but not publish them
+ self.user.is_superuser = False
+ self.user.groups.add(
+ Group.objects.get(name="Editors"),
+ )
+ self.user.save()
+
+ # Get copy page
+ response = self.client.get(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )))
+
+ # The user should have access to the copy page
+ self.assertEqual(response.status_code, 200)
+ self.assertTemplateUsed(response, 'wagtailadmin/pages/copy.html')
+
+ # Make sure the "publish copies" field is hidden
+ self.assertNotContains(response, "Publish copies")
+
+ def test_page_copy_no_publish_permission_post_copy_subpages_publish_copies(self):
+ # This tests that unprivileged users cannot publish copied pages even if they hack their browser
+
+ # Turn user into an editor who can add pages but not publish them
+ self.user.is_superuser = False
+ self.user.groups.add(
+ Group.objects.get(name="Editors"),
+ )
+ self.user.save()
+
+ # Post
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello-world-2',
+ 'copy_subpages': True,
+ 'publish_copies': True,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Check that the user was redirected to the parents explore page
+ self.assertRedirects(response, reverse('wagtailadmin_explore', args=(self.root_page.id, )))
+
+ # Get copy
+ page_copy = self.root_page.get_children().filter(slug='hello-world-2').first()
+
+ # Check that the copy exists
+ self.assertNotEqual(page_copy, None)
+
+ # Check that the copy is not live
+ self.assertFalse(page_copy.live)
+
+ # Check that the owner of the page is set correctly
+ self.assertEqual(page_copy.owner, self.user)
+
+ # Check that the children were copied
+ self.assertEqual(page_copy.get_children().count(), 2)
+
+ # Check the the child pages
+ # Neither of them should be live
+ child_copy = page_copy.get_children().filter(slug='child-page').first()
+ self.assertNotEqual(child_copy, None)
+ self.assertFalse(child_copy.live)
+
+ unpublished_child_copy = page_copy.get_children().filter(slug='unpublished-child-page').first()
+ self.assertNotEqual(unpublished_child_copy, None)
+ self.assertFalse(unpublished_child_copy.live)
+
class TestPageUnpublish(TestCase, WagtailTestUtils):
def setUp(self):
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index d0dd21e2b..01110ccb0 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -635,18 +635,21 @@ def set_page_position(request, page_to_move_id):
@permission_required('wagtailadmin.access_admin')
def copy(request, page_id):
page = Page.objects.get(id=page_id)
- subpage_count = page.get_descendants().count()
parent_page = page.get_parent()
# Make sure this user has permission to add subpages on the parent
if not parent_page.permissions_for_user(request.user).can_add_subpage():
raise PermissionDenied
+ # Check if the user has permission to publish subpages on the parent
+ can_publish = parent_page.permissions_for_user(request.user).can_publish_subpage()
+
# Create the form
form = CopyForm(request.POST or None, initial={
'new_title': page.title,
'new_slug': page.slug,
'copy_subpages': True,
+ 'publish_copies': True,
})
# Stick an extra validator into the form to make sure that the slug is not already in use
@@ -668,12 +671,19 @@ def copy(request, page_id):
}
)
- # Assign usef of this request as the owner of all the new pages
+ # Check if we should keep copied subpages published
+ publish_copies = can_publish and form.cleaned_data['publish_copies']
+
+ # Unpublish copied pages if we need to
+ if not publish_copies:
+ new_page.get_descendants(inclusive=True).update(live=False)
+
+ # Assign user of this request as the owner of all the new pages
new_page.get_descendants(inclusive=True).update(owner=request.user)
# Give a success message back to the user
if form.cleaned_data['copy_subpages']:
- messages.success(request, _("Page '{0}' and {1} subpages copied.").format(page.title, subpage_count))
+ messages.success(request, _("Page '{0}' and {1} subpages copied.").format(page.title, new_page.get_descendants().count()))
else:
messages.success(request, _("Page '{0}' copied.").format(page.title))
@@ -682,8 +692,9 @@ def copy(request, page_id):
return render(request, 'wagtailadmin/pages/copy.html', {
'page': page,
- 'subpage_count': subpage_count,
+ 'pages_to_copy': page.get_descendants(inclusive=True),
'parent_page': parent_page,
+ 'can_publish': can_publish,
'form': form,
})
From 9a86167f6e87749e1bc8d4e8fcb5215fc7d32546 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 14:13:20 +0100
Subject: [PATCH 05/29] Hide the 'publish copies' checkbox if there is nothing
to publish
---
wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html | 2 +-
wagtail/wagtailadmin/views/pages.py | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
index 019bee779..526705c15 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
@@ -21,7 +21,7 @@
{% endif %}
- {% if can_publish %}
+ {% if pages_to_publish.count and can_publish %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.publish_copies %}
{% blocktrans with live_page_count=pages_to_copy.live.count %}{{ live_page_count }} of the pages being copied are live. Would you like to publish their copies?{% endblocktrans %}
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index e194f9d3c..535db866e 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -726,10 +726,13 @@ def copy(request, page_id):
# Redirect to explore of parent page
return redirect('wagtailadmin_explore', parent_page.id)
+ pages_to_copy = page.get_descendants(inclusive=True)
+
return render(request, 'wagtailadmin/pages/copy.html', {
'page': page,
- 'pages_to_copy': page.get_descendants(inclusive=True),
+ 'pages_to_copy': pages_to_copy,
'parent_page': parent_page,
+ 'pages_to_publish': pages_to_copy.live(),
'can_publish': can_publish,
'form': form,
})
From 5bffa72c1ab26c93c79eab1b0fbb2095329ab70e Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 14:47:55 +0100
Subject: [PATCH 06/29] Pass 'page' to the constructor of CopyForm, so that we
can define a slug validation method there rather than pushing one in from the
view
---
wagtail/wagtailadmin/forms.py | 14 ++++++++++++++
wagtail/wagtailadmin/views/pages.py | 10 +---------
2 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index 51854e605..a2decf776 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -79,11 +79,25 @@ class PasswordResetForm(PasswordResetForm):
class CopyForm(forms.Form):
+ def __init__(self, *args, **kwargs):
+ # CopyPage must be passed a 'page' kwarg indicating the page to be copied
+ self.page = kwargs.pop('page')
+
+ return super(CopyForm, self).__init__(*args, **kwargs)
+
new_title = forms.CharField()
new_slug = forms.CharField()
copy_subpages = forms.BooleanField(required=False)
publish_copies = forms.BooleanField(required=False)
+ def clean_new_slug(self):
+ # Make sure the slug isn't already in use
+ slug = self.cleaned_data['new_slug']
+
+ if self.page.get_siblings(inclusive=True).filter(slug=slug).count():
+ raise forms.ValidationError(_("This slug is already in use"))
+ return slug
+
class PageViewRestrictionForm(forms.Form):
restriction_type = forms.ChoiceField(label="Visibility", choices=[
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index 535db866e..f0bc8aa81 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -681,21 +681,13 @@ def copy(request, page_id):
can_publish = parent_page.permissions_for_user(request.user).can_publish_subpage()
# Create the form
- form = CopyForm(request.POST or None, initial={
+ form = CopyForm(request.POST or None, page=page, initial={
'new_title': page.title,
'new_slug': page.slug,
'copy_subpages': True,
'publish_copies': True,
})
- # Stick an extra validator into the form to make sure that the slug is not already in use
- def clean_slug(slug):
- # Make sure the slug isn't already in use
- if parent_page.get_children().filter(slug=slug).count() > 0:
- raise ValidationError(_("This slug is already in use"))
- return slug
- form.fields['new_slug'].clean = clean_slug
-
# Check if user is submitting
if request.method == 'POST' and form.is_valid():
# Copy the page
From e1d1fc917f2f551cfe615fb358c73df701930f88 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 14:59:39 +0100
Subject: [PATCH 07/29] get CopyForm to set its own initial values so that we
don't have to pass them in
---
wagtail/wagtailadmin/forms.py | 10 +++++-----
wagtail/wagtailadmin/views/pages.py | 7 +------
2 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index a2decf776..fb1482413 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -82,13 +82,13 @@ class CopyForm(forms.Form):
def __init__(self, *args, **kwargs):
# CopyPage must be passed a 'page' kwarg indicating the page to be copied
self.page = kwargs.pop('page')
+ super(CopyForm, self).__init__(*args, **kwargs)
- return super(CopyForm, self).__init__(*args, **kwargs)
+ self.fields['new_title'] = forms.CharField(initial=self.page.title)
+ self.fields['new_slug'] = forms.CharField(initial=self.page.slug)
- new_title = forms.CharField()
- new_slug = forms.CharField()
- copy_subpages = forms.BooleanField(required=False)
- publish_copies = forms.BooleanField(required=False)
+ copy_subpages = forms.BooleanField(required=False, initial=True)
+ publish_copies = forms.BooleanField(required=False, initial=True)
def clean_new_slug(self):
# Make sure the slug isn't already in use
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index f0bc8aa81..625623db5 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -681,12 +681,7 @@ def copy(request, page_id):
can_publish = parent_page.permissions_for_user(request.user).can_publish_subpage()
# Create the form
- form = CopyForm(request.POST or None, page=page, initial={
- 'new_title': page.title,
- 'new_slug': page.slug,
- 'copy_subpages': True,
- 'publish_copies': True,
- })
+ form = CopyForm(request.POST or None, page=page)
# Check if user is submitting
if request.method == 'POST' and form.is_valid():
From 0f8e3cbe57dd850b2e49cc11422e5a5671f0fce9 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 15:05:47 +0100
Subject: [PATCH 08/29] Validate the slug field in CopyForm against invalid
characters
---
wagtail/wagtailadmin/forms.py | 2 +-
wagtail/wagtailadmin/tests/test_pages_views.py | 15 +++++++++++++++
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index fb1482413..a036dd92e 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -85,7 +85,7 @@ class CopyForm(forms.Form):
super(CopyForm, self).__init__(*args, **kwargs)
self.fields['new_title'] = forms.CharField(initial=self.page.title)
- self.fields['new_slug'] = forms.CharField(initial=self.page.slug)
+ self.fields['new_slug'] = forms.SlugField(initial=self.page.slug)
copy_subpages = forms.BooleanField(required=False, initial=True)
publish_copies = forms.BooleanField(required=False, initial=True)
diff --git a/wagtail/wagtailadmin/tests/test_pages_views.py b/wagtail/wagtailadmin/tests/test_pages_views.py
index 1df0f548b..765c21786 100644
--- a/wagtail/wagtailadmin/tests/test_pages_views.py
+++ b/wagtail/wagtailadmin/tests/test_pages_views.py
@@ -1127,6 +1127,21 @@ class TestPageCopy(TestCase, WagtailTestUtils):
# Check that a form error was raised
self.assertFormError(response, 'form', 'new_slug', "This slug is already in use")
+ def test_page_copy_post_invalid_slug(self):
+ # Attempt to copy the page but set an invalid slug string
+ post_data = {
+ 'new_title': "Hello world 2",
+ 'new_slug': 'hello world!',
+ 'copy_subpages': False,
+ }
+ response = self.client.post(reverse('wagtailadmin_pages_copy', args=(self.test_page.id, )), post_data)
+
+ # Should not be redirected (as the save should fail)
+ self.assertEqual(response.status_code, 200)
+
+ # Check that a form error was raised
+ self.assertFormError(response, 'form', 'new_slug', "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.")
+
def test_page_copy_no_publish_permission(self):
# Turn user into an editor who can add pages but not publish them
self.user.is_superuser = False
From b5f63d13b177152695b5ff8d8f35514ced5646aa Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 15:34:07 +0100
Subject: [PATCH 09/29] Move the 'should we offer the copy_subpages checkbox or
not' logic into CopyForm itself. This also allows us to move the help text
into the actual help_text property, which fixes the dodgy spacing on the form
field
---
wagtail/wagtailadmin/forms.py | 7 ++++++-
.../wagtailadmin/templates/wagtailadmin/pages/copy.html | 7 ++-----
wagtail/wagtailadmin/views/pages.py | 9 +++------
3 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index a036dd92e..2f6680c42 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -87,7 +87,12 @@ class CopyForm(forms.Form):
self.fields['new_title'] = forms.CharField(initial=self.page.title)
self.fields['new_slug'] = forms.SlugField(initial=self.page.slug)
- copy_subpages = forms.BooleanField(required=False, initial=True)
+ pages_to_copy_count = self.page.get_descendants(inclusive=True).count()
+ if pages_to_copy_count > 1:
+ subpage_count = pages_to_copy_count - 1
+ self.fields['copy_subpages'] = forms.BooleanField(required=False, initial=True,
+ help_text=_("This will copy %(count)s subpages.") % {'count': subpage_count})
+
publish_copies = forms.BooleanField(required=False, initial=True)
def clean_new_slug(self):
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
index 526705c15..a2d093e37 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
@@ -14,17 +14,14 @@
{% include "wagtailadmin/shared/field_as_li.html" with field=form.new_title %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.new_slug %}
- {% if pages_to_copy.count > 1 %}
+ {% if form.copy_subpages %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.copy_subpages %}
-
- {% blocktrans with copy_page_count=pages_to_copy.count|add:'-1' %}This will copy {{ copy_page_count }} subpages.{% endblocktrans %}
-
{% endif %}
{% if pages_to_publish.count and can_publish %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.publish_copies %}
- {% blocktrans with live_page_count=pages_to_copy.live.count %}{{ live_page_count }} of the pages being copied are live. Would you like to publish their copies?{% endblocktrans %}
+ {% blocktrans with live_page_count=pages_to_publish.count %}{{ live_page_count }} of the pages being copied are live. Would you like to publish their copies?{% endblocktrans %}
{% endif %}
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index 625623db5..74e47deb9 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -687,7 +687,7 @@ def copy(request, page_id):
if request.method == 'POST' and form.is_valid():
# Copy the page
new_page = page.copy(
- recursive=form.cleaned_data['copy_subpages'],
+ recursive=form.cleaned_data.get('copy_subpages'),
update_attrs={
'title': form.cleaned_data['new_title'],
'slug': form.cleaned_data['new_slug'],
@@ -705,7 +705,7 @@ def copy(request, page_id):
new_page.get_descendants(inclusive=True).update(owner=request.user)
# Give a success message back to the user
- if form.cleaned_data['copy_subpages']:
+ if form.cleaned_data.get('copy_subpages'):
messages.success(request, _("Page '{0}' and {1} subpages copied.").format(page.title, new_page.get_descendants().count()))
else:
messages.success(request, _("Page '{0}' copied.").format(page.title))
@@ -713,13 +713,10 @@ def copy(request, page_id):
# Redirect to explore of parent page
return redirect('wagtailadmin_explore', parent_page.id)
- pages_to_copy = page.get_descendants(inclusive=True)
-
return render(request, 'wagtailadmin/pages/copy.html', {
'page': page,
- 'pages_to_copy': pages_to_copy,
'parent_page': parent_page,
- 'pages_to_publish': pages_to_copy.live(),
+ 'pages_to_publish': page.get_descendants(inclusive=True).live(),
'can_publish': can_publish,
'form': form,
})
From 37b8f22c4b5e73718665b7f2185f15a36b083a62 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 15:40:34 +0100
Subject: [PATCH 10/29] Submit button on copy page should not say 'yes',
because the form is not presented as an 'are you sure?' confirmation message
---
wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
index a2d093e37..2f675e6cc 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
@@ -26,7 +26,7 @@
{% endif %}
-
+
{% endblock %}
From 858dd11cc658e36d03f2da40402a30330d6f85b9 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 16:01:51 +0100
Subject: [PATCH 11/29] Move the 'should we display the publish_copies
checkbox' logic into CopyForm
---
wagtail/wagtailadmin/forms.py | 15 +++++++++++----
.../templates/wagtailadmin/pages/copy.html | 5 +----
wagtail/wagtailadmin/views/pages.py | 7 ++-----
3 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index 2f6680c42..2f6f658b7 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -82,18 +82,25 @@ class CopyForm(forms.Form):
def __init__(self, *args, **kwargs):
# CopyPage must be passed a 'page' kwarg indicating the page to be copied
self.page = kwargs.pop('page')
+ can_publish = kwargs.pop('can_publish')
super(CopyForm, self).__init__(*args, **kwargs)
self.fields['new_title'] = forms.CharField(initial=self.page.title)
self.fields['new_slug'] = forms.SlugField(initial=self.page.slug)
- pages_to_copy_count = self.page.get_descendants(inclusive=True).count()
- if pages_to_copy_count > 1:
- subpage_count = pages_to_copy_count - 1
+ pages_to_copy = self.page.get_descendants(inclusive=True)
+ subpage_count = pages_to_copy.count() - 1
+ if subpage_count > 0:
self.fields['copy_subpages'] = forms.BooleanField(required=False, initial=True,
help_text=_("This will copy %(count)s subpages.") % {'count': subpage_count})
- publish_copies = forms.BooleanField(required=False, initial=True)
+ if can_publish:
+ pages_to_publish_count = pages_to_copy.live().count()
+ if pages_to_publish_count > 0:
+ self.fields['publish_copies'] = forms.BooleanField(
+ required=False, initial=True,
+ help_text=_("%(count)s of the pages being copied are live. Would you like to publish their copies?") % {'count': pages_to_publish_count}
+ )
def clean_new_slug(self):
# Make sure the slug isn't already in use
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
index 2f675e6cc..1a645c16f 100644
--- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
+++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/copy.html
@@ -18,11 +18,8 @@
{% include "wagtailadmin/shared/field_as_li.html" with field=form.copy_subpages %}
{% endif %}
- {% if pages_to_publish.count and can_publish %}
+ {% if form.publish_copies %}
{% include "wagtailadmin/shared/field_as_li.html" with field=form.publish_copies %}
-
- {% blocktrans with live_page_count=pages_to_publish.count %}{{ live_page_count }} of the pages being copied are live. Would you like to publish their copies?{% endblocktrans %}
-
{% endif %}
diff --git a/wagtail/wagtailadmin/views/pages.py b/wagtail/wagtailadmin/views/pages.py
index 74e47deb9..3de6f7cb5 100644
--- a/wagtail/wagtailadmin/views/pages.py
+++ b/wagtail/wagtailadmin/views/pages.py
@@ -681,7 +681,7 @@ def copy(request, page_id):
can_publish = parent_page.permissions_for_user(request.user).can_publish_subpage()
# Create the form
- form = CopyForm(request.POST or None, page=page)
+ form = CopyForm(request.POST or None, page=page, can_publish=can_publish)
# Check if user is submitting
if request.method == 'POST' and form.is_valid():
@@ -695,7 +695,7 @@ def copy(request, page_id):
)
# Check if we should keep copied subpages published
- publish_copies = can_publish and form.cleaned_data['publish_copies']
+ publish_copies = can_publish and form.cleaned_data.get('publish_copies')
# Unpublish copied pages if we need to
if not publish_copies:
@@ -715,9 +715,6 @@ def copy(request, page_id):
return render(request, 'wagtailadmin/pages/copy.html', {
'page': page,
- 'parent_page': parent_page,
- 'pages_to_publish': page.get_descendants(inclusive=True).live(),
- 'can_publish': can_publish,
'form': form,
})
From a14f6041425e13d0f97e69016f77d5116040ebd1 Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 16:14:07 +0100
Subject: [PATCH 12/29] Customise the label and help text of the 'publish
copies' field when there are no subpages
---
wagtail/wagtailadmin/forms.py | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index 2f6f658b7..83ad3e6c4 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -97,9 +97,16 @@ class CopyForm(forms.Form):
if can_publish:
pages_to_publish_count = pages_to_copy.live().count()
if pages_to_publish_count > 0:
+ # In the specific case that there are no subpages, customise the field label and help text
+ if subpage_count == 0:
+ label = 'Publish copied page'
+ help_text = _("This page is live. Would you like to publish its copy as well?")
+ else:
+ label = 'Publish copies'
+ help_text = _("%(count)s of the pages being copied are live. Would you like to publish their copies?") % {'count': pages_to_publish_count}
+
self.fields['publish_copies'] = forms.BooleanField(
- required=False, initial=True,
- help_text=_("%(count)s of the pages being copied are live. Would you like to publish their copies?") % {'count': pages_to_publish_count}
+ required=False, initial=True, label=label, help_text=help_text
)
def clean_new_slug(self):
From 455159378f2213bf4f2a061927add1537e1cf5ad Mon Sep 17 00:00:00 2001
From: Matt Westcott
Date: Fri, 1 Aug 2014 16:21:25 +0100
Subject: [PATCH 13/29] Fix translations and pluralisation within CopyForm
---
wagtail/wagtailadmin/forms.py | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py
index 83ad3e6c4..866ce66a1 100644
--- a/wagtail/wagtailadmin/forms.py
+++ b/wagtail/wagtailadmin/forms.py
@@ -2,7 +2,7 @@ from django import forms
from django.contrib.auth import get_user_model
from django.contrib.auth.forms import AuthenticationForm, PasswordResetForm
from django.utils.translation import ugettext as _
-from django.utils.translation import ugettext_lazy
+from django.utils.translation import ungettext, ugettext_lazy
class SearchForm(forms.Form):
@@ -85,25 +85,32 @@ class CopyForm(forms.Form):
can_publish = kwargs.pop('can_publish')
super(CopyForm, self).__init__(*args, **kwargs)
- self.fields['new_title'] = forms.CharField(initial=self.page.title)
- self.fields['new_slug'] = forms.SlugField(initial=self.page.slug)
+ self.fields['new_title'] = forms.CharField(initial=self.page.title, label=_("New title"))
+ self.fields['new_slug'] = forms.SlugField(initial=self.page.slug, label=_("New slug"))
pages_to_copy = self.page.get_descendants(inclusive=True)
subpage_count = pages_to_copy.count() - 1
if subpage_count > 0:
- self.fields['copy_subpages'] = forms.BooleanField(required=False, initial=True,
- help_text=_("This will copy %(count)s subpages.") % {'count': subpage_count})
+ self.fields['copy_subpages'] = forms.BooleanField(
+ required=False, initial=True, label=_("Copy subpages"),
+ help_text=ungettext(
+ "This will copy %(count)s subpage.",
+ "This will copy %(count)s subpages.",
+ subpage_count) % {'count': subpage_count})
if can_publish:
pages_to_publish_count = pages_to_copy.live().count()
if pages_to_publish_count > 0:
# In the specific case that there are no subpages, customise the field label and help text
if subpage_count == 0:
- label = 'Publish copied page'
+ label = _("Publish copied page")
help_text = _("This page is live. Would you like to publish its copy as well?")
else:
- label = 'Publish copies'
- help_text = _("%(count)s of the pages being copied are live. Would you like to publish their copies?") % {'count': pages_to_publish_count}
+ label = _("Publish copies")
+ help_text = ungettext(
+ "%(count)s of the pages being copied is live. Would you like to publish its copy?",
+ "%(count)s of the pages being copied are live. Would you like to publish their copies?",
+ pages_to_publish_count) % {'count': pages_to_publish_count}
self.fields['publish_copies'] = forms.BooleanField(
required=False, initial=True, label=label, help_text=help_text
From f14662ae101bcb4aca77d0f56e9602610841c776 Mon Sep 17 00:00:00 2001
From: Karl Hobley
Date: Fri, 1 Aug 2014 16:40:58 +0100
Subject: [PATCH 14/29] Rerun makemessages. Fixes #521
---
.../locale/en/LC_MESSAGES/django.po | 10 +-
.../locale/bg/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/ca/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/de/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/el/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/en/LC_MESSAGES/django.po | 169 +++++++++++-----
.../locale/es/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/eu/LC_MESSAGES/django.po | 170 ++++++++++++-----
.../locale/fr/LC_MESSAGES/django.po | 179 ++++++++++++-----
.../locale/gl/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/mn/LC_MESSAGES/django.po | 169 +++++++++++-----
.../locale/pl/LC_MESSAGES/django.po | 180 +++++++++++++-----
.../locale/pt_BR/LC_MESSAGES/django.po | 177 ++++++++++++-----
.../locale/ro/LC_MESSAGES/django.po | 180 +++++++++++++-----
.../locale/zh/LC_MESSAGES/django.po | 174 ++++++++++++-----
.../locale/zh_TW/LC_MESSAGES/django.po | 174 ++++++++++++-----
.../locale/bg/LC_MESSAGES/django.po | 28 +--
.../locale/ca/LC_MESSAGES/django.po | 28 +--
.../locale/de/LC_MESSAGES/django.po | 28 +--
.../locale/el/LC_MESSAGES/django.po | 28 +--
.../locale/en/LC_MESSAGES/django.po | 28 +--
.../locale/es/LC_MESSAGES/django.po | 28 +--
.../locale/eu/LC_MESSAGES/django.po | 28 +--
.../locale/fr/LC_MESSAGES/django.po | 28 +--
.../locale/gl/LC_MESSAGES/django.po | 28 +--
.../locale/mn/LC_MESSAGES/django.po | 28 +--
.../locale/pl/LC_MESSAGES/django.po | 28 +--
.../locale/ro/LC_MESSAGES/django.po | 28 +--
.../locale/zh/LC_MESSAGES/django.po | 28 +--
.../locale/zh_TW/LC_MESSAGES/django.po | 28 +--
.../locale/bg/LC_MESSAGES/django.po | 46 ++++-
.../locale/ca/LC_MESSAGES/django.po | 46 ++++-
.../locale/de/LC_MESSAGES/django.po | 46 ++++-
.../locale/el/LC_MESSAGES/django.po | 46 ++++-
.../locale/en/LC_MESSAGES/django.po | 46 ++++-
.../locale/es/LC_MESSAGES/django.po | 46 ++++-
.../locale/eu/LC_MESSAGES/django.po | 46 ++++-
.../locale/fr/LC_MESSAGES/django.po | 46 ++++-
.../locale/gl/LC_MESSAGES/django.po | 46 ++++-
.../locale/mn/LC_MESSAGES/django.po | 46 ++++-
.../locale/pl/LC_MESSAGES/django.po | 46 ++++-
.../locale/ro/LC_MESSAGES/django.po | 46 ++++-
.../locale/zh/LC_MESSAGES/django.po | 46 ++++-
.../locale/zh_TW/LC_MESSAGES/django.po | 46 ++++-
.../locale/bg/LC_MESSAGES/django.po | 2 +-
.../locale/ca/LC_MESSAGES/django.po | 2 +-
.../locale/de/LC_MESSAGES/django.po | 2 +-
.../locale/el/LC_MESSAGES/django.po | 2 +-
.../locale/en/LC_MESSAGES/django.po | 2 +-
.../locale/es/LC_MESSAGES/django.po | 2 +-
.../locale/eu/LC_MESSAGES/django.po | 2 +-
.../locale/fr/LC_MESSAGES/django.po | 2 +-
.../locale/gl/LC_MESSAGES/django.po | 2 +-
.../locale/mn/LC_MESSAGES/django.po | 2 +-
.../locale/pl/LC_MESSAGES/django.po | 2 +-
.../locale/ro/LC_MESSAGES/django.po | 2 +-
.../locale/zh/LC_MESSAGES/django.po | 2 +-
.../locale/zh_TW/LC_MESSAGES/django.po | 2 +-
.../locale/en/LC_MESSAGES/django.po | 4 +-
.../locale/bg/LC_MESSAGES/django.po | 172 ++++++++++++++---
.../locale/ca/LC_MESSAGES/django.po | 176 ++++++++++++++---
.../locale/de/LC_MESSAGES/django.po | 172 ++++++++++++++---
.../locale/el/LC_MESSAGES/django.po | 168 +++++++++++++---
.../locale/en/LC_MESSAGES/django.po | 163 +++++++++++++---
.../locale/es/LC_MESSAGES/django.po | 176 ++++++++++++++---
.../locale/eu/LC_MESSAGES/django.po | 163 +++++++++++++---
.../locale/fr/LC_MESSAGES/django.po | 172 ++++++++++++++---
.../locale/gl/LC_MESSAGES/django.po | 176 ++++++++++++++---
.../locale/mn/LC_MESSAGES/django.po | 168 +++++++++++++---
.../locale/pl/LC_MESSAGES/django.po | 176 ++++++++++++++---
.../locale/ro/LC_MESSAGES/django.po | 168 +++++++++++++---
.../locale/zh/LC_MESSAGES/django.po | 168 +++++++++++++---
.../locale/zh_TW/LC_MESSAGES/django.po | 168 +++++++++++++---
.../locale/bg/LC_MESSAGES/django.po | 4 +-
.../locale/ca/LC_MESSAGES/django.po | 4 +-
.../locale/de/LC_MESSAGES/django.po | 4 +-
.../locale/el/LC_MESSAGES/django.po | 4 +-
.../locale/en/LC_MESSAGES/django.po | 4 +-
.../locale/es/LC_MESSAGES/django.po | 4 +-
.../locale/eu/LC_MESSAGES/django.po | 4 +-
.../locale/fr/LC_MESSAGES/django.po | 4 +-
.../locale/gl/LC_MESSAGES/django.po | 4 +-
.../locale/mn/LC_MESSAGES/django.po | 4 +-
.../locale/pl/LC_MESSAGES/django.po | 4 +-
.../locale/ro/LC_MESSAGES/django.po | 4 +-
.../locale/zh/LC_MESSAGES/django.po | 4 +-
.../locale/zh_TW/LC_MESSAGES/django.po | 4 +-
.../locale/bg/LC_MESSAGES/django.po | 25 +--
.../locale/ca/LC_MESSAGES/django.po | 26 +--
.../locale/de/LC_MESSAGES/django.po | 26 +--
.../locale/el/LC_MESSAGES/django.po | 26 +--
.../locale/en/LC_MESSAGES/django.po | 24 +--
.../locale/es/LC_MESSAGES/django.po | 26 +--
.../locale/eu/LC_MESSAGES/django.po | 24 +--
.../locale/fr/LC_MESSAGES/django.po | 24 +--
.../locale/gl/LC_MESSAGES/django.po | 26 +--
.../locale/mn/LC_MESSAGES/django.po | 24 +--
.../locale/pl/LC_MESSAGES/django.po | 26 +--
.../locale/ro/LC_MESSAGES/django.po | 26 +--
.../locale/zh/LC_MESSAGES/django.po | 26 +--
.../locale/zh_TW/LC_MESSAGES/django.po | 26 +--
.../locale/bg/LC_MESSAGES/django.po | 40 +++-
.../locale/ca/LC_MESSAGES/django.po | 40 +++-
.../locale/de/LC_MESSAGES/django.po | 40 +++-
.../locale/el/LC_MESSAGES/django.po | 40 +++-
.../locale/en/LC_MESSAGES/django.po | 40 +++-
.../locale/es/LC_MESSAGES/django.po | 40 +++-
.../locale/eu/LC_MESSAGES/django.po | 40 +++-
.../locale/fr/LC_MESSAGES/django.po | 40 +++-
.../locale/gl/LC_MESSAGES/django.po | 40 +++-
.../locale/mn/LC_MESSAGES/django.po | 40 +++-
.../locale/pl/LC_MESSAGES/django.po | 40 +++-
.../locale/ro/LC_MESSAGES/django.po | 40 +++-
.../locale/zh/LC_MESSAGES/django.po | 40 +++-
.../locale/zh_TW/LC_MESSAGES/django.po | 40 +++-
.../locale/bg/LC_MESSAGES/django.po | 4 +-
.../locale/ca/LC_MESSAGES/django.po | 4 +-
.../locale/de/LC_MESSAGES/django.po | 4 +-
.../locale/el/LC_MESSAGES/django.po | 4 +-
.../locale/en/LC_MESSAGES/django.po | 4 +-
.../locale/es/LC_MESSAGES/django.po | 4 +-
.../locale/eu/LC_MESSAGES/django.po | 4 +-
.../locale/fr/LC_MESSAGES/django.po | 4 +-
.../locale/gl/LC_MESSAGES/django.po | 4 +-
.../locale/mn/LC_MESSAGES/django.po | 4 +-
.../locale/pl/LC_MESSAGES/django.po | 4 +-
.../locale/ro/LC_MESSAGES/django.po | 4 +-
.../locale/zh/LC_MESSAGES/django.po | 4 +-
.../locale/zh_TW/LC_MESSAGES/django.po | 4 +-
129 files changed, 5328 insertions(+), 1797 deletions(-)
diff --git a/wagtail/contrib/wagtailstyleguide/locale/en/LC_MESSAGES/django.po b/wagtail/contrib/wagtailstyleguide/locale/en/LC_MESSAGES/django.po
index 9e52f6985..661d514a3 100644
--- a/wagtail/contrib/wagtailstyleguide/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/contrib/wagtailstyleguide/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:57+0000\n"
+"POT-Creation-Date: 2014-08-01 16:40+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -33,15 +33,15 @@ msgstr ""
msgid "Error message"
msgstr ""
-#: wagtail_hooks.py:20 templates/wagtailstyleguide/base.html:12
-#: templates/wagtailstyleguide/base.html:16
+#: wagtail_hooks.py:21 templates/wagtailstyleguide/base.html:10
+#: templates/wagtailstyleguide/base.html:14
msgid "Styleguide"
msgstr ""
-#: templates/wagtailstyleguide/base.html:282
+#: templates/wagtailstyleguide/base.html:354
msgid "Save"
msgstr ""
-#: templates/wagtailstyleguide/base.html:282
+#: templates/wagtailstyleguide/base.html:354
msgid "Delete image"
msgstr ""
diff --git a/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
index 562920910..9df1c2709 100644
--- a/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -28,27 +28,27 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Фраза за търсене"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr ""
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr ""
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Въведете вашият имейл адрес за да си възстановите паролата"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Моля въведете вашият имейл адрес."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -56,21 +56,70 @@ msgstr ""
"Не можете да възстановите паролата си тук, понеже акаунта ви се менижира от "
"друг сървър."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Този имейл не е разпознат."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Промести %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Добавете подстраница"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Публикувай"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Този слъг е вече в употреба"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Публикувай"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Този имейл не е разпознат."
@@ -79,7 +128,7 @@ msgstr "Този имейл не е разпознат."
msgid "Dashboard"
msgstr "Работно Табло"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Меню"
@@ -232,12 +281,12 @@ msgstr "Имейл линк"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Търсене"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Файлов мениджър"
@@ -301,7 +350,7 @@ msgstr "Надолу"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Изтрий"
@@ -642,7 +691,7 @@ msgstr "Отмени публикуването на %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Отмени публикуването"
@@ -658,6 +707,21 @@ msgstr "Да, отмени публикуването"
msgid "Pages using"
msgstr "Страници използващи"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Промести %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Редактирайте тази страница"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -711,7 +775,7 @@ msgid "Exploring %(title)s"
msgstr "Преглед на %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Добави дъщерна страница"
@@ -732,42 +796,42 @@ msgstr "Позволете подредба на дъщерни страници
msgid "Drag"
msgstr "Плъзнете"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Мениджър подстраници на '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Мениджър"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Мениджър на дъщерни страници на '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Добавете дъщерна страница към '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Добавете подстраница"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Не бяха създадени никакви страници."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Защо не добавите една?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -778,7 +842,7 @@ msgstr ""
" Страница %(page_number)s от %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -788,7 +852,7 @@ msgstr ""
msgid "Previous"
msgstr "Предишно"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -951,6 +1015,13 @@ msgstr ""
msgid "Sat"
msgstr "Статус"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Настройки на профила"
@@ -990,64 +1061,70 @@ msgstr "Паролата ви бе променена успешно!"
msgid "Your preferences have been updated successfully!"
msgstr "Паролата ви бе променена успешно!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Този слъг е вече в употреба"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Страница '{0}' е публикувана."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Страница '{0}' е предоставена за модерация."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Страница '{0}' е създадена."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "Тази страница не можеше да бъде запазена поради валидационни грешки"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Страница '{0}' обновена."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "Тази страница не можеше да бъде запазена поради валидационни грешки"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Тази страница очаква да бъде модерирана"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Страница '{0}' е изтрита."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Страница '{0}' отменена от публикуване."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Страница '{0}' преместена."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Страница '{0}' обновена."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Страница '{0}' преместена."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "Страница '{0}' не очаква да бъде модерирана."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Страница '{0}' отхвърлена от публикуване."
diff --git a/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
index 6771d0d19..cc161546a 100644
--- a/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:58+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -27,27 +27,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Configuració de la pàgina comú"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Termini de cerca"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Introdueix el teu nom d'usuari"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Introdueix la contrassenya"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Escriu el teu correu per reiniciar la teva contrasenya"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Si us plau escriu el teu correu"
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -55,21 +55,70 @@ msgstr ""
"Ho sentim, no pots reiniciar la teva contrasenya aquí ja que la teva conta "
"d'usuari es administrada per un altre servidor"
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "No es reconeix aquesta adreça de correu"
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Mou %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Afegeix subpàgina"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publica"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Aquest llimac ja està en ús"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publica"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "No es reconeix aquesta adreça de correu"
@@ -78,7 +127,7 @@ msgstr "No es reconeix aquesta adreça de correu"
msgid "Dashboard"
msgstr "Tauler de control"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menú"
@@ -233,12 +282,12 @@ msgstr "Enllaç de correu electrònic"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Cercar"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorador"
@@ -302,7 +351,7 @@ msgstr "Baixa"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Esborra"
@@ -638,7 +687,7 @@ msgstr "Despublica %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Despublica"
@@ -654,6 +703,21 @@ msgstr "Si, despublicar"
msgid "Pages using"
msgstr "Pàgines en ús"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Mou %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Edita aquesta pàgina"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -707,7 +771,7 @@ msgid "Exploring %(title)s"
msgstr "Explorant %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Afegeix una pàgina filla"
@@ -728,42 +792,42 @@ msgstr "Activa l'ordenació de les pàgines fill"
msgid "Drag"
msgstr "Agafa"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explora les subpàgines de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Explora"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explora les pàgines filles de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Afegeix una pàgina filla a '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Afegeix subpàgina"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "No s'han creat pàgines."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Per què no afegeixes una?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -773,7 +837,7 @@ msgstr ""
"\n"
"Pàgina %(page_number)s de %(num_pages)s."
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -783,7 +847,7 @@ msgstr ""
msgid "Previous"
msgstr "Anterior"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -943,6 +1007,13 @@ msgstr ""
msgid "Sat"
msgstr "Estat"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Configuració del compte"
@@ -982,64 +1053,70 @@ msgstr "S'ha canviat la teva contrasenya!"
msgid "Your preferences have been updated successfully!"
msgstr "S'ha canviat la teva contrasenya!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Aquest llimac ja està en ús"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Pàgina '{0}' publicada."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Pàgina '{0}' enviada per revisió"
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Pàgina '{0}' creada."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "La pàgina no s'ha pogut guardar degut a errors de validació"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Pàgina '{0}' actualitzada."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "La pàgina no s'ha pogut guardar degut a errors de validació"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Aquesta pàgina està esperant moderació"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Pàgina '{0}' eliminada."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Pàgina '{0}' despublicada."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Pàgina '{0}' moguda."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Pàgina '{0}' actualitzada."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Pàgina '{0}' moguda."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "La pàgina '{0}' ja no es troba esperant moderació."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "La pàgina '{0}' ha estat rebutjada per publicació"
diff --git a/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
index 531249833..22908835a 100644
--- a/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-24 19:00+0000\n"
"Last-Translator: pcraston \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -29,27 +29,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Allgemeine Seiten Konfiguration"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Suchbegriff"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Bitte geben Sie Ihren Benutzernamen ein"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Geben Sie ihre Email Adresse ein um ihr Passwort zurückzusetzen."
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Bitte geben Sie ihre Email Adresse ein."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -57,21 +57,70 @@ msgstr ""
"Sie können Ihr Passwort hier leider nicht zurücksetzen, da Ihr Benutzerkonto "
"von einem anderen Server verwaltet wird."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Die Email-Adresse wurde nicht erkannt."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "%(title)s verschieben"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Untergeordnete Seite hinzufügen"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Veröffentlichen"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Der Kurztitel wird bereits verwendet"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Veröffentlichen"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Die Email-Adresse wurde nicht erkannt."
@@ -80,7 +129,7 @@ msgstr "Die Email-Adresse wurde nicht erkannt."
msgid "Dashboard"
msgstr "Dashboard"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menü"
@@ -236,12 +285,12 @@ msgstr "Email-Link"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Suche"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorer"
@@ -305,7 +354,7 @@ msgstr "Nach unten"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Löschen"
@@ -644,7 +693,7 @@ msgstr "%(title)s depublizieren"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Depublizieren"
@@ -660,6 +709,21 @@ msgstr "Ja, depublizieren"
msgid "Pages using"
msgstr "Benutzende Seiten"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "%(title)s verschieben"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Diese Seite bearbeiten"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -713,7 +777,7 @@ msgid "Exploring %(title)s"
msgstr "%(title)s durchstöbern"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Untergeordnete Seite hinzufügen"
@@ -734,42 +798,42 @@ msgstr "Sortierung von untergeordneten Seiten aktivieren"
msgid "Drag"
msgstr "Ziehen"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explorer Teilseiten von '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Durchstöbern"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explorer untergeordnete Seiten von '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Untergeordnete Seite zu '%(title)s' hinzufügen"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Untergeordnete Seite hinzufügen"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Es wurden keine Seiten erstellt."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Fügen Sie doch eine hinzu!"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -779,7 +843,7 @@ msgstr ""
"\n"
"Seite %(page_number)s von %(num_pages)s."
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -789,7 +853,7 @@ msgstr ""
msgid "Previous"
msgstr "Vorherige"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -950,6 +1014,13 @@ msgstr ""
msgid "Sat"
msgstr "Status"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Kontoeinstellungen"
@@ -989,68 +1060,74 @@ msgstr "Ihr Passwort wurde erfolgreich geändert."
msgid "Your preferences have been updated successfully!"
msgstr "Ihr Passwort wurde erfolgreich geändert."
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Der Kurztitel wird bereits verwendet"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Seite '{0}' veröffentlicht."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Seite '{0}' zur Freischaltung eingereicht."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Seite '{0}' erstellt."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr ""
"Aufgrund von Fehlern bei der Validierung konnte die Seite nicht gespeichert "
"werden."
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Seite '{0}' geändert."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr ""
"Aufgrund von Fehlern bei der Validierung konnte die Seite nicht gespeichert "
"werden."
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Diese Seite wartet derzeit auf Freischaltung"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Seite '{0}' gelöscht."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Seite '{0}' depubliziert."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Seite '{0}' verschoben."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Seite '{0}' geändert."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Seite '{0}' verschoben."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "Die Seite '{0}' wartet derzeit nicht auf Freischaltung."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Die Veröffentlichung der Seite '{0}' wurde abgelehnt."
diff --git a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
index 926012f39..bcf95784c 100644
--- a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:14+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -28,27 +28,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Κοινές ρυθμίσεις σελίδων"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Όρος αναζήτησης"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Εισάγετε το όνομα σας"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Εισάγετε τον κωδικό σας"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Εισάγετε τη διεύθυνση email σας για να ανανεώσετε τον κωδικό σας"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Συμπληρώσατε τη διεύθυνση email σας."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -56,21 +56,70 @@ msgstr ""
"Λυπούμαστε, δε μπορείτε να αλλάξετε τον κωδικό σας διότι το λογαριασμό "
"χρήστη σας τον διαχειρίζεται ένας διαφορετικός εξυπηρετητής."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Δε βρέθηκε το email."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Μετακίνηση της %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Προσθήκη υποσελίδας"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Έκδοση"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Το slug χρησιμοποιείται"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Έκδοση"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Δε βρέθηκε το email."
@@ -79,7 +128,7 @@ msgstr "Δε βρέθηκε το email."
msgid "Dashboard"
msgstr "Πίνακας ελέγχου"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Μενού"
@@ -232,12 +281,12 @@ msgstr "Σύνδεση με email"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Αναζήτηση"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Εξερευνητής"
@@ -301,7 +350,7 @@ msgstr "Μετακίνηση κάτω"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Διαγραφή"
@@ -644,7 +693,7 @@ msgstr "Απόεκδοστε τη σελίδα %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Αποέκδοση"
@@ -660,6 +709,21 @@ msgstr "Ναι, να αποεκδοθεί"
msgid "Pages using"
msgstr "Οι σελίδες που το χρησιμοποιούν"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Μετακίνηση της %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Διόρθωση της σελίδας"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -713,7 +777,7 @@ msgid "Exploring %(title)s"
msgstr "Εξερεύνηση %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Προσθήκη σελίδας-παιδί"
@@ -734,42 +798,42 @@ msgstr "Ενεργοποίηση ταξινόμησης σελίδων - παι
msgid "Drag"
msgstr "Τραβήξτε"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Εξερεύνηση υποσελίδων του '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Εξερεύνηση"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Εξερεύνηση σελίδων - παιδιά της '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Προσθήκη σελίδας - παιδί στην '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Προσθήκη υποσελίδας"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Δεν έχουν δημιουργηθεί σελίδες."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Θέλετε να προσθέσετε μία;"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -779,7 +843,7 @@ msgstr ""
"\n"
"Σελίδα %(page_number)s of %(num_pages)s."
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -789,7 +853,7 @@ msgstr ""
msgid "Previous"
msgstr "Προηγούμενο"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -950,6 +1014,13 @@ msgstr ""
msgid "Sat"
msgstr "Κατάσταση"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Επιλογές λογαριασμού"
@@ -989,64 +1060,70 @@ msgstr "Ο κωδικός σας αλλάχτηκε με επιτυχία!"
msgid "Your preferences have been updated successfully!"
msgstr "Ο κωδικός σας αλλάχτηκε με επιτυχία!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Το slug χρησιμοποιείται"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Η σελίδα '{0}' δημοσιεύθηκε."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Η σελίδα '{0}' στάλθηκε προς έλεγχο."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Η σελίδα '{0}' δημιουργήθηκε."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "Δε ήταν δυνατή η αποθήκευση της σελίδας λόγω σφαλμάτων ελέγχου"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Έγινε η αποθήκευση της σελίδας '{0}'."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "Δε ήταν δυνατή η αποθήκευση της σελίδας λόγω σφαλμάτων ελέγχου"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Η σελίδα δεν είναι προς έλεγχο"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Έγινε διαγραφή της σελίδας '{0}'."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Έγινε αποδημοσίευση της '{0}'."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Έγινε η μετακίνηση της σελίδας '{0}'."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Έγινε η αποθήκευση της σελίδας '{0}'."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Έγινε η μετακίνηση της σελίδας '{0}'."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "Η σελίδα '{0}' δεν είναι για έλεγχο."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Η δημοσίευση της σελίδας '{0}' απορρίφθηκε."
diff --git a/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po
index 40d56ccc2..999e25a1a 100644
--- a/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -25,46 +25,92 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr ""
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr ""
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr ""
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr ""
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr ""
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
msgstr ""
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr ""
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+msgid "New title"
+msgstr ""
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+msgid "Copy subpages"
+msgstr ""
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+msgid "Publish copies"
+msgstr ""
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr ""
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
msgid "Public"
msgstr ""
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
msgid "This field is required."
msgstr ""
@@ -72,7 +118,7 @@ msgstr ""
msgid "Dashboard"
msgstr ""
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr ""
@@ -218,12 +264,12 @@ msgstr ""
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr ""
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr ""
@@ -283,7 +329,7 @@ msgstr ""
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr ""
@@ -596,7 +642,7 @@ msgstr ""
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr ""
@@ -612,6 +658,20 @@ msgstr ""
msgid "Pages using"
msgstr ""
+#: templates/wagtailadmin/pages/copy.html:3
+#, python-format
+msgid "Copy %(title)s"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+msgid "Copy this page"
+msgstr ""
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -665,7 +725,7 @@ msgid "Exploring %(title)s"
msgstr ""
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr ""
@@ -686,42 +746,42 @@ msgstr ""
msgid "Drag"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:245
#, python-format
-msgid "Explorer child pages of '%(title)s'"
+msgid "Explore child pages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, python-format
msgid ""
"\n"
@@ -729,7 +789,7 @@ msgid ""
" "
msgstr ""
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -739,7 +799,7 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -890,6 +950,13 @@ msgstr ""
msgid "Sat"
msgstr ""
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr ""
@@ -927,62 +994,66 @@ msgstr ""
msgid "Your preferences have been updated successfully!"
msgstr ""
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr ""
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr ""
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr ""
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr ""
-#: views/pages.py:224
+#: views/pages.py:233
msgid "The page could not be created due to validation errors"
msgstr ""
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr ""
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr ""
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr ""
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr ""
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr ""
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr ""
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+msgid "Page '{0}' and {1} subpages copied."
+msgstr ""
+
+#: views/pages.py:711
+msgid "Page '{0}' copied."
+msgstr ""
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr ""
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr ""
diff --git a/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
index 4507d528f..3dd3b5c34 100644
--- a/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-23 10:24+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -28,27 +28,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Configuración común de página"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Término de búsqueda"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Introduce tu nombre de usuario"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Introduce contraseña"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Escribe tu dirección de correo para restablecer tu contraseña"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Rellena tu dirección de correo por favor."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -56,21 +56,70 @@ msgstr ""
"Lo sentimos, no puedes restablecer tu contraseña aquí porque tu cuenta es "
"gestionada por otro servidor."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "No se reconoce la dirección de correo."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Mover %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Añadir subpágina"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publicar"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Este slug ya está en uso"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publicar"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "No se reconoce la dirección de correo."
@@ -79,7 +128,7 @@ msgstr "No se reconoce la dirección de correo."
msgid "Dashboard"
msgstr "Panel de control"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menú"
@@ -234,12 +283,12 @@ msgstr "Enlace de correo electrónico"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Búsqueda"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorador"
@@ -305,7 +354,7 @@ msgstr "Bajar"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Eliminar"
@@ -652,7 +701,7 @@ msgstr "No publicar %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "No publicar"
@@ -668,6 +717,21 @@ msgstr "Sí, no publicar"
msgid "Pages using"
msgstr "Páginas usando"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Mover %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Editar esta página"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -721,7 +785,7 @@ msgid "Exploring %(title)s"
msgstr "Explorando %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Añadir página hija"
@@ -742,42 +806,42 @@ msgstr "Habilitar organización de páginas hijas"
msgid "Drag"
msgstr "Llevar"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explorar subpáginas de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Explorar"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explorar páginas hijas de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Añadir página hija a '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Añadir subpágina"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "No ha sido creada ninguna página."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Por qué no añadir una?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -788,7 +852,7 @@ msgstr ""
" Página %(page_number)s de %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -798,7 +862,7 @@ msgstr ""
msgid "Previous"
msgstr "Anterior"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -961,6 +1025,13 @@ msgstr ""
msgid "Sat"
msgstr "Estado"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Ajustes de cuenta"
@@ -1000,64 +1071,70 @@ msgstr "¡Tu contraseña ha sido cambiada con éxito!"
msgid "Your preferences have been updated successfully!"
msgstr "¡Tu contraseña ha sido cambiada con éxito!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Este slug ya está en uso"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Página '{0}' publicada."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Página '{0}' enviada para ser moderada."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Página '{0}' creada."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "La página no ha podido ser guardada debido a errores de validación"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Página '{0}' actualizada."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "La página no ha podido ser guardada debido a errores de validación"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "La página está a la espera de ser moderada"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Página '{0}' eliminada."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Página '{0}' no publicada."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Página '{0}' movida."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Página '{0}' actualizada."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Página '{0}' movida."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "La página '{0}' no está esperando a ser moderada."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Rechazada la publicación de la página '{0}'."
diff --git a/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
index 0210c6b96..3ac26dd3f 100644
--- a/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -27,27 +27,27 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Bilaketa terminoa"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr ""
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr ""
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Idatzi zure eposta helbidea zure pasahitza berrezartzeko"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Idatzi zure eposta helbidea mesedez."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -55,20 +55,66 @@ msgstr ""
"Sentitzen dugu, ezin duzu zure pasahitza hemen berrezarri zure kontua beste "
"zerbitzari batek kudeatzen duelako."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Ez da horrelako eposta helbiderik ezagutzen."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+msgid "New title"
+msgstr ""
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+msgid "Copy subpages"
+msgstr ""
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+msgid "Publish copies"
+msgstr ""
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr ""
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
msgid "Public"
msgstr ""
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Ez da horrelako eposta helbiderik ezagutzen."
@@ -77,7 +123,7 @@ msgstr "Ez da horrelako eposta helbiderik ezagutzen."
msgid "Dashboard"
msgstr "Kontrol panela"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr ""
@@ -231,12 +277,12 @@ msgstr "Eposta esteka"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Bilatu"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Arakatzailea"
@@ -296,7 +342,7 @@ msgstr "Behera mugitu"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Ezabatu"
@@ -609,7 +655,7 @@ msgstr ""
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr ""
@@ -625,6 +671,21 @@ msgstr ""
msgid "Pages using"
msgstr ""
+#: templates/wagtailadmin/pages/copy.html:3
+#, python-format
+msgid "Copy %(title)s"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Orrialde hau editatu"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -678,7 +739,7 @@ msgid "Exploring %(title)s"
msgstr ""
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr ""
@@ -699,42 +760,42 @@ msgstr ""
msgid "Drag"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:245
#, python-format
-msgid "Explorer child pages of '%(title)s'"
+msgid "Explore child pages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, python-format
msgid ""
"\n"
@@ -742,7 +803,7 @@ msgid ""
" "
msgstr ""
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -752,7 +813,7 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -905,6 +966,13 @@ msgstr ""
msgid "Sat"
msgstr "Egoera"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr ""
@@ -942,63 +1010,67 @@ msgstr ""
msgid "Your preferences have been updated successfully!"
msgstr ""
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr ""
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr ""
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr ""
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr ""
-#: views/pages.py:224
+#: views/pages.py:233
msgid "The page could not be created due to validation errors"
msgstr ""
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr ""
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr ""
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr ""
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr ""
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr ""
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr ""
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+msgid "Page '{0}' and {1} subpages copied."
+msgstr ""
+
+#: views/pages.py:711
+msgid "Page '{0}' copied."
+msgstr ""
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr ""
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr ""
diff --git a/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
index b5aef8488..0610431f6 100644
--- a/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 23:17+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -27,27 +27,27 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Terme de recherche"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Entrez votre identifiant"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr ""
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Entrez votre adresse e-mail pour réinitialiser votre mot de passe"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Entrez votre adresse e-mail."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -55,21 +55,70 @@ msgstr ""
"Désolé, vous ne pouvez pas réinitialiser votre mot de passe ici alors que "
"votre compte utilisateur est géré par un autre serveur."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Cette adresse e-mail n'est pas reconnue."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Déplacer %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Ajouter une sous-page"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publier"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr ""
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publier"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Cette adresse e-mail n'est pas reconnue."
@@ -78,7 +127,7 @@ msgstr "Cette adresse e-mail n'est pas reconnue."
msgid "Dashboard"
msgstr "Tableau de bord"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menu"
@@ -231,12 +280,12 @@ msgstr ""
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr ""
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr ""
@@ -296,7 +345,7 @@ msgstr "Descendre"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Supprimer"
@@ -643,7 +692,7 @@ msgstr "Dé-publier %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Dé-publier"
@@ -659,6 +708,21 @@ msgstr "Oui, la dé-publier"
msgid "Pages using"
msgstr ""
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Déplacer %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Éditer cette page"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -712,7 +776,7 @@ msgid "Exploring %(title)s"
msgstr ""
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Ajouter une page enfant"
@@ -733,42 +797,42 @@ msgstr "Activer le tri des pages enfant"
msgid "Drag"
msgstr "Glisser"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
-msgstr ""
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
+msgstr "Ajouter une page enfant à '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Ajouter une page enfant à '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Ajouter une sous-page"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Aucune page n'a été créé."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Pourquoi ne pas en ajouter une?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -779,7 +843,7 @@ msgstr ""
" Page %(page_number)s sur %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -789,7 +853,7 @@ msgstr ""
msgid "Previous"
msgstr "Précédent"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -950,6 +1014,13 @@ msgstr ""
msgid "Sat"
msgstr "Statut"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Paramètres du compte"
@@ -989,64 +1060,70 @@ msgstr "Votre mot de passe a été changé avec succès!"
msgid "Your preferences have been updated successfully!"
msgstr "Votre mot de passe a été changé avec succès!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr ""
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Page '{0}' publiée."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Page '{0}' soumise pour modération."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Page '{0}' créée."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "La page n'a pu être enregistré à cause d'erreurs de validation."
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Page '{0}' mise à jour."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "La page n'a pu être enregistré à cause d'erreurs de validation."
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Cette page est actuellement en attente de modération"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Page '{0}' supprimée."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Page '{0}' dé-publiée."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Page '{0}' déplacée."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Page '{0}' mise à jour."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Page '{0}' déplacée."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "La page '{0}' est actuellement en attente de modération."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Page '{0}' refusée à la publication."
diff --git a/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
index 881402e2b..412e8883b 100644
--- a/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -28,27 +28,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Configuración común de páxina"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Termo de busca"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Introduce o teu nome de usuario"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Introduce contrasinal"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Escribe a túa dirección de correo para restaurar o teu contrasinal"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Por favor, enche a túa dirección de correo."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -56,21 +56,70 @@ msgstr ""
"Sentímolo, non podes restablecer o teu contrasinal aquí porque a túa conta é "
"xestionada por outro servidor."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Non se recoñece a dirección de correo."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Mover %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Engadir subpáxina"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publicar"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Este slug ya está en uso"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publicar"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Non se recoñece a dirección de correo."
@@ -79,7 +128,7 @@ msgstr "Non se recoñece a dirección de correo."
msgid "Dashboard"
msgstr "Panel de control"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menú"
@@ -235,12 +284,12 @@ msgstr "Ligazón de correo electrónico"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Busca"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorador"
@@ -306,7 +355,7 @@ msgstr "Baixar"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Eliminar"
@@ -653,7 +702,7 @@ msgstr "Non publicar %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Non publicar"
@@ -669,6 +718,21 @@ msgstr "Sí, non publicar"
msgid "Pages using"
msgstr "Páxinas usando"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Mover %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Editar esta páxina"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -722,7 +786,7 @@ msgid "Exploring %(title)s"
msgstr "Explorando %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Engadir páxina filla"
@@ -743,42 +807,42 @@ msgstr "Habilitar organización de páxinas fillas"
msgid "Drag"
msgstr "Levar"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explorar subpáxinas de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Explorar"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explorar páxinas fillas de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Engadir páxina filla a '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Engadir subpáxina"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Non foi creada ningunha páxina."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "¿Por qué non engadir unha?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -789,7 +853,7 @@ msgstr ""
" Páxina %(page_number)s de %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -799,7 +863,7 @@ msgstr ""
msgid "Previous"
msgstr "Anterior"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -962,6 +1026,13 @@ msgstr ""
msgid "Sat"
msgstr "Estado"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Axustes de conta"
@@ -1001,64 +1072,70 @@ msgstr "¡O teu contrasinal foi cambiado correctamente!"
msgid "Your preferences have been updated successfully!"
msgstr "¡O teu contrasinal foi cambiado correctamente!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Este slug ya está en uso"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Páxina '{0}' publicada."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Páxina '{0}' enviada para ser moderada."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Páxina '{0}' creada."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "A páxina non puido ser gardada debido a erros de validación"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Páxina '{0}' actualizada."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "A páxina non puido ser gardada debido a erros de validación"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "A páxina está á espera de ser moderada"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Páxina '{0}' eliminada."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Páxina '{0}' non publicada."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Páxina '{0}' movida."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Páxina '{0}' actualizada."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Páxina '{0}' movida."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "A páxina '{0}' non está esperando a ser moderada."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Rexeitada a publicación da página '{0}'."
diff --git a/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
index 953be6566..1a73ee229 100644
--- a/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -27,46 +27,92 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr ""
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr ""
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr ""
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr ""
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Цахим шуудангийн хаягаа оруулна уу."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
msgstr ""
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr ""
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+msgid "New title"
+msgstr ""
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+msgid "Copy subpages"
+msgstr ""
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+msgid "Publish copies"
+msgstr ""
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr ""
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
msgid "Public"
msgstr ""
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
msgid "This field is required."
msgstr ""
@@ -74,7 +120,7 @@ msgstr ""
msgid "Dashboard"
msgstr "Хянах самбар"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr ""
@@ -220,12 +266,12 @@ msgstr ""
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr ""
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr ""
@@ -285,7 +331,7 @@ msgstr ""
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr ""
@@ -598,7 +644,7 @@ msgstr ""
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr ""
@@ -614,6 +660,20 @@ msgstr ""
msgid "Pages using"
msgstr ""
+#: templates/wagtailadmin/pages/copy.html:3
+#, python-format
+msgid "Copy %(title)s"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+msgid "Copy this page"
+msgstr ""
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -667,7 +727,7 @@ msgid "Exploring %(title)s"
msgstr ""
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr ""
@@ -688,42 +748,42 @@ msgstr ""
msgid "Drag"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:245
#, python-format
-msgid "Explorer child pages of '%(title)s'"
+msgid "Explore child pages of '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr ""
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, python-format
msgid ""
"\n"
@@ -731,7 +791,7 @@ msgid ""
" "
msgstr ""
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -741,7 +801,7 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -892,6 +952,13 @@ msgstr ""
msgid "Sat"
msgstr ""
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr ""
@@ -929,62 +996,66 @@ msgstr ""
msgid "Your preferences have been updated successfully!"
msgstr ""
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr ""
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr ""
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr ""
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr ""
-#: views/pages.py:224
+#: views/pages.py:233
msgid "The page could not be created due to validation errors"
msgstr ""
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr ""
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr ""
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr ""
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr ""
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr ""
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr ""
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+msgid "Page '{0}' and {1} subpages copied."
+msgstr ""
+
+#: views/pages.py:711
+msgid "Page '{0}' copied."
+msgstr ""
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr ""
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr ""
diff --git a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
index 72ae54ca4..87e1237bc 100644
--- a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 22:16+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -29,27 +29,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Wspólna konfiguracja stron"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Wyszukiwania fraza"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Wpisz nazwę użytkownika"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Wpisz hasło"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Podaj swój adres email aby zresetować hasło"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Podaj swój adres email."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -57,21 +57,72 @@ msgstr ""
"Przepraszamy, nie możesz zresetować hasła tutaj ponieważ Twoje konto jest "
"zarządzane przez inny serwer."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Ten adres email nie został rozpoznany."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Przesuń %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Dodaj podstronę"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Opublikuj"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Ten slug jest już w użyciu"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Opublikuj"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Ten adres email nie został rozpoznany."
@@ -80,7 +131,7 @@ msgstr "Ten adres email nie został rozpoznany."
msgid "Dashboard"
msgstr "Kokpit"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menu"
@@ -233,12 +284,12 @@ msgstr "Wyślij link pocztą email"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Szukaj"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Przeglądarka"
@@ -308,7 +359,7 @@ msgstr "Przesuń w dół"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Usuń"
@@ -671,7 +722,7 @@ msgstr "Cofnij publikację %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Cofnij publikację"
@@ -687,6 +738,21 @@ msgstr "Tak, cofnij publikację"
msgid "Pages using"
msgstr "Strony używające"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Przesuń %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Edytuj tę stronę"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -740,7 +806,7 @@ msgid "Exploring %(title)s"
msgstr "Przeglądaj %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Dodaj stronę podrzędną"
@@ -761,42 +827,42 @@ msgstr "Włącz sortowanie stron podrzędnych"
msgid "Drag"
msgstr "Przeciągnij"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Przeglądarka podstron '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Przeglądaj"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Przeglądarka stron podrzędnych '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Dodaj stronę podrzędną do '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Dodaj podstronę"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Żadna strona nie została stworzona"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Czemu nie dodać kilku?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -807,7 +873,7 @@ msgstr ""
" Strona %(page_number)s z %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -817,7 +883,7 @@ msgstr ""
msgid "Previous"
msgstr "Wstecz"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -984,6 +1050,14 @@ msgstr ""
msgid "Sat"
msgstr "Status"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Ustawienia konta"
@@ -1023,64 +1097,70 @@ msgstr "Twoje hasło zostało zmienione poprawnie!"
msgid "Your preferences have been updated successfully!"
msgstr "Twoje hasło zostało zmienione poprawnie!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Ten slug jest już w użyciu"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Strona '{0}' została opublikowana."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Przesłano stronę '{0}' do przeglądu."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Stworzono stronę '{0}'."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "Strona nie mogła zostać zapisana z powodu błędów poprawności."
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Uaktualniono stronę '{0}'."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "Strona nie mogła zostać zapisana z powodu błędów poprawności."
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Ta strona oczekuje na przejrzenie."
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Usunięto stronę '{0}'."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Cofnięto publikację strony '{0}'."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Przesunięto stronę '{0}'."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Uaktualniono stronę '{0}'."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Przesunięto stronę '{0}'."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "Strona '{0}' nie oczekuje na przejrzenie."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Strona '{0}' została odrzucona."
diff --git a/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
index 47de826c3..a3a6e56b3 100644
--- a/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -26,27 +26,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Configuração comum de página"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Termo de pesquisa"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Digite seu usuário"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Digite sua senha"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Entre com seu email para resetar sua senha"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Por favor, insira o seu e-mail"
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -54,21 +54,70 @@ msgstr ""
"Desculpe, você não pode resetar sua senha aqui com seu usuário, que é "
"gerenciado por outro servidor."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Esse e-mail não é reconhecido."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Mover %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Adicionar sub-página"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publicar"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Esse endereço já existe"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publicar"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Esse e-mail não é reconhecido."
@@ -77,7 +126,7 @@ msgstr "Esse e-mail não é reconhecido."
msgid "Dashboard"
msgstr "Painel"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Menu"
@@ -228,12 +277,12 @@ msgstr "Link de e-mail"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Pesquisa"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorar"
@@ -299,7 +348,7 @@ msgstr "Mover abaixo"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Excluir"
@@ -645,7 +694,7 @@ msgstr "Despublicar %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Despublicar"
@@ -661,6 +710,21 @@ msgstr "Sim, quero despublicar"
msgid "Pages using"
msgstr "Usando páginas"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Mover %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Editar essa página"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -714,7 +778,7 @@ msgid "Exploring %(title)s"
msgstr "Explorando %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Adicionar página filha"
@@ -735,42 +799,42 @@ msgstr "Habilitar ordenação de páginas filhas"
msgid "Drag"
msgstr "Arrastar"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explorar sub-páginas de %(title)s"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Explorar"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explorar páginas filhas de %(title)s"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Adicionar página filha de %(title)s"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Adicionar sub-página"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Nenhuma página foi criada."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "Porque não adicionar uma?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -781,7 +845,7 @@ msgstr ""
" Página %(page_number)s de %(num_pages)s.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -791,7 +855,7 @@ msgstr ""
msgid "Previous"
msgstr "Anterior"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -954,6 +1018,13 @@ msgstr ""
msgid "Sat"
msgstr "Status"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Configurações da Conta"
@@ -992,64 +1063,70 @@ msgstr "Sua senha foi alterada com sucesso!"
msgid "Your preferences have been updated successfully!"
msgstr "Sua senha foi alterada com sucesso!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Esse endereço já existe"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Página '{0}' publicada."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Página '{0}' enviada para moderação."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Página '{0}' criada."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "A página não pode ser salva devido a erros de validação"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Página '{0}' atualizada."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "A página não pode ser salva devido a erros de validação"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Essa página está atualmente esperando moderação"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Página '{0}' excluida."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Página '{0}' despublicada."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Página '{0}' movida."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Página '{0}' atualizada."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Página '{0}' movida."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "A página '{0}' não está mais esperando moderação."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Página '{0}' rejeitada para publicação."
diff --git a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
index 0bccf350a..f83070b4b 100644
--- a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 13:19+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -28,27 +28,27 @@ msgstr ""
msgid "Common page configuration"
msgstr "Configurație de pagini generală"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "Termen de căutare"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "Introduceți numele de utilizator"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "Introduceți parola"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "Introduceți adresa de e-mail pentru a reseta parola"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "Introduceți adresa de e-mail."
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
@@ -56,21 +56,72 @@ msgstr ""
"Ne pare rău, dar nu puteți reseta parola aici. Contul dvs. de utilizator "
"este gestionat de un alt server."
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "Adresa e-mail nu este recunoscută."
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "Mută %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "Adaugă subpagină"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "Publică"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "Această fisă a fost deja folosită"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "Publică"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "Adresa e-mail nu este recunoscută."
@@ -79,7 +130,7 @@ msgstr "Adresa e-mail nu este recunoscută."
msgid "Dashboard"
msgstr "Bord"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "Meniu"
@@ -231,12 +282,12 @@ msgstr "Link e-mail"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "Căutare"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "Explorator"
@@ -303,7 +354,7 @@ msgstr "Deplasează în jos"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "Șterge"
@@ -651,7 +702,7 @@ msgstr "Anulează publicarea %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "Anulează publicarea"
@@ -667,6 +718,21 @@ msgstr "Da, anulează publicarea"
msgid "Pages using"
msgstr "Pagini cu"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "Mută %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "Editează această pagină"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -720,7 +786,7 @@ msgid "Exploring %(title)s"
msgstr "Explorare %(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "Adaugă pagină dependentă"
@@ -741,42 +807,42 @@ msgstr "Activează rânduirea paginilor dependente"
msgid "Drag"
msgstr "Glisează"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "Explorează subpaginile '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "Explorează"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "Explorează paginile dependente de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "Adaugă o pagină dependentă de '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "Adaugă subpagină"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "Nu a fost creată nici o pagină."
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "De ce să nu adăugați una?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -786,7 +852,7 @@ msgstr ""
"\n"
"Pagina %(page_number)s din %(num_pages)s."
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -796,7 +862,7 @@ msgstr ""
msgid "Previous"
msgstr "Precedent"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -960,6 +1026,14 @@ msgstr ""
msgid "Sat"
msgstr "Status"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "Setări cont"
@@ -999,64 +1073,70 @@ msgstr "Parola a fost schimbată cu succes!"
msgid "Your preferences have been updated successfully!"
msgstr "Parola a fost schimbată cu succes!"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "Această fisă a fost deja folosită"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "Pagina '{0}' a fost publicată."
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "Pagina '{0}' a fost trimisă pentru moderare."
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "Pagina '{0}' a fost creată."
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "Pagina nu a fost salvată din cauza erorilor de validare."
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "Pagina '{0}' a fost actualizată."
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "Pagina nu a fost salvată din cauza erorilor de validare."
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "Această pagină este în moderare"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "Pagina '{0}' a fost ștearsă."
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "Publicare anulată pentru pagina '{0}'."
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "Pagina '{0}' a fost mutată."
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "Pagina '{0}' a fost actualizată."
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "Pagina '{0}' a fost mutată."
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "Pagina '{0}' nu este în moderare la moment."
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Publicare paginii '{0}' a fost refuzată."
diff --git a/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
index 2aaaee23e..667db45c6 100644
--- a/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -26,47 +26,94 @@ msgstr ""
msgid "Common page configuration"
msgstr ""
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "搜索词"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "请输入用户名"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "请输入密码"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "输入您的电子邮箱来重置您的密码"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "请输入你的电子邮件地址。"
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
msgstr "对不起,你不能在此够重置你的密码,因为您的账号是由其他服务所管理的。"
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "没有找到这个电子邮件地址。"
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "移动 %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "添加子页面"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "发布"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "这个唯一的地址已被占用"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "发布"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "没有找到这个电子邮件地址。"
@@ -75,7 +122,7 @@ msgstr "没有找到这个电子邮件地址。"
msgid "Dashboard"
msgstr "仪表板"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "菜单"
@@ -223,12 +270,12 @@ msgstr "电子邮件链接"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "搜索"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "浏览"
@@ -287,7 +334,7 @@ msgstr "向下移动"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "删除"
@@ -600,7 +647,7 @@ msgstr "停止发布%(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "停止发布"
@@ -616,6 +663,21 @@ msgstr "是的,停止发布"
msgid "Pages using"
msgstr "页面在用"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "移动 %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "编辑这个页面"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -669,7 +731,7 @@ msgid "Exploring %(title)s"
msgstr "浏览%(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "添加子页面"
@@ -690,42 +752,42 @@ msgstr "开启子页面顺序"
msgid "Drag"
msgstr "拖动"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "浏览 '%(title)s' 的子页面"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "浏览"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "浏览 '%(title)s' 的子页面"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "添加子页面至'%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "添加子页面"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "没有已保存的页面"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "为什么不添加一页?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -736,7 +798,7 @@ msgstr ""
" 第 %(page_number)s / %(num_pages)s页.\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -746,7 +808,7 @@ msgstr ""
msgid "Previous"
msgstr "向前"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -905,6 +967,12 @@ msgstr ""
msgid "Sat"
msgstr "状态"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "账号设置"
@@ -944,64 +1012,70 @@ msgstr "您的密码已经更改成功。"
msgid "Your preferences have been updated successfully!"
msgstr "您的密码已经更改成功。"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "这个唯一的地址已被占用"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "第 '{0}' 页已发布。"
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "第 '{0}' 页已提交审核。"
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "第 '{0}' 页已创建。"
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "这页无法保存,因为页面发生验证错误"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "第 '{0}' 页已更新"
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "这页无法保存,因为页面发生验证错误"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "这页正在等待审核"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "第 '{0}' 页已删除"
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "第 '{0}' 页已停止发布"
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "第 '{0}' 页已移动。"
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "第 '{0}' 页已更新"
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "第 '{0}' 页已移动。"
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "第 '{0}' 页当前不需要等待审核。"
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "第 '{0}' 页已被拒绝发布。"
diff --git a/wagtail/wagtailadmin/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/zh_TW/LC_MESSAGES/django.po
index 6dba63056..95b8e929d 100644
--- a/wagtail/wagtailadmin/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:41+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-05-01 12:09+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -25,47 +25,94 @@ msgstr ""
msgid "Common page configuration"
msgstr "一般頁面設定"
-#: forms.py:18
+#: forms.py:19
msgid "Search term"
msgstr "搜尋關鍵字"
-#: forms.py:42
+#: forms.py:43
msgid "Enter your username"
msgstr "請輸入您的帳號"
-#: forms.py:45
+#: forms.py:46
msgid "Enter password"
msgstr "請輸入密碼"
-#: forms.py:50
+#: forms.py:51
msgid "Enter your email address to reset your password"
msgstr "請輸入您的電子信箱來重新設定密碼"
-#: forms.py:59
+#: forms.py:60
msgid "Please fill your email address."
msgstr "請輸入您的電子信箱"
-#: forms.py:72
+#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
msgstr "對不起,您不能在此重新設定您的密碼,因為您的帳號是由其他伺服器所管理。"
-#: forms.py:75
+#: forms.py:76
msgid "This email address is not recognised."
msgstr "找不到這個電子信箱。"
-#: forms.py:82 templates/wagtailadmin/pages/_privacy_indicator.html:13
+#: forms.py:88
+#, fuzzy
+msgid "New title"
+msgstr "移動 %(title)s"
+
+#: forms.py:89
+msgid "New slug"
+msgstr ""
+
+#: forms.py:95
+#, fuzzy
+msgid "Copy subpages"
+msgstr "新增子頁面"
+
+#: forms.py:97
+#, python-format
+msgid "This will copy %(count)s subpage."
+msgid_plural "This will copy %(count)s subpages."
+msgstr[0] ""
+
+#: forms.py:106
+msgid "Publish copied page"
+msgstr ""
+
+#: forms.py:107
+msgid "This page is live. Would you like to publish its copy as well?"
+msgstr ""
+
+#: forms.py:109
+#, fuzzy
+msgid "Publish copies"
+msgstr "發佈"
+
+#: forms.py:111
+#, python-format
+msgid ""
+"%(count)s of the pages being copied is live. Would you like to publish its "
+"copy?"
+msgid_plural ""
+"%(count)s of the pages being copied are live. Would you like to publish "
+"their copies?"
+msgstr[0] ""
+
+#: forms.py:124 views/pages.py:155 views/pages.py:272
+msgid "This slug is already in use"
+msgstr "這個地址已被使用"
+
+#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
#, fuzzy
msgid "Public"
msgstr "發佈"
-#: forms.py:83
+#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
-#: forms.py:91
+#: forms.py:139
#, fuzzy
msgid "This field is required."
msgstr "找不到這個電子信箱。"
@@ -74,7 +121,7 @@ msgstr "找不到這個電子信箱。"
msgid "Dashboard"
msgstr "Dashboard"
-#: templates/wagtailadmin/base.html:31
+#: templates/wagtailadmin/base.html:27
msgid "Menu"
msgstr "選單"
@@ -222,12 +269,12 @@ msgstr "電子信箱連結"
#: templates/wagtailadmin/chooser/_search_form.html:7
#: templates/wagtailadmin/pages/search.html:3
#: templates/wagtailadmin/pages/search.html:16
-#: templatetags/wagtailadmin_tags.py:35
+#: templatetags/wagtailadmin_tags.py:36
msgid "Search"
msgstr "搜尋"
#: templates/wagtailadmin/chooser/_search_results.html:3
-#: templatetags/wagtailadmin_tags.py:34
+#: templatetags/wagtailadmin_tags.py:35
msgid "Explorer"
msgstr "瀏覽"
@@ -291,7 +338,7 @@ msgstr "往下移動"
#: templates/wagtailadmin/pages/confirm_delete.html:7
#: templates/wagtailadmin/pages/edit.html:45
#: templates/wagtailadmin/pages/list.html:84
-#: templates/wagtailadmin/pages/list.html:202
+#: templates/wagtailadmin/pages/list.html:205
msgid "Delete"
msgstr "刪除"
@@ -632,7 +679,7 @@ msgstr "取消發佈 %(title)s"
#: templates/wagtailadmin/pages/confirm_unpublish.html:6
#: templates/wagtailadmin/pages/edit.html:42
#: templates/wagtailadmin/pages/list.html:87
-#: templates/wagtailadmin/pages/list.html:205
+#: templates/wagtailadmin/pages/list.html:208
msgid "Unpublish"
msgstr "取消發佈"
@@ -648,6 +695,21 @@ msgstr "是的,取消發佈"
msgid "Pages using"
msgstr "頁面正在使用"
+#: templates/wagtailadmin/pages/copy.html:3
+#, fuzzy, python-format
+msgid "Copy %(title)s"
+msgstr "移動 %(title)s"
+
+#: templates/wagtailadmin/pages/copy.html:6
+#: templates/wagtailadmin/pages/list.html:202
+msgid "Copy"
+msgstr ""
+
+#: templates/wagtailadmin/pages/copy.html:26
+#, fuzzy
+msgid "Copy this page"
+msgstr "編輯這個頁面"
+
#: templates/wagtailadmin/pages/create.html:5
#, python-format
msgid "New %(page_type)s"
@@ -701,7 +763,7 @@ msgid "Exploring %(title)s"
msgstr "瀏覽%(title)s"
#: templates/wagtailadmin/pages/list.html:90
-#: templates/wagtailadmin/pages/list.html:208
+#: templates/wagtailadmin/pages/list.html:211
msgid "Add child page"
msgstr "新增子頁面"
@@ -722,42 +784,42 @@ msgstr "開啟子頁面排序"
msgid "Drag"
msgstr "拖曳"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
#, python-format
msgid "Explorer subpages of '%(title)s'"
msgstr "瀏覽 '%(title)s' 的子頁面"
-#: templates/wagtailadmin/pages/list.html:234
-#: templates/wagtailadmin/pages/list.html:238
-#: templates/wagtailadmin/pages/list.html:242
+#: templates/wagtailadmin/pages/list.html:237
+#: templates/wagtailadmin/pages/list.html:241
+#: templates/wagtailadmin/pages/list.html:245
msgid "Explore"
msgstr "瀏覽"
-#: templates/wagtailadmin/pages/list.html:242
-#, python-format
-msgid "Explorer child pages of '%(title)s'"
+#: templates/wagtailadmin/pages/list.html:245
+#, fuzzy, python-format
+msgid "Explore child pages of '%(title)s'"
msgstr "瀏覽 '%(title)s' 的子頁面"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
#, python-format
msgid "Add a child page to '%(title)s'"
msgstr "新增子頁面至 '%(title)s'"
-#: templates/wagtailadmin/pages/list.html:244
+#: templates/wagtailadmin/pages/list.html:247
msgid "Add subpage"
msgstr "新增子頁面"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
msgid "No pages have been created."
msgstr "沒有已儲存的頁面"
-#: templates/wagtailadmin/pages/list.html:253
+#: templates/wagtailadmin/pages/list.html:256
#, python-format
msgid "Why not add one?"
msgstr "為什麼不 新增一個頁面呢?"
-#: templates/wagtailadmin/pages/list.html:260
+#: templates/wagtailadmin/pages/list.html:263
#, fuzzy, python-format
msgid ""
"\n"
@@ -768,7 +830,7 @@ msgstr ""
" 第 %(page_number)s / %(num_pages)s頁。\n"
" "
-#: templates/wagtailadmin/pages/list.html:266
+#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
#: templates/wagtailadmin/pages/search_results.html:37
#: templates/wagtailadmin/pages/usage_results.html:13
@@ -778,7 +840,7 @@ msgstr ""
msgid "Previous"
msgstr "往前"
-#: templates/wagtailadmin/pages/list.html:271
+#: templates/wagtailadmin/pages/list.html:274
#: templates/wagtailadmin/pages/search_results.html:44
#: templates/wagtailadmin/pages/search_results.html:46
#: templates/wagtailadmin/pages/usage_results.html:18
@@ -939,6 +1001,12 @@ msgstr ""
msgid "Sat"
msgstr "狀態"
+#: templates/wagtailadmin/shared/header.html:23
+#, python-format
+msgid "Used %(useage_count)s time"
+msgid_plural "Used %(useage_count)s times"
+msgstr[0] ""
+
#: templates/wagtailadmin/shared/main_nav.html:10
msgid "Account settings"
msgstr "帳號設定"
@@ -978,64 +1046,70 @@ msgstr "您的密碼已經更改成功。"
msgid "Your preferences have been updated successfully!"
msgstr "您的密碼已經更改成功。"
-#: views/pages.py:146 views/pages.py:263
-msgid "This slug is already in use"
-msgstr "這個地址已被使用"
-
-#: views/pages.py:160 views/pages.py:277
+#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
msgstr ""
-#: views/pages.py:170 views/pages.py:287
+#: views/pages.py:179 views/pages.py:296
msgid "Expiry date/time must be in the future"
msgstr ""
-#: views/pages.py:210 views/pages.py:334 views/pages.py:707
+#: views/pages.py:219 views/pages.py:351 views/pages.py:791
msgid "Page '{0}' published."
msgstr "第 '{0}' 頁已發佈。"
-#: views/pages.py:212 views/pages.py:336
+#: views/pages.py:221 views/pages.py:353
msgid "Page '{0}' submitted for moderation."
msgstr "第 '{0}' 頁已送審。"
-#: views/pages.py:215
+#: views/pages.py:224
msgid "Page '{0}' created."
msgstr "第 '{0}' 頁已建立。"
-#: views/pages.py:224
+#: views/pages.py:233
#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr "這頁面因有驗證錯誤而無法儲存。"
-#: views/pages.py:339
+#: views/pages.py:356
msgid "Page '{0}' updated."
msgstr "第 '{0}' 頁已更新"
-#: views/pages.py:348
+#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
msgstr "這頁面因有驗證錯誤而無法儲存。"
-#: views/pages.py:361
+#: views/pages.py:378
msgid "This page is currently awaiting moderation"
msgstr "這頁正等待審核"
-#: views/pages.py:381
+#: views/pages.py:409
msgid "Page '{0}' deleted."
msgstr "第 '{0}' 頁已刪除"
-#: views/pages.py:543
+#: views/pages.py:575
msgid "Page '{0}' unpublished."
msgstr "第 '{0}' 頁已取消發佈"
-#: views/pages.py:594
+#: views/pages.py:627
msgid "Page '{0}' moved."
msgstr "第 '{0}' 頁已移動。"
-#: views/pages.py:701 views/pages.py:720 views/pages.py:740
+#: views/pages.py:709
+#, fuzzy
+msgid "Page '{0}' and {1} subpages copied."
+msgstr "第 '{0}' 頁已更新"
+
+#: views/pages.py:711
+#, fuzzy
+msgid "Page '{0}' copied."
+msgstr "第 '{0}' 頁已移動。"
+
+#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
msgstr "第 '{0}' 頁目前不需要等待審核。"
-#: views/pages.py:726
+#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "第 '{0}' 頁已被拒絕發佈。"
diff --git a/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
index 46c88a279..1108f63ca 100644
--- a/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 20:02+0000\n"
"Last-Translator: LyuboslavPetrov \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -29,7 +29,7 @@ msgstr ""
"порт да се появи в URL адресите ви (напр. код-разработка на порт 8000). Не "
"се отнася за боравене със заявки (така Port Forwarding ще работи)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -37,18 +37,18 @@ msgstr ""
"Ако е Вярно, този сайт ще борави със заявки за всички останали хостове, "
"които нямат собствен сайт."
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Заглавието на страницата както желаете да се вижда"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -56,11 +56,11 @@ msgstr ""
"Името на страницата както ще изглежда в URL-ите. Например http://domain.com/"
"blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Заглавие на Страница"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -68,25 +68,25 @@ msgstr ""
"Незадължителен. 'Оптимизирано за Търсачки' заглавие. Това ще се появи най-"
"отгоре на браузър прозореца."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Дали линк към тази страница ще се появи в автоматично генерираните менюта"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "име '%s' (ползвано в листа subpage_types) не е зададено."
diff --git a/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
index c7bf0cc19..2d46c5017 100644
--- a/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-22 12:43+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -29,7 +29,7 @@ msgstr ""
"específic en les URLs (per ex: port de desenvolupament al 8000). No afecta a "
"la petició actual (el port de reenviament encara funciona)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -37,18 +37,18 @@ msgstr ""
"Si és cert, aquest lloc s'encarregarà de les peticions de totes les altres "
"màquines que no tenen un lloc establert."
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "El títol de la pàgina que vols que sigui vist pel públic"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -56,11 +56,11 @@ msgstr ""
"El nom de la pàgina que apareixerà en la URL. Per exemple: http://domini.com/"
"blog/[nom]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Títol de la pàgina"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -68,25 +68,25 @@ msgstr ""
"Opcional. Títol de 'Motor de cerca amigable'. Això apareixerà al cap damunt "
"de la finetra del navegador"
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Si s'enllaça cap aquesta pàgina apareixerà automàticament als menús generats"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "el nom '%s' (utilitzat a subpage_types list) no està definit."
diff --git a/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
index e83f6f119..d303111cd 100644
--- a/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-25 17:28+0000\n"
"Last-Translator: jspielmann \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -29,7 +29,7 @@ msgstr ""
"soll (z.B. Development Port auf 8000). Dies bezieht sich nicht auf Request "
"Handling, so dass Port Forwarding weiterhin funktioniert."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -37,18 +37,18 @@ msgstr ""
"Falls ausgewählt wird diese Seite Anfragen für alle Hostnamen annehmen, die "
"keinen eigenen Seiteneintrag haben."
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Der Seitentitel, der öffentlich angezeigt werden soll"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -56,11 +56,11 @@ msgstr ""
"Der Name der Seite, wie er in URLs angezeigt werden soll, z.B. http://domain."
"com/blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Seitentitel"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -68,25 +68,25 @@ msgstr ""
"Optional. Suchmaschinenfreundlicher Titel. Wird in der Titelleiste des "
"Browsers angezeigt."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Ob ein Link zu dieser Seite in automatisch generierten Menüs auftaucht."
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr ""
diff --git a/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
index 0ac591453..cca756ca7 100644
--- a/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-22 12:27+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -30,7 +30,7 @@ msgstr ""
"8000). Δεν επηρεάζει τον τρόπο που χειρίζονται τις αιτήσεις (οπότε η "
"προώθηση θύρας δουλεύει ακόμα)"
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -38,18 +38,18 @@ msgstr ""
"Αν είναι αληθές, το εν λόγω site θα χειρίζεται και τις αιτήσεις για όλα τα "
"άλλα ονόματα που δεν έχουν δική τους εγγραφή"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Ο τίτλος της σελίδας έτσι όπως θα εμφανίζεται στο κοινό"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -57,11 +57,11 @@ msgstr ""
"Το όνομα της σελίδας έτσι όπως θα εμφανίζεται στις διευθύνσεις, π.χ http://"
"domain.com/blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Τίτλος σελίδας"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -69,26 +69,26 @@ msgstr ""
"Προαιρετικό. Τίτλος που είναι 'φιλικός προς τις μηχανές αναζήτησης'. Θα "
"εμφανιστεί στην κορυφή του παραθύρου."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Επιλέξτε αν μια σύνδεση σε αυτή τη σελίδα θα εμφανιστεί στα μενού που "
"δημιουργούνται αυτόματα"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "το όνομα '%s' (που χρησιμοποιείται στη λίστα) δεν έχει οριστεί."
diff --git a/wagtail/wagtailcore/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/en/LC_MESSAGES/django.po
index 7d99eb3e3..c4bf27524 100644
--- a/wagtail/wagtailcore/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,63 +17,63 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
msgstr ""
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr ""
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
msgstr ""
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr ""
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr ""
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr ""
diff --git a/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
index 00c9c6719..a6b75474d 100644
--- a/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-27 09:22+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -33,7 +33,7 @@ msgstr ""
"aparezca en las URLs (p.e. desarrollo en el puerto 8000). Esto no afecta al "
"manejo de solicitudes (así que la redirección de puertos sigue funcionando)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -41,18 +41,18 @@ msgstr ""
"Si afirmativo, este sitio manejará solicitudes para todos los demás "
"hostnames que no tengan un site por sí mismos"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "El título de la página como quieres que sea visto por el público"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -60,11 +60,11 @@ msgstr ""
"El nombre de la página tal como aparecerá en URLs p.ej. http://domain.com/"
"blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Título de la página"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -72,24 +72,24 @@ msgstr ""
"Opcional. Título 'Amigable para el Motor de Búsqueda'. Aparecerá en la parte "
"superior de la ventana del navegador."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr "Un enlace a esta página aparecerá en menús generados automáticamente"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "nombre '%s' (usado en la lista de subpage_types) no está definido."
diff --git a/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
index d5ed41484..d61633839 100644
--- a/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 22:36+0000\n"
"Last-Translator: tomdyson \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,63 +18,63 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
msgstr ""
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr ""
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
msgstr ""
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr ""
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr ""
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr ""
diff --git a/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
index 0ef2ab822..2683cb21e 100644
--- a/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 22:47+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -30,24 +30,24 @@ msgstr ""
"Ceci n'affecte pas la prise en charge des requêtes (les redirections de port "
"continuent de fonctionner)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Le titre de la page comme vous souhaiteriez que les lecteurs la voient"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -55,36 +55,36 @@ msgstr ""
"Le nom de la page comme elle apparaîtra dans l'URL e.g http://domain.com/"
"blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Titre de la page"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr ""
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Si un lien vers cette page devra apparaître dans les menus générés "
"automatiquement"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "le nom '%s' (utilisé dans la liste subpage_types) n'est pas défini."
diff --git a/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
index 8686ab164..7c5f85412 100644
--- a/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -29,7 +29,7 @@ msgstr ""
"apareza nas URLs (p.e. desenvolvemento no porto 8000). Isto non afecta ao "
"manexo de solicitudes (así que a redirección de portos segue funcionando)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -37,18 +37,18 @@ msgstr ""
"Se é afirmativo, este sitio manexará solicitudes para todos os demais nomes "
"de host que non teñan unha entrada por si mesmos"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "O título da páxina como queres que sexa visto polo público"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -56,11 +56,11 @@ msgstr ""
"O nome da páxina tal como aparecerá nas URLs p.ex. http://domain.com/blog/"
"[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Título da páxina"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -68,24 +68,24 @@ msgstr ""
"Opcional. Título 'Amigable para o Motor de Busca'. Aparecerá na parte "
"superior da ventá do navegador."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr "Un enlace a esta página aparecerá en menús xerados automáticamente"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "nome '%s' (usado en la lista de subpage_types) non está definido."
diff --git a/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
index 68b62ebd2..ebf676793 100644
--- a/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-04 05:03+0000\n"
"Last-Translator: delgermurun \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,63 +19,63 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
msgstr ""
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr ""
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
msgstr ""
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Хуудасны гарчиг"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr ""
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr ""
diff --git a/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
index 93f803a5a..0a11c22de 100644
--- a/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-23 10:22+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -21,7 +21,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -31,7 +31,7 @@ msgstr ""
"konkretnego portu w URLach (np. port wersji roboczej 8000). Nie ma wpływu na "
"obsługę żądań (przekierowanie portów będzie nadal działało)."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -39,18 +39,18 @@ msgstr ""
"Wartość true sprawi, że ta strona będzie obsługiwała żądania wszystkich "
"innych hostów, które nie mają ustawionej strony."
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Tytuł strony jaki chcesz żeby był widoczny publicznie."
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -58,11 +58,11 @@ msgstr ""
"Nazwa strony, która będzie wyświetlana w URLach np. http://domain.com/blog/"
"[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Tytuł strony"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -70,25 +70,25 @@ msgstr ""
"Opcjonalne. Tytuł 'przyjazny wyszukiwarkom'. Będzie widoczny się na górze "
"okna przeglądarki."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Czy link do tej strony zostanie wyświetlony w menu tworzonym automatycznie."
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "nazwa '%s' (używana w liście subpage_types) nie jest zdefiniowana."
diff --git a/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
index efe4bad51..aac390c30 100644
--- a/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 22:29+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -20,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -31,7 +31,7 @@ msgstr ""
"decât 80. Nu influențează gestionarea solicitărilor și transmiterile de port "
"vor continua să funcționeze."
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
@@ -39,18 +39,18 @@ msgstr ""
"Dacă e 'true', acest sit va gestiona solicitări pentru toate hostname-urile "
"fără setări separate"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "Titlul paginii așa cum doriți să fie vizibil public"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
@@ -58,11 +58,11 @@ msgstr ""
"Numele paginii așa cum va apărea în adrese. De exemplu, http://domain.com/"
"blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "Titlu pagină"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
@@ -70,26 +70,26 @@ msgstr ""
"Opțional. Titlu favorabil motoarelor de căutare. Apare în partea de sus a "
"browserului."
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr ""
"Dacă un link către această pagină va apărea în meniurile generate în mod "
"automat"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "numele '%s' (folosit în lista subpage_types) nu este definit."
diff --git a/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
index c2b0bf43f..3de773cf3 100644
--- a/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-28 16:07+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -27,58 +27,58 @@ msgstr ""
"如果你需要指定端口,请选择一个有别于80的端口(比如开发端口8000)。 不影响接受请"
"求 (端口转发仍然有效)"
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
"如果是真的,这个网站将处理没有一个属于自己的主机名的其他所有主机名的请求"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "页面标题,你想被大众所看到的"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
msgstr "一个出现在URL的名字 比如 http://domain.com/blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "页面标题"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr "可选 ‘搜索引擎友好’ 标题。 这会显示在浏览器窗口顶部"
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr "一个链接到这页的链接会显示在自动生成的菜单中"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "名称为 '%s' (用于子页面类型列表) 没有被创建."
diff --git a/wagtail/wagtailcore/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/zh_TW/LC_MESSAGES/django.po
index 642c496e2..3a3a2bfa6 100644
--- a/wagtail/wagtailcore/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-28 16:07+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:44
+#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
@@ -26,58 +26,58 @@ msgstr ""
"如果你需要指定 port,請選擇一個非 80 的 port number (例如: 開發中用 8000 "
"port)。 不影響 request 處理 (port forwarding 仍然有效)"
-#: models.py:46
+#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
msgstr ""
"如果這是 Ture 的話,這個網站將處理其他沒有自己網站的 hostname 的 request。"
-#: models.py:107
+#: models.py:109
#, python-format
msgid ""
"%(hostname)s is already configured as the default site. You must unset that "
"before you can save this site as default."
msgstr ""
-#: models.py:275
+#: models.py:277
msgid "The page title as you'd like it to be seen by the public"
msgstr "頁面標題 (你想讓外界看到的)"
-#: models.py:276
+#: models.py:278
msgid ""
"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
"[my-slug]/"
msgstr "一個出現在 URL 的名字,例如 http://domain.com/blog/[my-slug]/"
-#: models.py:285
+#: models.py:287
msgid "Page title"
msgstr "頁面標題"
-#: models.py:285
+#: models.py:287
msgid ""
"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
"browser window."
msgstr "(可選) '搜尋引擎友善' 標題。 這會顯示在瀏覽器的視窗最上方"
-#: models.py:286
+#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
msgstr "是否在自動生成的 Menu 裡顯示一個連結到此頁面"
-#: models.py:289
+#: models.py:291
msgid "Go live date/time"
msgstr ""
-#: models.py:289 models.py:290
-msgid "Please add a date-time in the form YYYY-MM-DD hh:mm."
+#: models.py:291 models.py:292
+msgid "Please add a date-time in the form YYYY-MM-DD hh:mm:ss."
msgstr ""
-#: models.py:290
+#: models.py:292
msgid "Expiry date/time"
msgstr ""
-#: models.py:559
+#: models.py:564
#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr "'%s' (用於子頁面類型列表) 沒有被建立。"
diff --git a/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
index b1fa27c73..3740f19a9 100644
--- a/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,20 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Заглавие"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Файл"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Тагове"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Документи"
@@ -139,6 +140,31 @@ msgstr ""
"Не сте качили никакви документи. Защо не качите един сега?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Изтрийте %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Изчисти избора"
@@ -147,22 +173,22 @@ msgstr "Изчисти избора"
msgid "Choose another document"
msgstr "Избери друг документ"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Документ '{0}' добавен."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Документа не бе запазен поради грешки."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Документа '{0}' е обновен."
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Документа '{0}' е изтрит."
diff --git a/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
index df524532c..20a1c47e3 100644
--- a/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,20 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Títol"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Arxiu"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Tags"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Documents"
@@ -138,6 +139,31 @@ msgstr ""
"No has pujat cap document. Per què no pujes un ara?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Esborra %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Opció clara"
@@ -146,22 +172,22 @@ msgstr "Opció clara"
msgid "Choose another document"
msgstr "Escull un altre document"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Cercar documents"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Document '{0}' afegit."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "El document no s'ha pogut desar."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Document '{0}' actualitzat"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Document '{0}' esborrat."
diff --git a/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
index 3039b9435..5399f1431 100644
--- a/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-24 18:54+0000\n"
"Last-Translator: pcraston \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,20 +20,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Titel"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Datei"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Schlagwörter"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Dokumente"
@@ -142,6 +143,31 @@ msgstr ""
"Sie haben noch keine Dokumente hochgeladen.Laden Sie doch jetzt eins hoch!"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "%(title)s löschen"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Auswahl zurücksetzen"
@@ -150,22 +176,22 @@ msgstr "Auswahl zurücksetzen"
msgid "Choose another document"
msgstr "Anderes Dokument wählen"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Nach Dokumenten suchen"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Dokument '{0}' wurde hinzugefügt."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Aufgrund eines Fehlers konnte das Dokument nicht gespeichert werden."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Dokument '{0}' wurde hochgeladen"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Dokument '{0}' wurde gelöscht."
diff --git a/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
index a2788f9ef..769d22cf7 100644
--- a/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,20 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Τίτλος"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Αρχείο"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Ετικέτες"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Έγγραφα"
@@ -141,6 +142,31 @@ msgstr ""
"Δεν υπάρχουν έγγραφα. Θέλετε να ανεβάσετε μερικά;"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Διαγραφή %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Καθαρισμός επιλογής"
@@ -149,22 +175,22 @@ msgstr "Καθαρισμός επιλογής"
msgid "Choose another document"
msgstr "Επιλογή άλλου εγγράφου"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Αναζήτηση εγγράφων"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Το έγγραφο '{0}' προστέθηκε."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Δεν ήταν δυνατή η αποθήκευση του εγγράφου."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Έγινε διόρθωση του εγγράφου '{0}'"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Το έγγραφο '{0}' διαγράφηκε."
diff --git a/wagtail/wagtaildocs/locale/en/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/en/LC_MESSAGES/django.po
index 311446b0a..88d049cda 100644
--- a/wagtail/wagtaildocs/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,20 +17,21 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr ""
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr ""
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr ""
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr ""
@@ -130,6 +131,31 @@ msgid ""
"\"%(wagtaildocs_add_document_url)s\">upload one now?"
msgstr ""
+#: templates/wagtaildocs/documents/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr ""
@@ -138,22 +164,22 @@ msgstr ""
msgid "Choose another document"
msgstr ""
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr ""
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr ""
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr ""
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr ""
diff --git a/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
index 8a5af4eb5..20521efcc 100644
--- a/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,20 +20,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Título"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Archivo"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Etiquetas"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Documentos"
@@ -141,6 +142,31 @@ msgstr ""
"No has subido documentos. ¿Por qué no subir uno ahora?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Eliminar %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Borrar selección"
@@ -149,22 +175,22 @@ msgstr "Borrar selección"
msgid "Choose another document"
msgstr "Elegir otro documento"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Buscar documentos"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Documento '{0}' añadido."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "El documento no pudo ser guardado debido a errores."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Documento '{0}' actualizado"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Documento '{0}' eliminado."
diff --git a/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
index e443bcf83..4658fcdcc 100644
--- a/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,20 +18,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr ""
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr ""
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr ""
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr ""
@@ -131,6 +132,31 @@ msgid ""
"\"%(wagtaildocs_add_document_url)s\">upload one now?"
msgstr ""
+#: templates/wagtaildocs/documents/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr ""
@@ -139,22 +165,22 @@ msgstr ""
msgid "Choose another document"
msgstr ""
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr ""
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr ""
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr ""
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr ""
diff --git a/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
index c7f6987d1..921115dc5 100644
--- a/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 23:15+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,20 +19,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Titre"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Fichier"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Mots-clés"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Documents"
@@ -132,6 +133,31 @@ msgid ""
"\"%(wagtaildocs_add_document_url)s\">upload one now?"
msgstr ""
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Supprimer %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr ""
@@ -140,22 +166,22 @@ msgstr ""
msgid "Choose another document"
msgstr ""
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Document '{0}' ajouté."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Le document ne peut être enregistré du fait d'erreurs."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Document '{0}' mis à jour"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Document '{0}' supprimé."
diff --git a/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
index 7db93b01e..c80a38726 100644
--- a/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -20,20 +20,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Título"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Arquivo"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Etiquetas"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Documentos"
@@ -141,6 +142,31 @@ msgstr ""
"Non subiches documentos. ¿Por qué non subir un agora?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Eliminar %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Borrar selección"
@@ -149,22 +175,22 @@ msgstr "Borrar selección"
msgid "Choose another document"
msgstr "Elixir outro documento"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Buscar documentos"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Documento '{0}' engadido."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "O documento non puido ser gardado debido a erros."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Documento '{0}' actualizado"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Documento '{0}' eliminado."
diff --git a/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
index 347262eb5..4cad2ebeb 100644
--- a/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -18,20 +18,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr ""
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr ""
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr ""
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr ""
@@ -131,6 +132,31 @@ msgid ""
"\"%(wagtaildocs_add_document_url)s\">upload one now?"
msgstr ""
+#: templates/wagtaildocs/documents/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr ""
@@ -139,22 +165,22 @@ msgstr ""
msgid "Choose another document"
msgstr ""
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr ""
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr ""
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr ""
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr ""
diff --git a/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
index 35f5cc84f..49f3daf32 100644
--- a/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -21,20 +21,21 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Tytuł"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Plik"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Tagi"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Dokumenty"
@@ -147,6 +148,31 @@ msgstr ""
"Nie przesłano żadnych dokumentów. Czemu nie dodać jednego teraz?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Usuń %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Wyczyść wybór"
@@ -155,22 +181,22 @@ msgstr "Wyczyść wybór"
msgid "Choose another document"
msgstr "Wybierz inny dokument"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Szukaj dokumentów"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Dodano dokument '{0}'."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Dokument nie mógł zostać zapisany z powodu błędów."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Uaktualniono dokument '{0}'"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Usunięto dokument '{0}'"
diff --git a/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
index 196bf3a35..da57e4e38 100644
--- a/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 13:20+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -20,20 +20,21 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "Titlu"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "Fișier"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "Etichete"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "Documente"
@@ -144,6 +145,31 @@ msgstr ""
"Nu ați încărcat nici un document. De ce să nu adăugați unul?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Șterge %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "Curăță selecție"
@@ -152,22 +178,22 @@ msgstr "Curăță selecție"
msgid "Choose another document"
msgstr "Alege alt document"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "Caută documente"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "Documentul '{0}' a fost adăugat."
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "Documentul nu a fost salvat din cauza erorilor."
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "Documentul '{0}' a fost actualizat."
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "Documentul '{0}' a fost șters."
diff --git a/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
index 3e29642cd..b173c46b6 100644
--- a/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,20 +18,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "标题"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "文件"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "标签"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "文档"
@@ -132,6 +133,31 @@ msgstr ""
"你没有上传任何文档。 为什么不 上"
"传一份?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "删除%(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "清除选择"
@@ -140,22 +166,22 @@ msgstr "清除选择"
msgid "Choose another document"
msgstr "选择另外一份文档"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr ""
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "文档'{0}'已添加"
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "有错,文档无法保存。"
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "文档'{0}'已更新"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "文档'{0}'已删除"
diff --git a/wagtail/wagtaildocs/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/zh_TW/LC_MESSAGES/django.po
index d11b715e5..cb2c41a37 100644
--- a/wagtail/wagtaildocs/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:42+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -17,20 +17,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:20 templates/wagtaildocs/documents/list.html:11
+#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
+#: templates/wagtaildocs/documents/usage.html:16
msgid "Title"
msgstr "標題"
-#: models.py:21 templates/wagtaildocs/documents/list.html:17
+#: models.py:22 templates/wagtaildocs/documents/list.html:17
msgid "File"
msgstr "文件"
-#: models.py:25
+#: models.py:26
msgid "Tags"
msgstr "標籤"
-#: wagtail_hooks.py:23 templates/wagtaildocs/documents/index.html:16
+#: wagtail_hooks.py:24 templates/wagtaildocs/documents/index.html:16
msgid "Documents"
msgstr "文件"
@@ -136,6 +137,31 @@ msgstr ""
"你沒有上傳任何文件。 為什麼不 上"
"傳一份?"
+#: templates/wagtaildocs/documents/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "刪除 %(title)s"
+
+#: templates/wagtaildocs/documents/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtaildocs/documents/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
#: templates/wagtaildocs/edit_handlers/document_chooser_panel.html:9
msgid "Clear choice"
msgstr "清除選擇"
@@ -144,22 +170,22 @@ msgstr "清除選擇"
msgid "Choose another document"
msgstr "選擇另外一份文件"
-#: views/documents.py:36 views/documents.py:45
+#: views/documents.py:37 views/documents.py:46
msgid "Search documents"
msgstr "搜尋文件"
-#: views/documents.py:85
+#: views/documents.py:86
msgid "Document '{0}' added."
msgstr "文件 '{0}' 已加入"
-#: views/documents.py:88 views/documents.py:117
+#: views/documents.py:89 views/documents.py:118
msgid "The document could not be saved due to errors."
msgstr "這文件因有錯誤而無法建立。"
-#: views/documents.py:114
+#: views/documents.py:115
msgid "Document '{0}' updated"
msgstr "文件 '{0}' 已更新"
-#: views/documents.py:136
+#: views/documents.py:137
msgid "Document '{0}' deleted."
msgstr "文件 '{0}' 已刪除"
diff --git a/wagtail/wagtailembeds/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/bg/LC_MESSAGES/django.po
index 356ac22c2..c90c66ff4 100644
--- a/wagtail/wagtailembeds/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 20:14+0000\n"
"Last-Translator: LyuboslavPetrov \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
diff --git a/wagtail/wagtailembeds/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/ca/LC_MESSAGES/django.po
index 0628fc81a..f1605c473 100644
--- a/wagtail/wagtailembeds/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-22 12:45+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/de/LC_MESSAGES/django.po
index 5cb1d5781..d608913fb 100644
--- a/wagtail/wagtailembeds/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/de/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-25 17:30+0000\n"
"Last-Translator: jspielmann \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/el/LC_MESSAGES/django.po
index a4fdd0b7d..cbc6c634b 100644
--- a/wagtail/wagtailembeds/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/el/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-22 12:34+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/en/LC_MESSAGES/django.po
index 6643b00ee..d656d1d63 100644
--- a/wagtail/wagtailembeds/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/wagtail/wagtailembeds/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/es/LC_MESSAGES/django.po
index 109d5fb92..05e4915e1 100644
--- a/wagtail/wagtailembeds/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-27 09:34+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/eu/LC_MESSAGES/django.po
index 058a717f0..0b62bb6eb 100644
--- a/wagtail/wagtailembeds/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 22:36+0000\n"
"Last-Translator: tomdyson \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/fr/LC_MESSAGES/django.po
index 1cd2eed64..dce212991 100644
--- a/wagtail/wagtailembeds/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-18 22:04+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/gl/LC_MESSAGES/django.po
index 6d027c5c1..bc48c912b 100644
--- a/wagtail/wagtailembeds/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
diff --git a/wagtail/wagtailembeds/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/mn/LC_MESSAGES/django.po
index 8f18fcace..a910cdb90 100644
--- a/wagtail/wagtailembeds/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/mn/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-03-01 17:11+0000\n"
"Last-Translator: delgermurun \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
diff --git a/wagtail/wagtailembeds/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/pl/LC_MESSAGES/django.po
index 4112c515b..1b4b89999 100644
--- a/wagtail/wagtailembeds/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-23 10:22+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/ro/LC_MESSAGES/django.po
index 66f8f4838..38e848315 100644
--- a/wagtail/wagtailembeds/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 22:27+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
diff --git a/wagtail/wagtailembeds/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/zh/LC_MESSAGES/django.po
index c5cd2d54d..4514379b6 100644
--- a/wagtail/wagtailembeds/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/zh/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 17:34+0000\n"
"Last-Translator: tomdyson \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
diff --git a/wagtail/wagtailembeds/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailembeds/locale/zh_TW/LC_MESSAGES/django.po
index 4a6b9aba2..df6f4e891 100644
--- a/wagtail/wagtailembeds/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailembeds/locale/zh_TW/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:43+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: 2014-02-24 17:34+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
diff --git a/wagtail/wagtailforms/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailforms/locale/en/LC_MESSAGES/django.po
index 3c183ff0f..4b64a68e9 100644
--- a/wagtail/wagtailforms/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailforms/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:44+0000\n"
+"POT-Creation-Date: 2014-08-01 16:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -79,7 +79,7 @@ msgstr ""
msgid "Optional - form submissions will be emailed to this address"
msgstr ""
-#: wagtail_hooks.py:22 templates/wagtailforms/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailforms/index.html:3
#: templates/wagtailforms/index.html:6
msgid "Forms"
msgstr ""
diff --git a/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
index 019a2e8e7..9f18d0a2e 100644
--- a/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,35 +19,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Заглавие"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Файл"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Тагове"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Изображения"
@@ -144,6 +164,7 @@ msgid "Yes, delete"
msgstr "Да, изтрий го"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Редакция на %(title)s"
@@ -166,26 +187,123 @@ msgstr ""
"Не сте качили никакви изображения. Защо не качите едно сега?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Редакция на %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Добави Изображение"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Добави Изображение"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Изтрий Изображение"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr ""
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Изображение '{0}' обновено."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Изображението не можеше да бъде запазено поради грешки."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Изображение '{0}' изтрито."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Изображение '{0}' добавено."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Изображението не можеше да бъде създадено поради грешки."
diff --git a/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
index 3fa7b7478..58c06cc71 100644
--- a/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:58+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,37 +19,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Títol"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Arxiu"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Tags"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
-"formats."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
-"formats."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Imatges"
@@ -145,6 +163,7 @@ msgid "Yes, delete"
msgstr "Si, esborra"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Editant imatge %(title)s"
@@ -167,26 +186,125 @@ msgstr ""
"No has pujat cap imatge. Per què no afegeixes una ara?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Editant imatge %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Afegeix una imatge"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Afegeix imatge"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Esborra imatge"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
+"formats."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
+"formats."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Cercar imatges"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Imatge '{0}' actualitzada."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "No s'ha pogut desar la imatge."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Imatge '{0}' eliminada."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Imatge '{0}' afegida."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "No s'ha pogut crear la imatge."
diff --git a/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
index 62997f97c..1663820e9 100644
--- a/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-24 19:01+0000\n"
"Last-Translator: pcraston \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,35 +20,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Titel"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Datei"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Schlagwörter"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Bilder"
@@ -146,6 +166,7 @@ msgid "Yes, delete"
msgstr "Ja, löschen"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Bild %(title)s bearbeiten"
@@ -169,26 +190,123 @@ msgstr ""
"Sie haben noch keine Bilder hochgeladen. Laden Sie doch jetzt eins hoch!"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Bild %(title)s bearbeiten"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Ein Bild hinzufügen"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Bild hinzufügen"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Bild löschen"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Nach Bildern suchen"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Bild '{0}' geändert."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Aufgrund von Fehlern konnte das Bild nicht gespeichert werden."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Bild '{0}' gelöscht."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Bild '{0}' hinzugefügt."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Aufgrund von Fehlern konnte das Bild nicht erstellt werden."
diff --git a/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
index 260846989..87ec737ba 100644
--- a/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:17+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,33 +19,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Τίτλος"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Αρχείο"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Ετικέτες"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Εικόνες"
@@ -142,6 +164,7 @@ msgid "Yes, delete"
msgstr "Ναι, να διαγραφεί"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Επεξεργασία εικόνας %(title)s"
@@ -165,26 +188,121 @@ msgstr ""
"Δεν υπάρχουν εικόνες. Θέλετε να προσθέσετε μερικές;"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Επεξεργασία εικόνας %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Προσθήκη εικόνας"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Προσθήκη εικόνας"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Διαγραφή εικόνας"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Αναζήτηση εικόνων"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Η εικόνα '{0}' ενημερώθηκε."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Δεν ήταν δυνατή η αποθήκευση της εικόνας."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Η εικόνα '{0}' διαγράφηκε."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Η εικόνα '{0}' δημιουργήθηκε."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Δεν ήταν δυνατή η δημιουργία της εικόνας."
diff --git a/wagtail/wagtailimages/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/en/LC_MESSAGES/django.po
index 035259450..3fddd59f3 100644
--- a/wagtail/wagtailimages/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,32 +17,55 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr ""
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr ""
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr ""
-#: utils.py:17
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-
-#: utils.py:28
-#, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr ""
@@ -134,6 +157,7 @@ msgid "Yes, delete"
msgstr ""
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr ""
@@ -154,26 +178,117 @@ msgid ""
"\"%(wagtailimages_add_image_url)s\">add one now?"
msgstr ""
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+msgid "Add multiple images"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:13
+msgid "Add images"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+msgid "Delete"
+msgstr ""
+
+#: utils/validators.py:17 utils/validators.py:28
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+
+#: utils/validators.py:35
+#, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr ""
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr ""
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr ""
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr ""
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr ""
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr ""
diff --git a/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
index 5079ae3e5..b78b9ddf9 100644
--- a/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:21+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,37 +20,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Título"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Archivo"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Etiquetas"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
-"gif, jpeg o png."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
-"gif, jpeg o png."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Imágenes"
@@ -148,6 +166,7 @@ msgid "Yes, delete"
msgstr "Sí, eliminar"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Editando imagen %(title)s"
@@ -172,26 +191,125 @@ msgstr ""
"No has subido imágenes. ¿Por qué no añadir una ahora?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Editando imagen %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Añadir una imagen"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Añadir imagen"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Eliminar imagen"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
+"gif, jpeg o png."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
+"gif, jpeg o png."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Buscar imágenes"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Imagen '{0}' actualizada."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "La imagen no puedo ser guardada debido a errores"
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Imagen '{0}' eliminada."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Imagen '{0}' añadida."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "La imagen no pudo ser creada debido a errores."
diff --git a/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
index 6a2bb4615..3d133b441 100644
--- a/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,32 +18,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr ""
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr ""
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr ""
-#: utils.py:17
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-
-#: utils.py:28
-#, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr ""
@@ -135,6 +158,7 @@ msgid "Yes, delete"
msgstr ""
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr ""
@@ -155,26 +179,117 @@ msgid ""
"\"%(wagtailimages_add_image_url)s\">add one now?"
msgstr ""
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+msgid "Add multiple images"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:13
+msgid "Add images"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+msgid "Delete"
+msgstr ""
+
+#: utils/validators.py:17 utils/validators.py:28
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+
+#: utils/validators.py:35
+#, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr ""
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr ""
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr ""
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr ""
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr ""
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr ""
diff --git a/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
index 824522083..81ee938f4 100644
--- a/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 23:15+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,35 +19,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Titre"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Fichier"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Mots-clés"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Images"
@@ -145,6 +165,7 @@ msgid "Yes, delete"
msgstr "Oui, supprimer"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Édition de l'image %(title)s"
@@ -165,26 +186,123 @@ msgid ""
"\"%(wagtailimages_add_image_url)s\">add one now?"
msgstr ""
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Édition de l'image %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Ajouter une image"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Ajouter l'image"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Supprimer l'image"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr ""
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Image '{0}' mise à jour."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr ""
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Image '{0}' supprimée."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Image '{0}' ajoutée."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr ""
diff --git a/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
index ed219144d..bdc82d234 100644
--- a/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -20,37 +20,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Título"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Arquivo"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Etiquetas"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
-"gif, jpeg o png."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
-"gif, jpeg o png."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Imaxes"
@@ -148,6 +166,7 @@ msgid "Yes, delete"
msgstr "Sí, eliminar"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Editando imaxe %(title)s"
@@ -170,26 +189,125 @@ msgstr ""
"No subiches imaxes. ¿Por qué non engadir unha agora?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Editando imaxe %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Engadir unha imaxe"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Engadir imaxe"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Eliminar imaxe"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
+"gif, jpeg o png."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
+"gif, jpeg o png."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Buscar imaxes"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Imaxe '{0}' actualizada."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "A imaxe non puido ser gardada debido a erros"
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Imaxe '{0}' eliminada."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Imaxe '{0}' engadida."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "A imaxe non puido ser creada debido a erros."
diff --git a/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
index b6c48082f..481d53919 100644
--- a/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,33 +19,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Гарчиг"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Файл"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Шошго"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Зургууд"
@@ -141,6 +163,7 @@ msgid "Yes, delete"
msgstr "Тийм, устга"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "%(title)s зургийг засч байна"
@@ -163,26 +186,121 @@ msgstr ""
"Та зураг оруулаагүй байна. Яагаад одоо нэгийг оруулж болохгүй гэж?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "%(title)s зургийг засч байна"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Зураг нэмэх"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Зураг нэмэх"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Зургийг устгах"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Зураг хайх"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "'{0}' зураг засагдлаа."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Зураг энэ алдаануудаас шалтгаалан хадгалагдсангүй."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "'{0}' зураг устлаа."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "'{0}' зураг нэмэгдлээ."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Зураг энэ алдаануудаас шалтгаалан хадгалагдсангүй."
diff --git a/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
index d0925b373..0d282f588 100644
--- a/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 22:16+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -21,37 +21,55 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Tytuł"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Plik"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Tagi"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr ""
-"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
-"gif, jpeg lub png."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr ""
-"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
-"gif, jpeg lub png."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Obrazy"
@@ -153,6 +171,7 @@ msgid "Yes, delete"
msgstr "Tak, usuń"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Edycja obrazu %(title)s"
@@ -175,26 +194,125 @@ msgstr ""
"Nie przesłano żadnych obrazów. Czemu nie dodać jednego teraz?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Edycja obrazu %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Dodaj obraz"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Dodaj obraz"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Usuń obraz"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
+"gif, jpeg lub png."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr ""
+"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
+"gif, jpeg lub png."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Szukaj obrazów"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Uaktualniono obraz '{0}'."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Obraz nie mógł zostać zapisany z powodu błędów."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Usunięto obraz '{0}'."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Dodano obraz '{0}'."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Obraz nie mógł zostać stworzony z powodu błędów."
diff --git a/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
index f3554ce8e..ab44c17de 100644
--- a/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 13:20+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -20,33 +20,55 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "Titlu"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "Fișier"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "Etichete"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "Imagini"
@@ -145,6 +167,7 @@ msgid "Yes, delete"
msgstr "Da, șterge"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "Editare imagine %(title)s"
@@ -168,26 +191,121 @@ msgstr ""
"Nu ați încărcat nici o imagine. De să nu adăugați una?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "Editare imagine %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "Adaugă o imagine"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "Adaugă imagine"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "Șterge imagine"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "Caută imagini"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "Imaginea '{0}' a fost actualizată."
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "Imaginea nu a fost salvată din cauza erorilor."
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "Imaginea '{0}' a fost ștearsă."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "Imaginea '{0}' a fost adăugată."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "Imaginea nu a fost creată din cauza erorilor."
diff --git a/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
index 8eabb8a5b..4e734176c 100644
--- a/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,33 +18,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "标题"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "文件"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "标签"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "图片"
@@ -135,6 +157,7 @@ msgid "Yes, delete"
msgstr "是的,删除"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "编辑图片 %(title)s"
@@ -157,26 +180,121 @@ msgstr ""
"没有任何上传的图片。为什么不 添加"
"一个?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "编辑图片 %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "添加一个图片"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "添加图片"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "删除图片"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr ""
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "图片 '{0}' 已更新"
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "图片 因为有错不能被保存"
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "图片 '{0}' 已删除."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "图片 '{0}' 已添加."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "图片因为有错不能被创建"
diff --git a/wagtail/wagtailimages/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/zh_TW/LC_MESSAGES/django.po
index 3764ea36e..bcde4adb6 100644
--- a/wagtail/wagtailimages/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:53+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -17,33 +17,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: models.py:29
+#: forms.py:37
+msgid "Filter"
+msgstr ""
+
+#: forms.py:39
+msgid "Original size"
+msgstr ""
+
+#: forms.py:40
+msgid "Resize to width"
+msgstr ""
+
+#: forms.py:41
+msgid "Resize to height"
+msgstr ""
+
+#: forms.py:42
+msgid "Resize to min"
+msgstr ""
+
+#: forms.py:43
+msgid "Resize to max"
+msgstr ""
+
+#: forms.py:44
+msgid "Resize to fill"
+msgstr ""
+
+#: forms.py:47
+msgid "Width"
+msgstr ""
+
+#: forms.py:48
+msgid "Height"
+msgstr ""
+
+#: models.py:34 templates/wagtailimages/images/usage.html:16
msgid "Title"
msgstr "標題"
-#: models.py:44
+#: models.py:49
msgid "File"
msgstr "文件"
-#: models.py:50
+#: models.py:55
msgid "Tags"
msgstr "標籤"
-#: utils.py:17
-#, fuzzy
-msgid ""
-"Not a valid image. Please use a gif, jpeg or png file with the correct file "
-"extension."
-msgstr "不是有效的圖片格式。請用 gif、jpeg 或者 png 格式的圖片"
-
-#: utils.py:28
-#, fuzzy, python-format
-msgid ""
-"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
-"file extension."
-msgstr "不是有效的圖片格式。請用 gif、jpeg 或者 png 格式的圖片"
-
-#: wagtail_hooks.py:23 templates/wagtailimages/images/index.html:5
+#: wagtail_hooks.py:64 templates/wagtailimages/images/index.html:5
#: templates/wagtailimages/images/index.html:18
msgid "Images"
msgstr "圖片"
@@ -139,6 +161,7 @@ msgid "Yes, delete"
msgstr "是的,刪除"
#: templates/wagtailimages/images/edit.html:4
+#: templates/wagtailimages/images/url_generator.html:4
#, python-format
msgid "Editing image %(title)s"
msgstr "編輯圖片 %(title)s"
@@ -161,26 +184,121 @@ msgstr ""
"沒有任何上傳的圖片。為什麼不 新增"
"一個呢?"
-#: views/images.py:31 views/images.py:42
+#: templates/wagtailimages/images/url_generator.html:9
+msgid "Generating URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:25
+msgid "URL"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:28
+msgid "Preview"
+msgstr ""
+
+#: templates/wagtailimages/images/url_generator.html:34
+msgid ""
+"Note that images generated larger than the screen will appear smaller when "
+"previewed here, so they fit the screen."
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:3
+#, fuzzy, python-format
+msgid "Usage of %(title)s"
+msgstr "編輯圖片 %(title)s"
+
+#: templates/wagtailimages/images/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailimages/images/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:3
+#, fuzzy
+msgid "Add multiple images"
+msgstr "新增一個圖片"
+
+#: templates/wagtailimages/multiple/add.html:13
+#, fuzzy
+msgid "Add images"
+msgstr "新增圖片"
+
+#: templates/wagtailimages/multiple/add.html:18
+msgid "Drag and drop images into this area to upload immediately."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:22
+msgid "Or choose from your computer"
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:47
+msgid ""
+"Upload successful. Please update this image with a more appropriate title, "
+"if necessary. You may also delete the image completely if the upload wasn't "
+"required."
+msgstr ""
+
+#: templates/wagtailimages/multiple/add.html:48
+msgid "Sorry, upload failed."
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:10
+msgid "Update"
+msgstr ""
+
+#: templates/wagtailimages/multiple/edit_form.html:11
+#, fuzzy
+msgid "Delete"
+msgstr "刪除圖片"
+
+#: utils/validators.py:17 utils/validators.py:28
+#, fuzzy
+msgid ""
+"Not a valid image. Please use a gif, jpeg or png file with the correct file "
+"extension (*.gif, *.jpg or *.png)."
+msgstr "不是有效的圖片格式。請用 gif、jpeg 或者 png 格式的圖片"
+
+#: utils/validators.py:35
+#, fuzzy, python-format
+msgid ""
+"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
+"file extension (*.gif, *.jpg or *.png)."
+msgstr "不是有效的圖片格式。請用 gif、jpeg 或者 png 格式的圖片"
+
+#: views/images.py:37 views/images.py:47
msgid "Search images"
msgstr "搜尋圖片"
-#: views/images.py:94
+#: views/images.py:99
msgid "Image '{0}' updated."
msgstr "圖片 '{0}' 已更新"
-#: views/images.py:97
+#: views/images.py:102
msgid "The image could not be saved due to errors."
msgstr "圖片因有錯誤而無法儲存。"
-#: views/images.py:116
+#: views/images.py:188
msgid "Image '{0}' deleted."
msgstr "圖片 '{0}' 已刪除."
-#: views/images.py:134
+#: views/images.py:206
msgid "Image '{0}' added."
msgstr "圖片 '{0}' 已加入."
-#: views/images.py:137
+#: views/images.py:209
msgid "The image could not be created due to errors."
msgstr "圖片因有錯而不能被建立。"
diff --git a/wagtail/wagtailredirects/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/bg/LC_MESSAGES/django.po
index ffbced366..11ee5d379 100644
--- a/wagtail/wagtailredirects/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -69,7 +69,7 @@ msgstr "Пренасочването '{0}' добавено."
msgid "The redirect could not be created due to errors."
msgstr "Пренасочването не можеше да бъде създадено поради грешки."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Пренасочвания"
diff --git a/wagtail/wagtailredirects/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/ca/LC_MESSAGES/django.po
index 26c3931d2..53882f99c 100644
--- a/wagtail/wagtailredirects/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:59+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -69,7 +69,7 @@ msgstr "Redireccionament '{0}' afegit."
msgid "The redirect could not be created due to errors."
msgstr "No s'ha pogut crear el redireccionament."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Redireccions"
diff --git a/wagtail/wagtailredirects/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/de/LC_MESSAGES/django.po
index 3b1171921..b0937da4b 100644
--- a/wagtail/wagtailredirects/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/de/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-24 19:01+0000\n"
"Last-Translator: pcraston \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -71,7 +71,7 @@ msgstr "Weiterleitung '{0}' hinzugefügt."
msgid "The redirect could not be created due to errors."
msgstr "Aufgrund von Fehlern konnte die Weiterleitung nicht erstellt werden."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Weiterleitungen"
diff --git a/wagtail/wagtailredirects/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/el/LC_MESSAGES/django.po
index 1aa6bf7b6..a20fde9f9 100644
--- a/wagtail/wagtailredirects/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/el/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:16+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -69,7 +69,7 @@ msgstr "Η ανακατεύθυνση '{0}' προστέθηκε."
msgid "The redirect could not be created due to errors."
msgstr "Δεν ήταν δυνατή η δημιουργία της ανακατεύθυνσης."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Ανακατευθύνει"
diff --git a/wagtail/wagtailredirects/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/en/LC_MESSAGES/django.po
index b7e87b086..6a3b4fc05 100644
--- a/wagtail/wagtailredirects/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -63,7 +63,7 @@ msgstr ""
msgid "The redirect could not be created due to errors."
msgstr ""
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr ""
diff --git a/wagtail/wagtailredirects/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/es/LC_MESSAGES/django.po
index 0f9cec052..5eae66a50 100644
--- a/wagtail/wagtailredirects/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:21+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -70,7 +70,7 @@ msgstr "Redirección '{0}' añadida."
msgid "The redirect could not be created due to errors."
msgstr "La redirección no puede ser creada debido a errores."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Redirecciona"
diff --git a/wagtail/wagtailredirects/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/eu/LC_MESSAGES/django.po
index d7bbbe401..f2336f56b 100644
--- a/wagtail/wagtailredirects/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -64,7 +64,7 @@ msgstr ""
msgid "The redirect could not be created due to errors."
msgstr ""
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr ""
diff --git a/wagtail/wagtailredirects/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/fr/LC_MESSAGES/django.po
index 047a9c754..a88294e24 100644
--- a/wagtail/wagtailredirects/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 23:07+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -69,7 +69,7 @@ msgstr "Redirection '{0} ajoutée."
msgid "The redirect could not be created due to errors."
msgstr "La redirection ne peut être créé du fait d'erreurs."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Redirections"
diff --git a/wagtail/wagtailredirects/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/gl/LC_MESSAGES/django.po
index 40788394e..a0a877ef8 100644
--- a/wagtail/wagtailredirects/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:32+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -70,7 +70,7 @@ msgstr "Redirección '{0}' engadida."
msgid "The redirect could not be created due to errors."
msgstr "A redirección non pede ser creada debido a erros."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Redirecciona"
diff --git a/wagtail/wagtailredirects/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/mn/LC_MESSAGES/django.po
index 32dc9b4fb..8fe2a3670 100644
--- a/wagtail/wagtailredirects/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/mn/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -64,7 +64,7 @@ msgstr ""
msgid "The redirect could not be created due to errors."
msgstr ""
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr ""
diff --git a/wagtail/wagtailredirects/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/pl/LC_MESSAGES/django.po
index 7903d29c7..5a89ebb3f 100644
--- a/wagtail/wagtailredirects/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 22:16+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -70,7 +70,7 @@ msgstr "Dodano przekierowanie '{0}'."
msgid "The redirect could not be created due to errors."
msgstr "Przekierowanie nie mogło zostać stworzone z powodu błędów."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Przekierowania"
diff --git a/wagtail/wagtailredirects/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/ro/LC_MESSAGES/django.po
index b6ec29d81..f248a3e8f 100644
--- a/wagtail/wagtailredirects/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/ro/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 13:21+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -69,7 +69,7 @@ msgstr "Redirecționarea '{0}' a fost adăugată."
msgid "The redirect could not be created due to errors."
msgstr "Redirecționarea nu a fost creată din cauza erorilor."
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "Redirecționări"
diff --git a/wagtail/wagtailredirects/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/zh/LC_MESSAGES/django.po
index d996eb145..7b7787add 100644
--- a/wagtail/wagtailredirects/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -65,7 +65,7 @@ msgstr "转向 '{0}' 已添加"
msgid "The redirect could not be created due to errors."
msgstr "由于多个错误,转向设置无法创建。"
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "转向"
diff --git a/wagtail/wagtailredirects/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailredirects/locale/zh_TW/LC_MESSAGES/django.po
index 0e909ea5c..9c8175de3 100644
--- a/wagtail/wagtailredirects/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailredirects/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:47+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -66,7 +66,7 @@ msgstr "重導向 '{0}' 已加入"
msgid "The redirect could not be created due to errors."
msgstr "重導向因有錯誤而無法建立。"
-#: wagtail_hooks.py:22 templates/wagtailredirects/index.html:3
+#: wagtail_hooks.py:23 templates/wagtailredirects/index.html:3
#: templates/wagtailredirects/index.html:17
msgid "Redirects"
msgstr "重導向"
diff --git a/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
index 3bddd3064..b61a741b3 100644
--- a/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:54+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -37,7 +37,7 @@ msgstr ""
msgid "Please specify at least one recommendation for this search term."
msgstr ""
-#: wagtail_hooks.py:22 templates/wagtailsearch/editorspicks/list.html:9
+#: wagtail_hooks.py:23 templates/wagtailsearch/editorspicks/list.html:9
msgid "Editors picks"
msgstr "Избрано от Редактора"
@@ -46,14 +46,15 @@ msgstr "Избрано от Редактора"
msgid "Add editor's pick"
msgstr "Добави \"Избрано от Редактора\""
-#: templates/wagtailsearch/editorspicks/add.html:9
+#: templates/wagtailsearch/editorspicks/add.html:10
+#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
\"Избор на Редактора\" са средство за препоръчване на специфични "
@@ -63,17 +64,17 @@ msgstr ""
"\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Les seleccions dels editors són una mena de recomanacions de pàgines "
@@ -62,14 +63,15 @@ msgstr ""
"Per exemple, recomanant la teva pàgina principal de donacions en un termini "
"de cerca comú com \"donar\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
El camp \"Cerca paraula(es)/frases\" de sota ha de contenir la cerca "
@@ -78,7 +80,7 @@ msgstr ""
"des dels terminis de cerca que s'han fet populars a través dels usuaris del "
"teu lloc.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Redaktionsempfehlungen sind eine Möglichkeit, bestimmte Seiten zu "
@@ -63,14 +64,15 @@ msgstr ""
"nach dem Suchbegriff \"unterstützen\" gesucht wird.
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
Im Eingabefeld \"Suchbegriffe/Phrasen\" müssen Sie den "
@@ -79,7 +81,7 @@ msgstr ""
"Unterstützung können Sie aus häufig verwendeten Suchbegriffen wählen.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Οι επιλογές συντακτών είναι ένας τρόπος πρότασης συγκεκριμένων σελίδων οι "
@@ -63,14 +64,15 @@ msgstr ""
"παράδειγμα, μπορείτε να προτείνετε τη σελίδα δωρεων σας σε μια αναζήτηση "
"ενός λιγότερο συνηθισμένου όρου όπως \"δίνω\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"\n"
@@ -80,7 +82,7 @@ msgstr ""
"βοήθεια, μπορείτε να επιλέξετε όρους αναζήτησης που ήταν δημοφιλείς στους "
"χρήστες.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Las Selecciones del editor son una manera de recomendar las "
@@ -65,14 +66,15 @@ msgstr ""
"\"dando\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
El campo de \"término(s)/frase de Búsqueda\" debe contener la "
@@ -82,7 +84,7 @@ msgstr ""
"búsqueda que han sido populares entre los usuarios de tu sitio.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
As Seleccións do editor son unha maneira de recomendar as "
@@ -65,14 +66,15 @@ msgstr ""
"\"dando\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
O campo de \"termo(s)/frase de Busca\" debe conter a busca "
@@ -82,7 +84,7 @@ msgstr ""
"os usuarios do teu sitio.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Wybór redakcji służy do polecania stron, które normalnie "
@@ -64,14 +65,15 @@ msgstr ""
"wyrażeń jak np. \"oferować\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
Pole \"Frazy wyszukiwania\" musi zawierać pełne i dokładne "
@@ -80,7 +82,7 @@ msgstr ""
"z fraz wyszukiwania popularnych wśród użytkowników Twojej strony
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
\n"
-" "
+" "
msgstr ""
"\n"
"
Selecțiile editoriale sunt mijloace de recomandare de pagini ce pot să nu "
@@ -63,14 +64,15 @@ msgstr ""
"recomandarea paginii de donații utilizatorilor care au căutat termeni mai "
"puțin specifici ca \"dare\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
-" "
+" "
msgstr ""
"\n"
"
Câmpul \"Termeni/frază de căutare\" de mai jos trebuie să conțină șirul "
@@ -78,7 +80,7 @@ msgstr ""
"em> greșeli ortografice și alte greșeli. Puteți să alegeți din termenii de "
"căutare populari printre utilizatorii sitului dvs.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
Editors picks are a means of recommending specific pages that "
-"might not organically come high up in search results. E.g recommending your "
-"primary donation page to a user searching with a less common term like "
+"
Editors picks are a means of recommending specific pages "
+"that might not organically come high up in search results. E.g recommending "
+"your primary donation page to a user searching with a less common term like "
"\"giving\".
The \"Search term(s)/phrase\" field below must contain the full "
-"and exact search for which you wish to provide recommended results, "
+"
The \"Search term(s)/phrase\" field below must contain "
+"the full and exact search for which you wish to provide recommended results, "
"including any misspellings/user error. To help, you can choose from "
"search terms that have been popular with users of your site.
\n"
" "
-#: templates/wagtailsearch/editorspicks/add.html:25
+#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
msgid "Save"
msgstr "儲存"
diff --git a/wagtail/wagtailsnippets/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/bg/LC_MESSAGES/django.po
index ceb132915..a0b4b5f32 100644
--- a/wagtail/wagtailsnippets/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-24 20:18+0000\n"
"Last-Translator: LyuboslavPetrov \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Откъси от код"
@@ -80,6 +80,7 @@ msgid "Editing"
msgstr "Редактиране"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Заглавие"
@@ -107,22 +108,47 @@ msgstr ""
"Няма създадени %(snippet_type_name_plural)s. Защо не добавите един сега?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' е създаден"
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "Този код-откъс не беше създаден поради грешки."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' обновен."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "Откъса от док не можеше да бъде запазен поради грешки."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' изтрит."
diff --git a/wagtail/wagtailsnippets/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/ca/LC_MESSAGES/django.po
index 34c33f0b2..a573faa4f 100644
--- a/wagtail/wagtailsnippets/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-26 21:30+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Fragments"
@@ -80,6 +80,7 @@ msgid "Editing"
msgstr "Editant"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Títol"
@@ -107,22 +108,47 @@ msgstr ""
"No s'ha creat cap %(snippet_type_name_plural)s. Per què no afeixes un?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' creat."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "El fragment no s'ha pogut crear degut a errors."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' actualitzat."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "El fragment no s'ha pogut desar degut a errors."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' esborrat."
diff --git a/wagtail/wagtailsnippets/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/de/LC_MESSAGES/django.po
index 62a92e748..5fbe32b77 100644
--- a/wagtail/wagtailsnippets/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/de/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-25 17:59+0000\n"
"Last-Translator: jspielmann \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Snippets"
@@ -81,6 +81,7 @@ msgid "Editing"
msgstr "Bearbeiten"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Titel"
@@ -108,22 +109,47 @@ msgstr ""
"Sie haben noch keine %(snippet_type_name_plural)s erstellt. Erstellen Sie doch jetzt eins!"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' erstellt"
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "Aufgrund von Fehlern konnte das Snippet nicht erstellt werden."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' geändert."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "Aufgrund von Fehlern konnte das Snippet nicht gespeichert werden."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' gelöscht."
diff --git a/wagtail/wagtailsnippets/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/el/LC_MESSAGES/django.po
index 39a5302d2..5c0c5e0fc 100644
--- a/wagtail/wagtailsnippets/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/el/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-22 17:16+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Snippets"
@@ -81,6 +81,7 @@ msgid "Editing"
msgstr "Διόρθωση"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Τίτλος"
@@ -108,22 +109,47 @@ msgstr ""
"Δεν υπάρχουν %(snippet_type_name_plural)s. Θέλετε να προσθέσετε μερικά;"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "Δημιουργήθηκε το '{instance}' τύπου {snippet_type}."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "Δεν ήταν δυνατή η δημιουργία του snippet."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "Πραγματοποιήθηκε αλλαγή του '{instance}' τύπου {snippet_type}."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "Δεν ήταν δυνατή η αποθήκευση του snippet."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "Το '{instance}' τύπου {snippet_type} διαγράφηκε."
diff --git a/wagtail/wagtailsnippets/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/en/LC_MESSAGES/django.po
index e4048d3cb..cc93c2812 100644
--- a/wagtail/wagtailsnippets/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr ""
@@ -78,6 +78,7 @@ msgid "Editing"
msgstr ""
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr ""
@@ -103,22 +104,47 @@ msgid ""
"\"%(wagtailsnippets_create_url)s\">add one?"
msgstr ""
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr ""
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr ""
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr ""
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr ""
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr ""
diff --git a/wagtail/wagtailsnippets/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/es/LC_MESSAGES/django.po
index 96a2fe344..7d1af6507 100644
--- a/wagtail/wagtailsnippets/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-27 10:02+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Fragmentos"
@@ -81,6 +81,7 @@ msgid "Editing"
msgstr "Editando"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Título"
@@ -108,22 +109,47 @@ msgstr ""
"Ningún %(snippet_type_name_plural)s ha sido creado. ¿Por qué no añadir uno?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' creado."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "El fragmento no pudo ser creada debido a errores."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' actualizado."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "El fragmento no puedo ser guardado debido a errores."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' eliminado."
diff --git a/wagtail/wagtailsnippets/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/eu/LC_MESSAGES/django.po
index 1418e9ec4..90c829502 100644
--- a/wagtail/wagtailsnippets/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-24 22:36+0000\n"
"Last-Translator: tomdyson \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr ""
@@ -79,6 +79,7 @@ msgid "Editing"
msgstr ""
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr ""
@@ -104,22 +105,47 @@ msgid ""
"\"%(wagtailsnippets_create_url)s\">add one?"
msgstr ""
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr ""
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr ""
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr ""
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr ""
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr ""
diff --git a/wagtail/wagtailsnippets/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/fr/LC_MESSAGES/django.po
index d65e22a15..c16628a14 100644
--- a/wagtail/wagtailsnippets/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 21:51+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr ""
@@ -80,6 +80,7 @@ msgid "Editing"
msgstr "Rédaction"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Titre"
@@ -107,22 +108,47 @@ msgstr ""
"Aucun %(snippet_type_name_plural)s n'a été créé. Pourquoi ne pas en ajouter un?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr ""
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr ""
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr ""
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr ""
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' supprimé."
diff --git a/wagtail/wagtailsnippets/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/gl/LC_MESSAGES/django.po
index 62e27053a..930d2fd3a 100644
--- a/wagtail/wagtailsnippets/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/gl/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:33+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Fragmentos"
@@ -80,6 +80,7 @@ msgid "Editing"
msgstr "Editando"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Título"
@@ -107,22 +108,47 @@ msgstr ""
"Ningún %(snippet_type_name_plural)s foi creado. ¿Por qué non engadir un?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' creado."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "O fragmento non puido ser creado debido a errores."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' actualizado."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "O fragmento non puido ser gardado debido a erros."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' eliminado."
diff --git a/wagtail/wagtailsnippets/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/mn/LC_MESSAGES/django.po
index 0f241162f..0da920884 100644
--- a/wagtail/wagtailsnippets/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/mn/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-25 05:54+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr ""
@@ -79,6 +79,7 @@ msgid "Editing"
msgstr ""
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr ""
@@ -104,22 +105,47 @@ msgid ""
"\"%(wagtailsnippets_create_url)s\">add one?"
msgstr ""
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr ""
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr ""
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr ""
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr ""
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr ""
diff --git a/wagtail/wagtailsnippets/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/pl/LC_MESSAGES/django.po
index 12ca36c94..775de9f51 100644
--- a/wagtail/wagtailsnippets/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-23 10:23+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Snippety"
@@ -80,6 +80,7 @@ msgid "Editing"
msgstr "Edycja"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Tytuł"
@@ -107,22 +108,47 @@ msgstr ""
"Żaden%(snippet_type_name_plural)s nie został stworzony. Czemu nie dodać jednego?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "Stworzono {snippet_type} '{instance}'."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "Snippet nie mógł zostać stworzony z powodu błędów."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "Uaktualniono {snippet_type} '{instance}'."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "Snippet nie mógł zostać zapisany z powodu błędów."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "Usunięto {snippet_type} '{instance}'."
diff --git a/wagtail/wagtailsnippets/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/ro/LC_MESSAGES/django.po
index c26f317ba..1011b0197 100644
--- a/wagtail/wagtailsnippets/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/ro/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-23 14:19+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -21,7 +21,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "Fragmente"
@@ -82,6 +82,7 @@ msgid "Editing"
msgstr "Editare"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "Titlu"
@@ -109,22 +110,47 @@ msgstr ""
"Nu au fost create %(snippet_type_name_plural)s. De să nu adăugați unul?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "{snippet_type} '{instance}' a fost creat."
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "Fragmentul nu a fost creat din cauza erorilor."
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "{snippet_type} '{instance}' a fost actualizat."
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "Fragmentul nu a fost salvat din cauza erorilor."
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "{snippet_type} '{instance}' a fost șters."
diff --git a/wagtail/wagtailsnippets/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/zh/LC_MESSAGES/django.po
index 16195bb38..48fddc957 100644
--- a/wagtail/wagtailsnippets/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-28 16:07+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "片段"
@@ -79,6 +79,7 @@ msgid "Editing"
msgstr "编辑"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "标题"
@@ -106,22 +107,47 @@ msgstr ""
"没有任何%(snippet_type_name_plural)s片段。为什么不创建一个?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "已创建{snippet_type} '{instance}'"
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "多个错误导致这个片段无法创建。"
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "已经更新{snippet_type} '{instance}'。"
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "多个错误导致这个片段无法保存"
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "已删除{snippet_type} '{instance}'"
diff --git a/wagtail/wagtailsnippets/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailsnippets/locale/zh_TW/LC_MESSAGES/django.po
index 7c4182171..2dd9d1c95 100644
--- a/wagtail/wagtailsnippets/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsnippets/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:55+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-02-28 16:07+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: wagtail_hooks.py:24 templates/wagtailsnippets/snippets/index.html:3
+#: wagtail_hooks.py:25 templates/wagtailsnippets/snippets/index.html:3
msgid "Snippets"
msgstr "片段"
@@ -78,6 +78,7 @@ msgid "Editing"
msgstr "編輯"
#: templates/wagtailsnippets/snippets/list.html:8
+#: templates/wagtailsnippets/snippets/usage.html:16
msgid "Title"
msgstr "標題"
@@ -105,22 +106,47 @@ msgstr ""
"沒有任何 %(snippet_type_name_plural)s 片段。為什麼不建立一個?"
-#: views/snippets.py:127
+#: templates/wagtailsnippets/snippets/usage.html:3
+#, python-format
+msgid "Usage of %(title)s"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:5
+msgid "Usage of"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:17
+msgid "Parent"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:18
+msgid "Type"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:19
+msgid "Status"
+msgstr ""
+
+#: templates/wagtailsnippets/snippets/usage.html:26
+msgid "Edit this page"
+msgstr ""
+
+#: views/snippets.py:129
msgid "{snippet_type} '{instance}' created."
msgstr "已建立 {snippet_type} '{instance}'"
-#: views/snippets.py:134
+#: views/snippets.py:136
msgid "The snippet could not be created due to errors."
msgstr "片段因有錯誤而無法建立。"
-#: views/snippets.py:168
+#: views/snippets.py:170
msgid "{snippet_type} '{instance}' updated."
msgstr "已經更新 {snippet_type} '{instance}'。"
-#: views/snippets.py:175
+#: views/snippets.py:177
msgid "The snippet could not be saved due to errors."
msgstr "片段因有錯誤而無法儲存。"
-#: views/snippets.py:204
+#: views/snippets.py:206
msgid "{snippet_type} '{instance}' deleted."
msgstr "已刪除 {snippet_type} '{instance}'"
diff --git a/wagtail/wagtailusers/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/bg/LC_MESSAGES/django.po
index ed8de946f..0a3be5d92 100644
--- a/wagtail/wagtailusers/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/bg/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
@@ -95,7 +95,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Потребители"
diff --git a/wagtail/wagtailusers/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/ca/LC_MESSAGES/django.po
index 94db0ca2e..718365e70 100644
--- a/wagtail/wagtailusers/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/ca/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:56+0000\n"
"Last-Translator: Lloople \n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
@@ -92,7 +92,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Usuaris"
diff --git a/wagtail/wagtailusers/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/de/LC_MESSAGES/django.po
index d6c320dfe..d216827fe 100644
--- a/wagtail/wagtailusers/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/de/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
@@ -96,7 +96,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Benutzer"
diff --git a/wagtail/wagtailusers/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/el/LC_MESSAGES/django.po
index ee4a7e89e..0a8400b9c 100644
--- a/wagtail/wagtailusers/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/el/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:15+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
@@ -99,7 +99,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Χρήστες"
diff --git a/wagtail/wagtailusers/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/en/LC_MESSAGES/django.po
index 34caa392e..f2f7473d1 100644
--- a/wagtail/wagtailusers/locale/en/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -89,7 +89,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr ""
diff --git a/wagtail/wagtailusers/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/es/LC_MESSAGES/django.po
index b92d83b01..7b9465fa2 100644
--- a/wagtail/wagtailusers/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/es/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:19+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -97,7 +97,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Usuarios"
diff --git a/wagtail/wagtailusers/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/eu/LC_MESSAGES/django.po
index a90cbe57e..a318cd86d 100644
--- a/wagtail/wagtailusers/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/eu/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
@@ -90,7 +90,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr ""
diff --git a/wagtail/wagtailusers/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/fr/LC_MESSAGES/django.po
index 2d7c91e10..6f091d8c6 100644
--- a/wagtail/wagtailusers/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 23:16+0000\n"
"Last-Translator: nahuel\n"
"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
@@ -94,7 +94,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Utilisateurs"
diff --git a/wagtail/wagtailusers/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/gl/LC_MESSAGES/django.po
index a4da8c0a4..f81b208df 100644
--- a/wagtail/wagtailusers/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/gl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-23 10:33+0000\n"
"Last-Translator: fooflare \n"
"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
@@ -95,7 +95,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Usuarios"
diff --git a/wagtail/wagtailusers/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/mn/LC_MESSAGES/django.po
index 7556a95d2..0724b1d54 100644
--- a/wagtail/wagtailusers/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/mn/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
@@ -90,7 +90,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr ""
diff --git a/wagtail/wagtailusers/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/pl/LC_MESSAGES/django.po
index 79a29fae4..e5f9b456d 100644
--- a/wagtail/wagtailusers/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/pl/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 22:16+0000\n"
"Last-Translator: utek \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
@@ -96,7 +96,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Użytkownicy"
diff --git a/wagtail/wagtailusers/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/ro/LC_MESSAGES/django.po
index e7de771f9..167337849 100644
--- a/wagtail/wagtailusers/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/ro/LC_MESSAGES/django.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-18 13:22+0000\n"
"Last-Translator: zerolab\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
@@ -93,7 +93,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "Utilizatori"
diff --git a/wagtail/wagtailusers/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/zh/LC_MESSAGES/django.po
index 357282e7b..e23076a78 100644
--- a/wagtail/wagtailusers/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/zh/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: serafeim \n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
@@ -90,7 +90,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "用户"
diff --git a/wagtail/wagtailusers/locale/zh_TW/LC_MESSAGES/django.po b/wagtail/wagtailusers/locale/zh_TW/LC_MESSAGES/django.po
index 9af41844e..849cbccb4 100644
--- a/wagtail/wagtailusers/locale/zh_TW/LC_MESSAGES/django.po
+++ b/wagtail/wagtailusers/locale/zh_TW/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 10:52+0000\n"
+"POT-Creation-Date: 2014-08-01 16:39+0100\n"
"PO-Revision-Date: 2014-03-14 21:12+0000\n"
"Last-Translator: wdv4758h \n"
"Language-Team: \n"
@@ -89,7 +89,7 @@ msgstr ""
msgid "Receive notification when your page edit is rejected"
msgstr ""
-#: wagtail_hooks.py:21 templates/wagtailusers/index.html:4
+#: wagtail_hooks.py:22 templates/wagtailusers/index.html:4
#: templates/wagtailusers/index.html:17
msgid "Users"
msgstr "使用者"
From 8d6ffad7ec43a05ac40f4a0039446ee32c1dad2b Mon Sep 17 00:00:00 2001
From: Karl Hobley
Date: Fri, 1 Aug 2014 16:45:44 +0100
Subject: [PATCH 15/29] Pulled translations from Transifex
---
.../locale/bg/LC_MESSAGES/django.po | 220 +++-----------
.../locale/ca/LC_MESSAGES/django.po | 214 +++----------
.../locale/de/LC_MESSAGES/django.po | 230 ++++----------
.../locale/el/LC_MESSAGES/django.po | 219 +++-----------
.../locale/es/LC_MESSAGES/django.po | 232 +++-----------
.../locale/eu/LC_MESSAGES/django.po | 57 ++--
.../locale/fr/LC_MESSAGES/django.po | 202 +++----------
.../locale/gl/LC_MESSAGES/django.po | 232 +++-----------
.../locale/mn/LC_MESSAGES/django.po | 19 +-
.../locale/pl/LC_MESSAGES/django.po | 256 ++++------------
.../locale/pt_BR/LC_MESSAGES/django.po | 285 +++++-------------
.../locale/ro/LC_MESSAGES/django.po | 238 ++++-----------
.../locale/zh/LC_MESSAGES/django.po | 152 +++-------
.../locale/bg/LC_MESSAGES/django.po | 44 +--
.../locale/ca/LC_MESSAGES/django.po | 44 +--
.../locale/de/LC_MESSAGES/django.po | 44 +--
.../locale/el/LC_MESSAGES/django.po | 44 +--
.../locale/es/LC_MESSAGES/django.po | 43 +--
.../locale/eu/LC_MESSAGES/django.po | 19 +-
.../locale/fr/LC_MESSAGES/django.po | 36 +--
.../locale/gl/LC_MESSAGES/django.po | 39 +--
.../locale/mn/LC_MESSAGES/django.po | 21 +-
.../locale/pl/LC_MESSAGES/django.po | 45 +--
.../locale/ro/LC_MESSAGES/django.po | 49 ++-
.../locale/zh/LC_MESSAGES/django.po | 29 +-
.../locale/bg/LC_MESSAGES/django.po | 34 +--
.../locale/ca/LC_MESSAGES/django.po | 33 +-
.../locale/de/LC_MESSAGES/django.po | 39 +--
.../locale/el/LC_MESSAGES/django.po | 36 +--
.../locale/es/LC_MESSAGES/django.po | 33 +-
.../locale/eu/LC_MESSAGES/django.po | 15 +-
.../locale/fr/LC_MESSAGES/django.po | 19 +-
.../locale/gl/LC_MESSAGES/django.po | 33 +-
.../locale/mn/LC_MESSAGES/django.po | 15 +-
.../locale/pl/LC_MESSAGES/django.po | 44 +--
.../locale/ro/LC_MESSAGES/django.po | 44 +--
.../locale/zh/LC_MESSAGES/django.po | 23 +-
.../locale/bg/LC_MESSAGES/django.po | 48 ++-
.../locale/ca/LC_MESSAGES/django.po | 49 ++-
.../locale/de/LC_MESSAGES/django.po | 52 ++--
.../locale/el/LC_MESSAGES/django.po | 51 ++--
.../locale/es/LC_MESSAGES/django.po | 53 ++--
.../locale/eu/LC_MESSAGES/django.po | 15 +-
.../locale/fr/LC_MESSAGES/django.po | 43 +--
.../locale/gl/LC_MESSAGES/django.po | 49 +--
.../locale/mn/LC_MESSAGES/django.po | 49 ++-
.../locale/pl/LC_MESSAGES/django.po | 57 ++--
.../locale/ro/LC_MESSAGES/django.po | 59 ++--
.../locale/zh/LC_MESSAGES/django.po | 39 +--
.../locale/bg/LC_MESSAGES/django.po | 57 +---
.../locale/ca/LC_MESSAGES/django.po | 68 ++---
.../locale/de/LC_MESSAGES/django.po | 71 ++---
.../locale/el/LC_MESSAGES/django.po | 68 ++---
.../locale/es/LC_MESSAGES/django.po | 72 ++---
.../locale/eu/LC_MESSAGES/django.po | 28 +-
.../locale/fr/LC_MESSAGES/django.po | 32 +-
.../locale/gl/LC_MESSAGES/django.po | 71 ++---
.../locale/mn/LC_MESSAGES/django.po | 30 +-
.../locale/pl/LC_MESSAGES/django.po | 78 ++---
.../locale/ro/LC_MESSAGES/django.po | 76 ++---
.../locale/zh/LC_MESSAGES/django.po | 47 +--
.../locale/bg/LC_MESSAGES/django.po | 21 +-
.../locale/ca/LC_MESSAGES/django.po | 21 +-
.../locale/de/LC_MESSAGES/django.po | 21 +-
.../locale/el/LC_MESSAGES/django.po | 19 +-
.../locale/es/LC_MESSAGES/django.po | 19 +-
.../locale/eu/LC_MESSAGES/django.po | 15 +-
.../locale/fr/LC_MESSAGES/django.po | 19 +-
.../locale/gl/LC_MESSAGES/django.po | 19 +-
.../locale/mn/LC_MESSAGES/django.po | 15 +-
.../locale/pl/LC_MESSAGES/django.po | 22 +-
.../locale/ro/LC_MESSAGES/django.po | 26 +-
.../locale/zh/LC_MESSAGES/django.po | 19 +-
73 files changed, 1384 insertions(+), 3495 deletions(-)
diff --git a/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
index 9df1c2709..1a6739d18 100644
--- a/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/bg/LC_MESSAGES/django.po
@@ -1,23 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# LyuboslavPetrov , 2014
-# LyuboslavPetrov , 2014
+# Lyuboslav Petrov , 2014
+# Lyuboslav Petrov , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
-"language/bg/)\n"
-"Language: bg\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -52,27 +51,23 @@ msgstr "Моля въведете вашият имейл адрес."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Не можете да възстановите паролата си тук, понеже акаунта ви се менижира от "
-"друг сървър."
+msgstr "Не можете да възстановите паролата си тук, понеже акаунта ви се менижира от друг сървър."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Този имейл не е разпознат."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Промести %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Добавете подстраница"
+msgstr ""
#: forms.py:97
#, python-format
@@ -90,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Публикувай"
+msgstr ""
#: forms.py:111
#, python-format
@@ -111,18 +105,16 @@ msgstr "Този слъг е вече в употреба"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Публикувай"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Този имейл не е разпознат."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -141,9 +133,7 @@ msgstr "Добре дошъл в %(site_name)s Wagtail CMS"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Това е вашето работно табло, където ще бъде показана полезна информация за "
-"контент, който сте създали."
+msgstr "Това е вашето работно табло, където ще бъде показана полезна информация за контент, който сте създали."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -175,10 +165,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Снимката за вашият Аватар е предоставена от Gravatar и е свързана с вашия "
-"имейл адрес. Със сметка в Gravatar можете да зададете аватар за произволен "
-"брой други имейл адреси, които използвате."
+msgstr "Снимката за вашият Аватар е предоставена от Gravatar и е свързана с вашия имейл адрес. Със сметка в Gravatar можете да зададете аватар за произволен брой други имейл адреси, които използвате."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -205,9 +192,7 @@ msgstr "Смени парола"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Вашата парола не може да бъде променена тук. Моля свържете се с "
-"администратора на сайта."
+msgstr "Вашата парола не може да бъде променена тук. Моля свържете се с администратора на сайта."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -300,12 +285,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Има едно съвпадение"
-msgstr[1] ""
-"\n"
-"Има %(counter)s съвпадения"
+msgstr[0] "\nИма едно съвпадение"
+msgstr[1] "\nИма %(counter)s съвпадения"
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -462,14 +443,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s Страница\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s Страници\n"
-" "
+msgstr[0] "\n %(total_pages)s Страница\n "
+msgstr[1] "\n %(total_pages)s Страници\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -481,12 +456,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_images)s Изображение"
-msgstr[1] ""
-"\n"
-"%(total_images)s Изображения"
+msgstr[0] "\n%(total_images)s Изображение"
+msgstr[1] "\n%(total_images)s Изображения"
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -498,12 +469,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_docs)s Документ"
-msgstr[1] ""
-"\n"
-"%(total_docs)s Документи"
+msgstr[0] "\n%(total_docs)s Документ"
+msgstr[1] "\n%(total_docs)s Документи"
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -562,9 +529,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Можете да редактирате страницата тук:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -574,12 +540,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
-msgstr ""
-"\n"
-"Преглед на '%(title)s', предоставена от %(submitted_by)s на %(submitted_on)s."
+msgstr "\nПреглед на '%(title)s', предоставена от %(submitted_by)s на %(submitted_on)s."
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -625,26 +588,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Това ще изтрие още една подстраница.\n"
-" "
-msgstr[1] ""
-"\n"
-" Това ще изтрие още %(descendant_count)s подстраници.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Това ще изтрие още една подстраница.\n "
+msgstr[1] "\n Това ще изтрие още %(descendant_count)s подстраници.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Като алтернатива можете да прекратите публикуването на страницата. Това "
-"премахва страницата от обществен достъп и ще можете да редактирате или да го "
-"публикувате отново по-късно."
+msgstr "Като алтернатива можете да прекратите публикуването на страницата. Това премахва страницата от обществен достъп и ще можете да редактирате или да го публикувате отново по-късно."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -675,9 +628,7 @@ msgstr "Сигурни ли сте, че желаете да преместит
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Сигурни ли сте, че искате да преместите страницата и принадлежащите към нея "
-"дъщерни страници в '%(title)s'?"
+msgstr "Сигурни ли сте, че искате да преместите страницата и принадлежащите към нея дъщерни страници в '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -708,9 +659,9 @@ msgid "Pages using"
msgstr "Страници използващи"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Промести %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -718,9 +669,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Редактирайте тази страница"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -809,9 +759,9 @@ msgid "Explore"
msgstr "Мениджър"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Мениджър на дъщерни страници на '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -832,15 +782,12 @@ msgid "Why not add one?"
msgstr "Защо не добавите една?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" Страница %(page_number)s от %(num_pages)s.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -873,7 +820,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Изберете нова страница родител за %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -883,13 +830,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" Има едно съвпадение\n"
-" "
msgstr[1] ""
-"\n"
-" Има %(counter)s съвпадения\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -914,10 +855,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Страница %(page_number)s от %(num_pages)s.\n"
-" "
+msgstr "\n Страница %(page_number)s от %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -929,9 +867,8 @@ msgid "Enter a search term above"
msgstr "Добавете дума за търсене по-горе"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Страници използващи"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -946,9 +883,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Търсене"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1011,9 +947,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Статус"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1036,9 +971,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Страница %(page_num)s от %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Потребители"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1057,9 +991,8 @@ msgid "Your password has been changed successfully!"
msgstr "Паролата ви бе променена успешно!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Паролата ви бе променена успешно!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1082,9 +1015,8 @@ msgid "Page '{0}' created."
msgstr "Страница '{0}' е създадена."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "Тази страница не можеше да бъде запазена поради валидационни грешки"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1111,14 +1043,12 @@ msgid "Page '{0}' moved."
msgstr "Страница '{0}' преместена."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Страница '{0}' обновена."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Страница '{0}' преместена."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1127,57 +1057,3 @@ msgstr "Страница '{0}' не очаква да бъде модерира
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Страница '{0}' отхвърлена от публикуване."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Моля въведете валидно време"
-
-#~ msgid "View draft"
-#~ msgstr "Преглед на Чернова"
-
-#~ msgid "View live"
-#~ msgstr "Преглед на живо"
-
-#~ msgid "Status:"
-#~ msgstr "Статус:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Къде желаете да създадете %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Къде желаете да създадете това"
-
-#~ msgid "Create a new page"
-#~ msgstr "Създадете нова страница"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Вашата нова страница ще бъде записана в най-горното ниво на вашия сайт. "
-#~ "Можете да я преместите, след като запазите."
-
-#~ msgid "More"
-#~ msgstr "Повече"
-
-#~ msgid "Redirects"
-#~ msgstr "Пренасочвания"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Избрано от Редактора"
-
-#~ msgid "Snippets"
-#~ msgstr "Откъси от код"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr "Нямата права за да създадете страница от тип '{0}'."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Страници от този тип могат само да бъдат създавани като дъщерни на "
-#~ "'{0}'. Новата страница ще бъде запазена тук."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "Страницата не беше създадена поради грешки."
diff --git a/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
index cc161546a..b24a5c00a 100644
--- a/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/ca/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# Lloople , 2014
+# David Llop , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:58+0000\n"
-"Last-Translator: Lloople \n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
-"ca/)\n"
-"Language: ca\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -51,27 +50,23 @@ msgstr "Si us plau escriu el teu correu"
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Ho sentim, no pots reiniciar la teva contrasenya aquí ja que la teva conta "
-"d'usuari es administrada per un altre servidor"
+msgstr "Ho sentim, no pots reiniciar la teva contrasenya aquí ja que la teva conta d'usuari es administrada per un altre servidor"
#: forms.py:76
msgid "This email address is not recognised."
msgstr "No es reconeix aquesta adreça de correu"
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Mou %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Afegeix subpàgina"
+msgstr ""
#: forms.py:97
#, python-format
@@ -89,9 +84,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publica"
+msgstr ""
#: forms.py:111
#, python-format
@@ -110,18 +104,16 @@ msgstr "Aquest llimac ja està en ús"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publica"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "No es reconeix aquesta adreça de correu"
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -140,9 +132,7 @@ msgstr "Benvingut al Wagtail CMS del lloc %(site_name)s"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Aquest es el teu tauler de control on es mostrarà informació útil sobre el "
-"contingut que has creat"
+msgstr "Aquest es el teu tauler de control on es mostrarà informació útil sobre el contingut que has creat"
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -150,9 +140,7 @@ msgstr "Registra't"
#: templates/wagtailadmin/login.html:18
msgid "Your username and password didn't match. Please try again."
-msgstr ""
-"El teu nom d'usuari i la teva contrasenya no coincideixen. Si us plau torna-"
-"ho a intentar"
+msgstr "El teu nom d'usuari i la teva contrasenya no coincideixen. Si us plau torna-ho a intentar"
#: templates/wagtailadmin/login.html:26
msgid "Sign in to Wagtail"
@@ -176,10 +164,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"La teva imatge de perfil és subministrada per Gravatar i està conectada al "
-"teu correu. Amb una conta de Gravatar pots definir una imatge de perfil per "
-"cadascuna de la resta d'adreces de correu que fas servir."
+msgstr "La teva imatge de perfil és subministrada per Gravatar i està conectada al teu correu. Amb una conta de Gravatar pots definir una imatge de perfil per cadascuna de la resta d'adreces de correu que fas servir."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -206,9 +191,7 @@ msgstr "Canvia la contrasenya"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"La teva contrasenya no es pot canviar des d'aquí. Si us plau contacta amb "
-"l'administrador de la web"
+msgstr "La teva contrasenya no es pot canviar des d'aquí. Si us plau contacta amb l'administrador de la web"
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -301,12 +284,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Hi ha un resultat"
-msgstr[1] ""
-"\n"
-"Hi han %(counter)s resultats"
+msgstr[0] "\nHi ha un resultat"
+msgstr[1] "\nHi han %(counter)s resultats"
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -463,12 +442,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_pages)s Pàgina"
-msgstr[1] ""
-"\n"
-"%(total_pages)sPàgines"
+msgstr[0] "\n%(total_pages)s Pàgina"
+msgstr[1] "\n%(total_pages)sPàgines"
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -480,12 +455,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_images)s Imatge"
-msgstr[1] ""
-"\n"
-"%(total_images)s Imatges"
+msgstr[0] "\n%(total_images)s Imatge"
+msgstr[1] "\n%(total_images)s Imatges"
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -497,12 +468,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_docs)s Document"
-msgstr[1] ""
-"\n"
-"%(total_docs)s Documents"
+msgstr[0] "\n%(total_docs)s Document"
+msgstr[1] "\n%(total_docs)s Documents"
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -561,9 +528,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Pots editar la pàgina aquí:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -573,12 +539,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
-msgstr ""
-"\n"
-"Previsualitzant '%(title)s, enviada per %(submitted_by)s el %(submitted_on)s."
+msgstr "\nPrevisualitzant '%(title)s, enviada per %(submitted_by)s el %(submitted_on)s."
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -624,23 +587,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
-msgstr[0] ""
-"\n"
-"Això també esborrarà una subpàgina més."
-msgstr[1] ""
-"\n"
-"Això també esborrarà %(descendant_count)s subpàgines més."
+msgstr[0] "\nAixò també esborrarà una subpàgina més."
+msgstr[1] "\nAixò també esborrarà %(descendant_count)s subpàgines més."
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Alternativament pots despublicar la pàgina. Això treu la pàgina de la vista "
-"pública i podràs editar-la o tornar-la a publicar desprès."
+msgstr "Alternativament pots despublicar la pàgina. Això treu la pàgina de la vista pública i podràs editar-la o tornar-la a publicar desprès."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -671,9 +627,7 @@ msgstr "Estàs segur que vols moure aquesta pàgina dins de '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Estàs segur que vols moure aquesta pàgina i els seus fills dins de "
-"'%(title)s'?"
+msgstr "Estàs segur que vols moure aquesta pàgina i els seus fills dins de '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -704,9 +658,9 @@ msgid "Pages using"
msgstr "Pàgines en ús"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Mou %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -714,9 +668,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Edita aquesta pàgina"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -805,9 +758,9 @@ msgid "Explore"
msgstr "Explora"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explora les pàgines filles de '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -828,14 +781,12 @@ msgid "Why not add one?"
msgstr "Per què no afegeixes una?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-"Pàgina %(page_number)s de %(num_pages)s."
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -868,7 +819,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Selecciona una nova pàgina pare per %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -878,11 +829,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-"Hi ha un resultat"
msgstr[1] ""
-"\n"
-"Hi han %(counter)s resultats"
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -907,9 +854,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-"Pàgina %(page_number)s de %(num_pages)s."
+msgstr "\nPàgina %(page_number)s de %(num_pages)s."
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -921,9 +866,8 @@ msgid "Enter a search term above"
msgstr "Introdueix un terme de cerca abaix"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Pàgines en ús"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -938,9 +882,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Cercar"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1003,9 +946,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Estat"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1028,9 +970,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Pàgina %(page_num)s de %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Usuaris"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1049,9 +990,8 @@ msgid "Your password has been changed successfully!"
msgstr "S'ha canviat la teva contrasenya!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "S'ha canviat la teva contrasenya!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1074,9 +1014,8 @@ msgid "Page '{0}' created."
msgstr "Pàgina '{0}' creada."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "La pàgina no s'ha pogut guardar degut a errors de validació"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1103,14 +1042,12 @@ msgid "Page '{0}' moved."
msgstr "Pàgina '{0}' moguda."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Pàgina '{0}' actualitzada."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Pàgina '{0}' moguda."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1119,58 +1056,3 @@ msgstr "La pàgina '{0}' ja no es troba esperant moderació."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "La pàgina '{0}' ha estat rebutjada per publicació"
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Si us plau introdueixi una hora vàlida "
-
-#~ msgid "View draft"
-#~ msgstr "Visualitza l'esborrany"
-
-#~ msgid "View live"
-#~ msgstr "Visualitza en viu"
-
-#~ msgid "Status:"
-#~ msgstr "Estat:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "On vols crear la teva pàgina %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "On vols crear això"
-
-#~ msgid "Create a new page"
-#~ msgstr "Crea una nova pàgina"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "La teva pàgina nova serà desada al nivell més alt del teu web. "
-#~ "Pots moure-la desprès de desar-la."
-
-#~ msgid "More"
-#~ msgstr "Més"
-
-#~ msgid "Redirects"
-#~ msgstr "Redireccionaments"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Selecció dels editors"
-
-#~ msgid "Snippets"
-#~ msgstr "Retalls"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Ho sentim, no tens permisos per crear una pàgina del tipus '{0}'"
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Pàgines d'aquest tipus només poden ser creades com a filles de '{0}'"
-#~ "em>. La nova pàgina es guardarà allà"
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "La pàgina no es pot crear degut a errors."
diff --git a/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
index 22908835a..589af7b7f 100644
--- a/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/de/LC_MESSAGES/django.po
@@ -1,9 +1,9 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# jspielmann , 2014
+# Johannes Spielmann , 2014
# karlsander , 2014
# pcraston , 2014
msgid ""
@@ -11,14 +11,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-24 19:00+0000\n"
-"Last-Translator: pcraston \n"
-"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
-"de/)\n"
-"Language: de\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -53,27 +52,23 @@ msgstr "Bitte geben Sie ihre Email Adresse ein."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Sie können Ihr Passwort hier leider nicht zurücksetzen, da Ihr Benutzerkonto "
-"von einem anderen Server verwaltet wird."
+msgstr "Sie können Ihr Passwort hier leider nicht zurücksetzen, da Ihr Benutzerkonto von einem anderen Server verwaltet wird."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Die Email-Adresse wurde nicht erkannt."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "%(title)s verschieben"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Untergeordnete Seite hinzufügen"
+msgstr ""
#: forms.py:97
#, python-format
@@ -91,9 +86,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Veröffentlichen"
+msgstr ""
#: forms.py:111
#, python-format
@@ -112,18 +106,16 @@ msgstr "Der Kurztitel wird bereits verwendet"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Veröffentlichen"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Die Email-Adresse wurde nicht erkannt."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -142,9 +134,7 @@ msgstr "Willkommen zum %(site_name)s Wagtail CMS"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Das ist Ihr Dashboard, auf dem nützliche Informationen zu den Inhalten, die "
-"Sie erstellen, zusammengestellt werden."
+msgstr "Das ist Ihr Dashboard, auf dem nützliche Informationen zu den Inhalten, die Sie erstellen, zusammengestellt werden."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -152,9 +142,7 @@ msgstr "Anmelden"
#: templates/wagtailadmin/login.html:18
msgid "Your username and password didn't match. Please try again."
-msgstr ""
-"Ihr Benutzername und Ihr Passwort wurden nicht erkannt. Bitte versuchen Sie "
-"es erneut."
+msgstr "Ihr Benutzername und Ihr Passwort wurden nicht erkannt. Bitte versuchen Sie es erneut."
#: templates/wagtailadmin/login.html:26
msgid "Sign in to Wagtail"
@@ -178,10 +166,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Ihr Profilbild wird von Gravatar zur Verfügung gestellt und ist mit Ihrer "
-"Email Adresse verknüpft. Mit einem Gravatar Benutzerkonto können Sie die "
-"Profilbilder für all Ihre Email Adressen verwalten."
+msgstr "Ihr Profilbild wird von Gravatar zur Verfügung gestellt und ist mit Ihrer Email Adresse verknüpft. Mit einem Gravatar Benutzerkonto können Sie die Profilbilder für all Ihre Email Adressen verwalten."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -208,9 +193,7 @@ msgstr "Password ändern"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Sie können Ihr Passwort hier nicht ändern. Bitte kontaktieren Sie einen "
-"Administrator der Seite."
+msgstr "Sie können Ihr Passwort hier nicht ändern. Bitte kontaktieren Sie einen Administrator der Seite."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -252,8 +235,7 @@ msgstr "Überprüfen Sie ihre Emails."
#: templates/wagtailadmin/account/password_reset/done.html:16
msgid "A link to reset your password has been emailed to you."
-msgstr ""
-"Ein Link zum Zurücksetzen Ihres Passwortes wurde Ihnen per Email zugesandt."
+msgstr "Ein Link zum Zurücksetzen Ihres Passwortes wurde Ihnen per Email zugesandt."
#: templates/wagtailadmin/account/password_reset/email.txt:2
msgid "Please follow the link below to reset your password"
@@ -304,12 +286,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Es gibt ein Ergebnis."
-msgstr[1] ""
-"\n"
-"Es gibt %(counter)s Ergebnisse."
+msgstr[0] "\nEs gibt ein Ergebnis."
+msgstr[1] "\nEs gibt %(counter)s Ergebnisse."
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -466,12 +444,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_pages)s Seite"
-msgstr[1] ""
-"\n"
-"%(total_pages)s Seiten"
+msgstr[0] "\n%(total_pages)s Seite"
+msgstr[1] "\n%(total_pages)s Seiten"
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -483,12 +457,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_images)s Bild"
-msgstr[1] ""
-"\n"
-"%(total_images)s Bilder"
+msgstr[0] "\n%(total_images)s Bild"
+msgstr[1] "\n%(total_images)s Bilder"
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -500,12 +470,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_docs)s Dokument"
-msgstr[1] ""
-"\n"
-"%(total_docs)s Dokumente"
+msgstr[0] "\n%(total_docs)s Dokument"
+msgstr[1] "\n%(total_docs)s Dokumente"
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -564,9 +530,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Sie können die Seite hier bearbeiten:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -576,13 +541,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
-msgstr ""
-"\n"
-"Vorschau für '%(title)s', eingereicht von %(submitted_by)s am "
-"%(submitted_on)s."
+msgstr "\nVorschau für '%(title)s', eingereicht von %(submitted_by)s am %(submitted_on)s."
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -628,24 +589,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
-msgstr[0] ""
-"\n"
-"Eine weitere Unterseite wird auch gelöscht."
-msgstr[1] ""
-"\n"
-"%(descendant_count)s Unterseiten werden auch gelöscht."
+msgstr[0] "\nEine weitere Unterseite wird auch gelöscht."
+msgstr[1] "\n%(descendant_count)s Unterseiten werden auch gelöscht."
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Alternativ können Sie die Seite depublizieren. Die Seite wird aus der "
-"öffentlichen Ansicht entfernt und Sie können sie später noch bearbeiten oder "
-"erneut veröffentlichen."
+msgstr "Alternativ können Sie die Seite depublizieren. Die Seite wird aus der öffentlichen Ansicht entfernt und Sie können sie später noch bearbeiten oder erneut veröffentlichen."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -669,17 +622,14 @@ msgstr "Verschieben"
#: templates/wagtailadmin/pages/confirm_move.html:11
#, python-format
msgid "Are you sure you want to move this page into '%(title)s'?"
-msgstr ""
-"Sind Sie sicher, dass Sie diese Seite nach '%(title)s' verschieben wollen?"
+msgstr "Sind Sie sicher, dass Sie diese Seite nach '%(title)s' verschieben wollen?"
#: templates/wagtailadmin/pages/confirm_move.html:13
#, python-format
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Sind Sie sicher, dass Sie diese Seite und alle untergeordneten Seiten nach "
-"'%(title)s' verschieben wollen?"
+msgstr "Sind Sie sicher, dass Sie diese Seite und alle untergeordneten Seiten nach '%(title)s' verschieben wollen?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -710,9 +660,9 @@ msgid "Pages using"
msgstr "Benutzende Seiten"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "%(title)s verschieben"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -720,9 +670,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Diese Seite bearbeiten"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -811,9 +760,9 @@ msgid "Explore"
msgstr "Durchstöbern"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explorer untergeordnete Seiten von '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -834,14 +783,12 @@ msgid "Why not add one?"
msgstr "Fügen Sie doch eine hinzu!"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-"Seite %(page_number)s von %(num_pages)s."
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -874,7 +821,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Wählen Sie eine neue übergeordnete Seite für %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -884,11 +831,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-"Es gibt ein Ergebnis"
msgstr[1] ""
-"\n"
-"Es gibt %(counter)s Ergebnisse"
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -913,24 +856,20 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-"Seite %(page_number)s von %(num_pages)s."
+msgstr "\nSeite %(page_number)s von %(num_pages)s."
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
msgid "Sorry, no pages match \"%(query_string)s\""
-msgstr ""
-"Es gibt leider keine Seiten zum Suchbegriff \"%(query_string)s\""
+msgstr "Es gibt leider keine Seiten zum Suchbegriff \"%(query_string)s\""
#: templates/wagtailadmin/pages/search_results.html:56
msgid "Enter a search term above"
msgstr "Geben Sie oben einen Suchbegriff ein"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Benutzende Seiten"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -945,9 +884,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Suche"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1010,9 +948,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Status"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1035,9 +972,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Seite %(page_num)s von %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Benutzer"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1056,9 +992,8 @@ msgid "Your password has been changed successfully!"
msgstr "Ihr Passwort wurde erfolgreich geändert."
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Ihr Passwort wurde erfolgreich geändert."
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1081,11 +1016,8 @@ msgid "Page '{0}' created."
msgstr "Seite '{0}' erstellt."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
msgstr ""
-"Aufgrund von Fehlern bei der Validierung konnte die Seite nicht gespeichert "
-"werden."
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1093,9 +1025,7 @@ msgstr "Seite '{0}' geändert."
#: views/pages.py:365
msgid "The page could not be saved due to validation errors"
-msgstr ""
-"Aufgrund von Fehlern bei der Validierung konnte die Seite nicht gespeichert "
-"werden."
+msgstr "Aufgrund von Fehlern bei der Validierung konnte die Seite nicht gespeichert werden."
#: views/pages.py:378
msgid "This page is currently awaiting moderation"
@@ -1114,14 +1044,12 @@ msgid "Page '{0}' moved."
msgstr "Seite '{0}' verschoben."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Seite '{0}' geändert."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Seite '{0}' verschoben."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1130,59 +1058,3 @@ msgstr "Die Seite '{0}' wartet derzeit nicht auf Freischaltung."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Die Veröffentlichung der Seite '{0}' wurde abgelehnt."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Geben Sie bitte eine gültige Zeit ein!"
-
-#~ msgid "View draft"
-#~ msgstr "Entwurf anzeigen"
-
-#~ msgid "View live"
-#~ msgstr "Live anzeigen"
-
-#~ msgid "Status:"
-#~ msgstr "Status:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Wo wollen Sie %(page_type)s erstellen?"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Wo wollen Sie dies erstellen"
-
-#~ msgid "Create a new page"
-#~ msgstr "Neue Seite erstellen"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Ihre neue Seite wird auf der obersten Ebene Ihrer Website "
-#~ "erstellt. Nach dem Speichern können Sie diese verschieben."
-
-#~ msgid "More"
-#~ msgstr "Mehr"
-
-#~ msgid "Redirects"
-#~ msgstr "Weiterleitungen"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Redaktionsempfehlungen"
-
-#~ msgid "Snippets"
-#~ msgstr "Snippets"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Leider haben Sie nicht die Berechtigung eine Seite vom Typ '{0}' "
-#~ "zu erstellen."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Seiten dieses Typs können nur als untergeordnete Seiten von '{0}'"
-#~ "em> erstellt werden. Die neue Seite wird dort gespeichert."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "Aufgrund von Fehlern konnte die Seite nicht erstellt werden."
diff --git a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
index bcf95784c..1ab108d02 100644
--- a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# serafeim , 2014
# serafeim , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:14+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
-"el/)\n"
-"Language: el\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -52,27 +51,23 @@ msgstr "Συμπληρώσατε τη διεύθυνση email σας."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Λυπούμαστε, δε μπορείτε να αλλάξετε τον κωδικό σας διότι το λογαριασμό "
-"χρήστη σας τον διαχειρίζεται ένας διαφορετικός εξυπηρετητής."
+msgstr "Λυπούμαστε, δε μπορείτε να αλλάξετε τον κωδικό σας διότι το λογαριασμό χρήστη σας τον διαχειρίζεται ένας διαφορετικός εξυπηρετητής."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Δε βρέθηκε το email."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Μετακίνηση της %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Προσθήκη υποσελίδας"
+msgstr ""
#: forms.py:97
#, python-format
@@ -90,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Έκδοση"
+msgstr ""
#: forms.py:111
#, python-format
@@ -111,18 +105,16 @@ msgstr "Το slug χρησιμοποιείται"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Έκδοση"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Δε βρέθηκε το email."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -141,9 +133,7 @@ msgstr "Καλώς ήρθατε στο %(site_name)s Wagtail CMS"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Αυτός είναι ο πίνακας ελέγχου στον οποίο εμφανίζονται πληροφορίες σχετικές "
-"με το περιεχόμενου που έχετε δημιουργήσει."
+msgstr "Αυτός είναι ο πίνακας ελέγχου στον οποίο εμφανίζονται πληροφορίες σχετικές με το περιεχόμενου που έχετε δημιουργήσει."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -175,10 +165,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Η εικόνα σας παρέχετε από το Gravatar και συσχετίζεται με τη διεύθυνση email "
-"σας. Με το λογαριασμό σας στο Gravatar μπορείτε να δημιουργήσετε εικόνα και "
-"για τις άλλες διευθύνσεις email που έχετε."
+msgstr "Η εικόνα σας παρέχετε από το Gravatar και συσχετίζεται με τη διεύθυνση email σας. Με το λογαριασμό σας στο Gravatar μπορείτε να δημιουργήσετε εικόνα και για τις άλλες διευθύνσεις email που έχετε."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -205,8 +192,7 @@ msgstr "Αλλαγή κωδικού"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Ο κωδικός σας δε μπορεί να αλλαχτεί εδώ. Παρακαλώ ενημερώστε το διαχειριστή."
+msgstr "Ο κωδικός σας δε μπορεί να αλλαχτεί εδώ. Παρακαλώ ενημερώστε το διαχειριστή."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -252,8 +238,7 @@ msgstr "Μια σύνδεση για ανανέωση του κωδικού σα
#: templates/wagtailadmin/account/password_reset/email.txt:2
msgid "Please follow the link below to reset your password"
-msgstr ""
-"Παρακαλούμε ακολουθήστε τη σύνδεση παρακάτω για να ανανεώσετε τον κωδικό σας"
+msgstr "Παρακαλούμε ακολουθήστε τη σύνδεση παρακάτω για να ανανεώσετε τον κωδικό σας"
#: templates/wagtailadmin/account/password_reset/email_subject.txt:2
msgid "Password reset"
@@ -300,12 +285,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Βρέθηκε ένα αποτέλεσμα"
-msgstr[1] ""
-"\n"
-"Βρέθηκαν %(counter)s αποτελέσματα"
+msgstr[0] "\nΒρέθηκε ένα αποτέλεσμα"
+msgstr[1] "\nΒρέθηκαν %(counter)s αποτελέσματα"
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -462,12 +443,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_pages)s Σελίδα"
-msgstr[1] ""
-"\n"
-"%(total_pages)s Σελίδες"
+msgstr[0] "\n%(total_pages)s Σελίδα"
+msgstr[1] "\n%(total_pages)s Σελίδες"
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -479,12 +456,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_images)s Εικόνα"
-msgstr[1] ""
-"\n"
-"%(total_images)s Εικόνες"
+msgstr[0] "\n%(total_images)s Εικόνα"
+msgstr[1] "\n%(total_images)s Εικόνες"
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -496,14 +469,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-"\n"
-"%(total_docs)s Έγγραφο"
-msgstr[1] ""
-"\n"
-"\n"
-"%(total_docs)s Έγγραφα"
+msgstr[0] "\n\n%(total_docs)s Έγγραφο"
+msgstr[1] "\n\n%(total_docs)s Έγγραφα"
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -562,9 +529,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Μπορείτε να διορθώστε τη σελίδα εδώ:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -574,14 +540,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" Προεπισκόπηση της '%(title)s', που δημιουργήθηκε από τον "
-"%(submitted_by)s στις %(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n Προεπισκόπηση της '%(title)s', που δημιουργήθηκε από τον %(submitted_by)s στις %(submitted_on)s.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -627,26 +588,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Επίσης θα διαγραφεί και μια ακόμα σελίδα.\n"
-" "
-msgstr[1] ""
-"\n"
-" Επίσης θα διαγραφούν και %(descendant_count)s ακόμα "
-"σελίδες.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Επίσης θα διαγραφεί και μια ακόμα σελίδα.\n "
+msgstr[1] "\n Επίσης θα διαγραφούν και %(descendant_count)s ακόμα σελίδες.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Εναλλακτικά μπορείτε να αποεκδόσετε τη σελίδα ώστε να μην εμφανίζεται στο "
-"κοινό. Στη συνέχεια μπορείτε να τη διορθώστε και να την εκδόσετε ."
+msgstr "Εναλλακτικά μπορείτε να αποεκδόσετε τη σελίδα ώστε να μην εμφανίζεται στο κοινό. Στη συνέχεια μπορείτε να τη διορθώστε και να την εκδόσετε ."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -677,9 +628,7 @@ msgstr "Είστε σίγουρος ότι θέλετε να μετακινήσ
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Είστε σίγουρος ότι θέλετε να μετακινήσετε τη σελίδα και όλα τα παιδιά της "
-"στο '%(title)s';"
+msgstr "Είστε σίγουρος ότι θέλετε να μετακινήσετε τη σελίδα και όλα τα παιδιά της στο '%(title)s';"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -710,9 +659,9 @@ msgid "Pages using"
msgstr "Οι σελίδες που το χρησιμοποιούν"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Μετακίνηση της %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -720,9 +669,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Διόρθωση της σελίδας"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -811,9 +759,9 @@ msgid "Explore"
msgstr "Εξερεύνηση"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Εξερεύνηση σελίδων - παιδιά της '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -834,14 +782,12 @@ msgid "Why not add one?"
msgstr "Θέλετε να προσθέσετε μία;"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-"Σελίδα %(page_number)s of %(num_pages)s."
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -874,7 +820,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Επιλογή νέας πατρικής σελίδας για την %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -884,11 +830,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-"Βρέθηκε ένα αποτέλεσμα"
msgstr[1] ""
-"\n"
-"Βρέθηκαν %(counter)s αποτελέσματα"
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -913,24 +855,20 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-"Σελίδα %(page_number)s of %(num_pages)s."
+msgstr "\nΣελίδα %(page_number)s of %(num_pages)s."
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
msgid "Sorry, no pages match \"%(query_string)s\""
-msgstr ""
-"Λυπούμαστε, καμία σελίδα δε ταιριάζει με το \"%(query_string)s\""
+msgstr "Λυπούμαστε, καμία σελίδα δε ταιριάζει με το \"%(query_string)s\""
#: templates/wagtailadmin/pages/search_results.html:56
msgid "Enter a search term above"
msgstr "Εισάγετε όρο αναζήτησης"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Οι σελίδες που το χρησιμοποιούν"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -945,9 +883,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Αναζήτηση"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1010,9 +947,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Κατάσταση"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1035,9 +971,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Σελίδα %(page_num)s από %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Χρήστες"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1056,9 +991,8 @@ msgid "Your password has been changed successfully!"
msgstr "Ο κωδικός σας αλλάχτηκε με επιτυχία!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Ο κωδικός σας αλλάχτηκε με επιτυχία!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1081,9 +1015,8 @@ msgid "Page '{0}' created."
msgstr "Η σελίδα '{0}' δημιουργήθηκε."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "Δε ήταν δυνατή η αποθήκευση της σελίδας λόγω σφαλμάτων ελέγχου"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1110,14 +1043,12 @@ msgid "Page '{0}' moved."
msgstr "Έγινε η μετακίνηση της σελίδας '{0}'."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Έγινε η αποθήκευση της σελίδας '{0}'."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Έγινε η μετακίνηση της σελίδας '{0}'."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1126,57 +1057,3 @@ msgstr "Η σελίδα '{0}' δεν είναι για έλεγχο."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Η δημοσίευση της σελίδας '{0}' απορρίφθηκε."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Συμπληρώσατε ώρα"
-
-#~ msgid "View draft"
-#~ msgstr "Εμφάνιση προσχεδίου"
-
-#~ msgid "View live"
-#~ msgstr "Εμφάνιση στο site"
-
-#~ msgid "Status:"
-#~ msgstr "Κατάσταση:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Πού θέλετε να δημιουργήσετε τη σελίδα %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Πού θέλετε να δημιουργήσετε τη σελίδα"
-
-#~ msgid "Create a new page"
-#~ msgstr "Δημιουργία νέας σελίδας"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Η νέα σας σελίδα θα αποθηκευθεί στο κορυφαίο επίπεδο του website "
-#~ "σας. Μπορείτε να τη μετακινήσετε μετά την αποθήκευση."
-
-#~ msgid "More"
-#~ msgstr "Περισσότερα"
-
-#~ msgid "Redirects"
-#~ msgstr "Ανακατεθύνσεις"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Επιλογές συντακτών"
-
-#~ msgid "Snippets"
-#~ msgstr "Snippets"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr "Λυπούμαστε, δεν έχετε πρόσβαση σε σελίδες τύπου '{0}'"
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Σελίδες του συγκεκριμένου τύπου μπορούν να δημιουργηθούν μόνο σαν παιδιά "
-#~ "του '{0}'. Οπότε η νέα σελίδα θα αποθηκευθεί εκεί."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "Δεν ήταν δυνατή η αποθήκευση της σελίδας."
diff --git a/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
index 3dd3b5c34..36aa5f402 100644
--- a/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/es/LC_MESSAGES/django.po
@@ -1,23 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
-# unaizalakain , 2014
+# Unai Zalakain , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-23 10:24+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
-"es/)\n"
-"Language: es\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -52,27 +51,23 @@ msgstr "Rellena tu dirección de correo por favor."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Lo sentimos, no puedes restablecer tu contraseña aquí porque tu cuenta es "
-"gestionada por otro servidor."
+msgstr "Lo sentimos, no puedes restablecer tu contraseña aquí porque tu cuenta es gestionada por otro servidor."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "No se reconoce la dirección de correo."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Mover %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Añadir subpágina"
+msgstr ""
#: forms.py:97
#, python-format
@@ -90,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publicar"
+msgstr ""
#: forms.py:111
#, python-format
@@ -111,18 +105,16 @@ msgstr "Este slug ya está en uso"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publicar"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "No se reconoce la dirección de correo."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -141,9 +133,7 @@ msgstr "Bienvenido al CMS Wagtail %(site_name)s"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Este es tu panel de control donde aparecerá información útil sobre el "
-"contenido que has creado."
+msgstr "Este es tu panel de control donde aparecerá información útil sobre el contenido que has creado."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -175,10 +165,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Tu avatar es provisto por Gravatar y está conectado a tu dirección de "
-"correo. Con una cuenta Gravatar puedes establecer un avatar para cualquier "
-"número de correos electrónicos."
+msgstr "Tu avatar es provisto por Gravatar y está conectado a tu dirección de correo. Con una cuenta Gravatar puedes establecer un avatar para cualquier número de correos electrónicos."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -205,9 +192,7 @@ msgstr "Cambiar Contraseña"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Tu contraseña no puede cambiarse aquí. Por favor, contacta con el "
-"administrador."
+msgstr "Tu contraseña no puede cambiarse aquí. Por favor, contacta con el administrador."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -249,9 +234,7 @@ msgstr "Revisa tu correo electrónico"
#: templates/wagtailadmin/account/password_reset/done.html:16
msgid "A link to reset your password has been emailed to you."
-msgstr ""
-"Un enlace para restablecer tu contraseña, te ha sido enviado por correo "
-"electrónico."
+msgstr "Un enlace para restablecer tu contraseña, te ha sido enviado por correo electrónico."
#: templates/wagtailadmin/account/password_reset/email.txt:2
msgid "Please follow the link below to reset your password"
@@ -302,14 +285,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hay una coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hay %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hay una coincidencia\n "
+msgstr[1] "\n Hay %(counter)s coincidencias\n "
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -466,14 +443,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s Página\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s Páginas\n"
-" "
+msgstr[0] "\n %(total_pages)s Página\n "
+msgstr[1] "\n %(total_pages)s Páginas\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -485,14 +456,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_images)s Imagen\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_images)s Imágenes\n"
-" "
+msgstr[0] "\n %(total_images)s Imagen\n "
+msgstr[1] "\n %(total_images)s Imágenes\n "
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -504,14 +469,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_docs)s Documento\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_docs)s Documentos\n"
-" "
+msgstr[0] "\n %(total_docs)s Documento\n "
+msgstr[1] "\n %(total_docs)s Documentos\n "
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -570,9 +529,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Puedes editar la página aquí:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -582,14 +540,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" Previsualizando '%(title)s', enviada por %(submitted_by)s en "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n Previsualizando '%(title)s', enviada por %(submitted_by)s en %(submitted_on)s.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -635,26 +588,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Esto también borrará otra subpágina.\n"
-" "
-msgstr[1] ""
-"\n"
-" Esto también eliminará %(descendant_count)s subpáginas "
-"más.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Esto también borrará otra subpágina.\n "
+msgstr[1] "\n Esto también eliminará %(descendant_count)s subpáginas más.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Otra opción es no publicar la página. Esto no permite que el público la vea "
-"y la puedes editar o volver a publicar más tarde."
+msgstr "Otra opción es no publicar la página. Esto no permite que el público la vea y la puedes editar o volver a publicar más tarde."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -685,9 +628,7 @@ msgstr "Estás seguro de que quieres mover esta página a dentro de '%(title)s'?
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Estás seguro de que quieres mover esta página y todas sus páginas hijas a "
-"'%(title)s'?"
+msgstr "Estás seguro de que quieres mover esta página y todas sus páginas hijas a '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -718,9 +659,9 @@ msgid "Pages using"
msgstr "Páginas usando"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Mover %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -728,9 +669,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Editar esta página"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -819,9 +759,9 @@ msgid "Explore"
msgstr "Explorar"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explorar páginas hijas de '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -842,15 +782,12 @@ msgid "Why not add one?"
msgstr "Por qué no añadir una?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" Página %(page_number)s de %(num_pages)s.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -883,7 +820,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Selecciona una nueva página padre para %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -893,13 +830,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" Hay una coincidencia\n"
-" "
msgstr[1] ""
-"\n"
-" Hay %(counter)s coincidencias\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -924,10 +855,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Página %(page_number)s de %(num_pages)s.\n"
-" "
+msgstr "\n Página %(page_number)s de %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -939,9 +867,8 @@ msgid "Enter a search term above"
msgstr "Introduce el término de búsqueda arriba"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Páginas usando"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -956,9 +883,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Búsqueda"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1021,9 +947,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Estado"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1046,9 +971,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Página %(page_num)s de %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Usuarios"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1067,9 +991,8 @@ msgid "Your password has been changed successfully!"
msgstr "¡Tu contraseña ha sido cambiada con éxito!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "¡Tu contraseña ha sido cambiada con éxito!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1092,9 +1015,8 @@ msgid "Page '{0}' created."
msgstr "Página '{0}' creada."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "La página no ha podido ser guardada debido a errores de validación"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1121,14 +1043,12 @@ msgid "Page '{0}' moved."
msgstr "Página '{0}' movida."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Página '{0}' actualizada."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Página '{0}' movida."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1137,59 +1057,3 @@ msgstr "La página '{0}' no está esperando a ser moderada."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Rechazada la publicación de la página '{0}'."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Por favor, escribe una hora válida"
-
-#~ msgid "View draft"
-#~ msgstr "Ver borrador"
-
-#~ msgid "View live"
-#~ msgstr "Ver en vivo"
-
-#~ msgid "Status:"
-#~ msgstr "Estado:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Dónde quieres crear una %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Dónde quieres crear esto"
-
-#~ msgid "Create a new page"
-#~ msgstr "Crear una nueva página"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Tu nueva página sera guardada en el nivel superior de tu sitio "
-#~ "web. Puedes moverla después de guardar."
-
-#~ msgid "More"
-#~ msgstr "Más"
-
-#~ msgid "Redirects"
-#~ msgstr "Redirecciones"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Selecciones del Editor"
-
-#~ msgid "Snippets"
-#~ msgstr "Fragmentos"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Lo sentimos, no tienes permiso para crear una página de tipo '{0}'"
-#~ "em>."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Páginas de este tipo solo pueden ser creadas como hijas de '{0}'"
-#~ "em>. Esta nueva página será guardada ahí."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "La página no ha podido ser creada debido a errores."
diff --git a/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
index 3ac26dd3f..85ab69320 100644
--- a/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/eu/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# unaizalakain , 2014
+# Unai Zalakain , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
-"eu/)\n"
-"Language: eu\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -51,9 +50,7 @@ msgstr "Idatzi zure eposta helbidea mesedez."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Sentitzen dugu, ezin duzu zure pasahitza hemen berrezarri zure kontua beste "
-"zerbitzari batek kudeatzen duelako."
+msgstr "Sentitzen dugu, ezin duzu zure pasahitza hemen berrezarri zure kontua beste zerbitzari batek kudeatzen duelako."
#: forms.py:76
msgid "This email address is not recognised."
@@ -115,9 +112,8 @@ msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Ez da horrelako eposta helbiderik ezagutzen."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -136,9 +132,7 @@ msgstr "Ongi etorri %(site_name)s Wagtail CMSra"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Kontrol panel honetan sortu duzun edukiekin erlazionaturiko informazio "
-"baliagarria agertuko da."
+msgstr "Kontrol panel honetan sortu duzun edukiekin erlazionaturiko informazio baliagarria agertuko da."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -146,9 +140,7 @@ msgstr ""
#: templates/wagtailadmin/login.html:18
msgid "Your username and password didn't match. Please try again."
-msgstr ""
-"Zure erabiltzaileak eta pasahitzak ez dute bat egin. Mesedez saiatu "
-"beranduago."
+msgstr "Zure erabiltzaileak eta pasahitzak ez dute bat egin. Mesedez saiatu beranduago."
#: templates/wagtailadmin/login.html:26
msgid "Sign in to Wagtail"
@@ -172,10 +164,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Zure avatar irudia Gravatar-ek hornitzen du eta zure eposta helbidera "
-"konektatua dago. Gravatar kontu batekin erabiltzen duzun eposta helbide "
-"bakoitzeko avatar bat ezarri dezakezu."
+msgstr "Zure avatar irudia Gravatar-ek hornitzen du eta zure eposta helbidera konektatua dago. Gravatar kontu batekin erabiltzen duzun eposta helbide bakoitzeko avatar bat ezarri dezakezu."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -202,8 +191,7 @@ msgstr ""
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Zure pasahitza ezin da hemen aldatu. Mesedez kontaktatu administratzailea."
+msgstr "Zure pasahitza ezin da hemen aldatu. Mesedez kontaktatu administratzailea."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -551,8 +539,7 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
msgstr ""
@@ -600,8 +587,7 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
msgstr[0] ""
msgstr[1] ""
@@ -682,9 +668,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Orrialde hau editatu"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -897,9 +882,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Bilatu"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -962,9 +946,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Egoera"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1073,9 +1056,3 @@ msgstr ""
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr ""
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Idatzi data egoki bat mesedez"
-
-#~ msgid "View draft"
-#~ msgstr "Borradorea ikusi"
diff --git a/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
index 0610431f6..8e10df1d2 100644
--- a/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/fr/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# nahuel, 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-18 23:17+0000\n"
-"Last-Translator: nahuel\n"
-"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
-"fr/)\n"
-"Language: fr\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: edit_handlers.py:627
@@ -51,27 +50,23 @@ msgstr "Entrez votre adresse e-mail."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Désolé, vous ne pouvez pas réinitialiser votre mot de passe ici alors que "
-"votre compte utilisateur est géré par un autre serveur."
+msgstr "Désolé, vous ne pouvez pas réinitialiser votre mot de passe ici alors que votre compte utilisateur est géré par un autre serveur."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Cette adresse e-mail n'est pas reconnue."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Déplacer %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Ajouter une sous-page"
+msgstr ""
#: forms.py:97
#, python-format
@@ -89,9 +84,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publier"
+msgstr ""
#: forms.py:111
#, python-format
@@ -110,18 +104,16 @@ msgstr ""
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publier"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Cette adresse e-mail n'est pas reconnue."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -140,9 +132,7 @@ msgstr ""
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Ceci est votre tableau de bord sur lequel des informations importantes sur "
-"le contenu que vous avez créé seront affichées."
+msgstr "Ceci est votre tableau de bord sur lequel des informations importantes sur le contenu que vous avez créé seront affichées."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -150,8 +140,7 @@ msgstr "S'identifier"
#: templates/wagtailadmin/login.html:18
msgid "Your username and password didn't match. Please try again."
-msgstr ""
-"Vos identifiant et mot de passe ne correspondent pas. Essayez de nouveau."
+msgstr "Vos identifiant et mot de passe ne correspondent pas. Essayez de nouveau."
#: templates/wagtailadmin/login.html:26
msgid "Sign in to Wagtail"
@@ -175,10 +164,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Votre avatar est fourni par Gravatar et est relié à votre adresse e-mail. "
-"Avec un compte Gravatar vous pouvez définir un avatar pour toutes les "
-"adresses e-mail que vous utilisez."
+msgstr "Votre avatar est fourni par Gravatar et est relié à votre adresse e-mail. Avec un compte Gravatar vous pouvez définir un avatar pour toutes les adresses e-mail que vous utilisez."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -205,8 +191,7 @@ msgstr ""
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Votre mot de passe ne peut être changé ici. Contactez un administrateur."
+msgstr "Votre mot de passe ne peut être changé ici. Contactez un administrateur."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -457,14 +442,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s page\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s pages\n"
-" "
+msgstr[0] "\n %(total_pages)s page\n "
+msgstr[1] "\n %(total_pages)s pages\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -476,14 +455,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_images)s image\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_images)s images\n"
-" "
+msgstr[0] "\n %(total_images)s image\n "
+msgstr[1] "\n %(total_images)s images\n "
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -495,14 +468,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_docs)s document\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_docs)s documents\n"
-" "
+msgstr[0] "\n %(total_docs)s document\n "
+msgstr[1] "\n %(total_docs)s documents\n "
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -561,9 +528,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Vous pouvez éditer la page ici:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -573,14 +539,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" Prévisualisation de '%(title)s', soumis par %(submitted_by)s le "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n Prévisualisation de '%(title)s', soumis par %(submitted_by)s le %(submitted_on)s.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -626,26 +587,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Ceci supprime aussi une sous-pages supplémentaire.\n"
-" "
-msgstr[1] ""
-"\n"
-" Ceci supprimer aussi %(descendant_count)s sous-pages "
-"supplémentaires.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Ceci supprime aussi une sous-pages supplémentaire.\n "
+msgstr[1] "\n Ceci supprimer aussi %(descendant_count)s sous-pages supplémentaires.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Vous pouvez également dé-publier la page. Cela enlèvera la page des vues "
-"publiques et vous pourrez l'éditer ou la publier de nouveau plus tard."
+msgstr "Vous pouvez également dé-publier la page. Cela enlèvera la page des vues publiques et vous pourrez l'éditer ou la publier de nouveau plus tard."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -676,9 +627,7 @@ msgstr "Êtes-vous sûr de vouloir déplacer cette page dans '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Êtes-vous sûr de vouloir déplacer cette page et l'ensemble de ses enfants "
-"dans '%(title)s'?"
+msgstr "Êtes-vous sûr de vouloir déplacer cette page et l'ensemble de ses enfants dans '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -709,9 +658,9 @@ msgid "Pages using"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Déplacer %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -719,9 +668,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Éditer cette page"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -810,9 +758,9 @@ msgid "Explore"
msgstr ""
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Ajouter une page enfant à '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -833,15 +781,12 @@ msgid "Why not add one?"
msgstr "Pourquoi ne pas en ajouter une?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" Page %(page_number)s sur %(num_pages)s.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -874,7 +819,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Sélectionnez une nouvelle page parent pour %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -884,13 +829,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" Il y a une correspondance\n"
-" "
msgstr[1] ""
-"\n"
-" Il y a %(counter)s correspondances\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -915,10 +854,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Page %(page_number)s sur %(num_pages)s.\n"
-" "
+msgstr "\n Page %(page_number)s sur %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -1010,9 +946,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Statut"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1035,9 +970,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Page %(page_num)s de %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Utilisateurs"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1056,9 +990,8 @@ msgid "Your password has been changed successfully!"
msgstr "Votre mot de passe a été changé avec succès!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Votre mot de passe a été changé avec succès!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1081,9 +1014,8 @@ msgid "Page '{0}' created."
msgstr "Page '{0}' créée."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "La page n'a pu être enregistré à cause d'erreurs de validation."
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1110,14 +1042,12 @@ msgid "Page '{0}' moved."
msgstr "Page '{0}' déplacée."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Page '{0}' mise à jour."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Page '{0}' déplacée."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1126,49 +1056,3 @@ msgstr "La page '{0}' est actuellement en attente de modération."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Page '{0}' refusée à la publication."
-
-#~ msgid "View draft"
-#~ msgstr "Voir le brouillon"
-
-#~ msgid "View live"
-#~ msgstr "Voir en ligne"
-
-#~ msgid "Status:"
-#~ msgstr "Statut:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Où souhaitez vous créer une page du type %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Où souhaitez vous créer ceci"
-
-#~ msgid "Create a new page"
-#~ msgstr "Créer une nouvelle page"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Votre nouvelle page sera enregistrée à la racine de votre site "
-#~ "web. Vous pourrez la déplacer avec l'avoir enregistré."
-
-#~ msgid "More"
-#~ msgstr "Plus"
-
-#~ msgid "Redirects"
-#~ msgstr "Redirections"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Désolé, vous n'êtes pas autorisé à créer une page du type '{0}'."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Les pages de ce type ne peuvent être créées qu'en tant qu'enfant de "
-#~ "'{0}'. Cette nouvelle page y sera sauvegardée."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "La page ne peut être créé du fait d'erreurs."
diff --git a/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
index 412e8883b..b58956423 100644
--- a/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/gl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-23 10:32+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
-"language/gl/)\n"
-"Language: gl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -52,27 +51,23 @@ msgstr "Por favor, enche a túa dirección de correo."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Sentímolo, non podes restablecer o teu contrasinal aquí porque a túa conta é "
-"xestionada por outro servidor."
+msgstr "Sentímolo, non podes restablecer o teu contrasinal aquí porque a túa conta é xestionada por outro servidor."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Non se recoñece a dirección de correo."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Mover %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Engadir subpáxina"
+msgstr ""
#: forms.py:97
#, python-format
@@ -90,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publicar"
+msgstr ""
#: forms.py:111
#, python-format
@@ -111,18 +105,16 @@ msgstr "Este slug ya está en uso"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publicar"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Non se recoñece a dirección de correo."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -141,9 +133,7 @@ msgstr "Benvido ao CMS Wagtail %(site_name)s"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Este é o teu panel de control onde aparecerá información útil sobre o "
-"contido que creaches."
+msgstr "Este é o teu panel de control onde aparecerá información útil sobre o contido que creaches."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -175,10 +165,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"O teu avatar é provisto por Gravatar e está conectado á túa dirección de "
-"correo. Cunha conta Gravatar podes establecer un avatar para calquera número "
-"de correos electrónicos."
+msgstr "O teu avatar é provisto por Gravatar e está conectado á túa dirección de correo. Cunha conta Gravatar podes establecer un avatar para calquera número de correos electrónicos."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -205,9 +192,7 @@ msgstr "Cambiar Contrasinal"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"O teu contrasinal non pode cambiarse aquí. Por favor, contacta co "
-"administrador."
+msgstr "O teu contrasinal non pode cambiarse aquí. Por favor, contacta co administrador."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -249,14 +234,11 @@ msgstr "Revisa o teu correo electrónico"
#: templates/wagtailadmin/account/password_reset/done.html:16
msgid "A link to reset your password has been emailed to you."
-msgstr ""
-"Unha ligazón para restablecer o teu contrasinal foiche enviado por correo "
-"electrónico."
+msgstr "Unha ligazón para restablecer o teu contrasinal foiche enviado por correo electrónico."
#: templates/wagtailadmin/account/password_reset/email.txt:2
msgid "Please follow the link below to reset your password"
-msgstr ""
-"Por favor, segue a ligazón de abaixo para restablecer e teu contrasinal"
+msgstr "Por favor, segue a ligazón de abaixo para restablecer e teu contrasinal"
#: templates/wagtailadmin/account/password_reset/email_subject.txt:2
msgid "Password reset"
@@ -303,14 +285,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hai unha coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hai %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hai unha coincidencia\n "
+msgstr[1] "\n Hai %(counter)s coincidencias\n "
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -467,14 +443,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s Páxina\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s Páginas\n"
-" "
+msgstr[0] "\n %(total_pages)s Páxina\n "
+msgstr[1] "\n %(total_pages)s Páginas\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -486,14 +456,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_images)s Imaxe\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_images)s Imágenes\n"
-" "
+msgstr[0] "\n %(total_images)s Imaxe\n "
+msgstr[1] "\n %(total_images)s Imágenes\n "
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -505,14 +469,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_docs)s Documento\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_docs)s Documentos\n"
-" "
+msgstr[0] "\n %(total_docs)s Documento\n "
+msgstr[1] "\n %(total_docs)s Documentos\n "
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -571,9 +529,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Podes editar ala páxina aquí:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -583,14 +540,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" Previsualizando '%(title)s', enviada por %(submitted_by)s en "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n Previsualizando '%(title)s', enviada por %(submitted_by)s en %(submitted_on)s.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -636,26 +588,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Isto tamén eliminará outra subpáxina.\n"
-" "
-msgstr[1] ""
-"\n"
-" Isto tamén eliminará %(descendant_count)s subpáxinas "
-"máis.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Isto tamén eliminará outra subpáxina.\n "
+msgstr[1] "\n Isto tamén eliminará %(descendant_count)s subpáxinas máis.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Outra opción é non publicar a páxina. Isto non permite que o público a vexa "
-"e a podes editar ou voltar a publicala máis tarde."
+msgstr "Outra opción é non publicar a páxina. Isto non permite que o público a vexa e a podes editar ou voltar a publicala máis tarde."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -686,9 +628,7 @@ msgstr "¿Seguro que queres mover esta páxina a '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"¿Seguro que queres mover esta páxina e todas as súas páxinas filla a "
-"'%(title)s'?"
+msgstr "¿Seguro que queres mover esta páxina e todas as súas páxinas filla a '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -719,9 +659,9 @@ msgid "Pages using"
msgstr "Páxinas usando"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Mover %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -729,9 +669,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Editar esta páxina"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -820,9 +759,9 @@ msgid "Explore"
msgstr "Explorar"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explorar páxinas fillas de '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -843,15 +782,12 @@ msgid "Why not add one?"
msgstr "¿Por qué non engadir unha?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" Páxina %(page_number)s de %(num_pages)s.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -884,7 +820,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Seleccionar unha nova páxina pai para %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -894,13 +830,7 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" Hai unha coincidencia\n"
-" "
msgstr[1] ""
-"\n"
-" Hai %(counter)s coincidencias\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -925,10 +855,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Páxina %(page_number)s de %(num_pages)s.\n"
-" "
+msgstr "\n Páxina %(page_number)s de %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -940,9 +867,8 @@ msgid "Enter a search term above"
msgstr "Introduce o termo de busca arriba"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Páxinas usando"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -957,9 +883,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Busca"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1022,9 +947,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Estado"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1047,9 +971,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Páxina %(page_num)s de %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Usuarios"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1068,9 +991,8 @@ msgid "Your password has been changed successfully!"
msgstr "¡O teu contrasinal foi cambiado correctamente!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "¡O teu contrasinal foi cambiado correctamente!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1093,9 +1015,8 @@ msgid "Page '{0}' created."
msgstr "Páxina '{0}' creada."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "A páxina non puido ser gardada debido a erros de validación"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1122,14 +1043,12 @@ msgid "Page '{0}' moved."
msgstr "Páxina '{0}' movida."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Páxina '{0}' actualizada."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Páxina '{0}' movida."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1138,58 +1057,3 @@ msgstr "A páxina '{0}' non está esperando a ser moderada."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Rexeitada a publicación da página '{0}'."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Por favor, escribe unha hora válida"
-
-#~ msgid "View draft"
-#~ msgstr "Ver borrador"
-
-#~ msgid "View live"
-#~ msgstr "Ver en vivo"
-
-#~ msgid "Status:"
-#~ msgstr "Estado:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "¿Onde queres crear unha %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Onde queres crear isto"
-
-#~ msgid "Create a new page"
-#~ msgstr "Crear unha nova páxina"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "A túa nova páxina sera gardada no nivel superior do teu sitio "
-#~ "web. Podes movela despois de gardar."
-
-#~ msgid "More"
-#~ msgstr "Máis"
-
-#~ msgid "Redirects"
-#~ msgstr "Redireccións"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Seleccións do Editor"
-
-#~ msgid "Snippets"
-#~ msgstr "Fragmentos"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Sentímolo, non tes permiso para crear unha páxina de tipo '{0}'."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Páxinas deste tipo só poden ser creadas como fillas de '{0}'. "
-#~ "Esta nova páxina será gardada ahí."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "A páxina non puido ser creada debido a erros."
diff --git a/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
index 1a73ee229..e8d0f5045 100644
--- a/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/mn/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# delgermurun , 2014
+# Delgermurun Purevkhuuu , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
-"language/mn/)\n"
-"Language: mn\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: edit_handlers.py:627
@@ -540,8 +539,7 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
msgstr ""
@@ -589,8 +587,7 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
msgstr[0] ""
msgstr[1] ""
diff --git a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
index 87e1237bc..b2a49d04f 100644
--- a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# utek , 2014
# utek , 2014
@@ -10,16 +10,14 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 22:16+0000\n"
-"Last-Translator: utek \n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
-"pl/)\n"
-"Language: pl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: edit_handlers.py:627
msgid "Scheduled publishing"
@@ -53,27 +51,23 @@ msgstr "Podaj swój adres email."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Przepraszamy, nie możesz zresetować hasła tutaj ponieważ Twoje konto jest "
-"zarządzane przez inny serwer."
+msgstr "Przepraszamy, nie możesz zresetować hasła tutaj ponieważ Twoje konto jest zarządzane przez inny serwer."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Ten adres email nie został rozpoznany."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Przesuń %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Dodaj podstronę"
+msgstr ""
#: forms.py:97
#, python-format
@@ -92,9 +86,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Opublikuj"
+msgstr ""
#: forms.py:111
#, python-format
@@ -114,18 +107,16 @@ msgstr "Ten slug jest już w użyciu"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Opublikuj"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Ten adres email nie został rozpoznany."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -144,9 +135,7 @@ msgstr "Witamy na %(site_name)s Wagtail CMS"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"To jest twój kokpit, na którym będą wyświetlane pomocne informacje o treści, "
-"którą stworzono."
+msgstr "To jest twój kokpit, na którym będą wyświetlane pomocne informacje o treści, którą stworzono."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -178,10 +167,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Twoje zdjęcie jest dostarczane przez Gravatar i jest skojarzone z Twoim "
-"adresem email. Z konta Gravatar możesz ustawić zdjęcie dla dowolnej ilości "
-"adresów email, których używasz."
+msgstr "Twoje zdjęcie jest dostarczane przez Gravatar i jest skojarzone z Twoim adresem email. Z konta Gravatar możesz ustawić zdjęcie dla dowolnej ilości adresów email, których używasz."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -208,9 +194,7 @@ msgstr "Zmień hasło"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Twoje hasło nie może być zmienione. Proszę skontaktować się z "
-"administratorem."
+msgstr "Twoje hasło nie może być zmienione. Proszę skontaktować się z administratorem."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -303,18 +287,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Jedno dopasowanie\n"
-" "
-msgstr[1] ""
-"\n"
-" Są %(counter)s dopasowania\n"
-" "
-msgstr[2] ""
-"\n"
-" Jest %(counter)s dopasowań\n"
-" "
+msgstr[0] "\n Jedno dopasowanie\n "
+msgstr[1] "\n Są %(counter)s dopasowania\n "
+msgstr[2] "\n Jest %(counter)s dopasowań\n "
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -471,18 +446,9 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s Strona\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s Strony\n"
-" "
-msgstr[2] ""
-"\n"
-" %(total_pages)s Stron\n"
-" "
+msgstr[0] "\n %(total_pages)s Strona\n "
+msgstr[1] "\n %(total_pages)s Strony\n "
+msgstr[2] "\n %(total_pages)s Stron\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -494,18 +460,9 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_images)s Obraz\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_images)s Obrazy\n"
-" "
-msgstr[2] ""
-"\n"
-" %(total_images)s Obrazów\n"
-" "
+msgstr[0] "\n %(total_images)s Obraz\n "
+msgstr[1] "\n %(total_images)s Obrazy\n "
+msgstr[2] "\n %(total_images)s Obrazów\n "
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -517,18 +474,9 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_docs)s Dokument\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_docs)s Dokumenty\n"
-" "
-msgstr[2] ""
-"\n"
-" %(total_docs)s Dokumentów\n"
-" "
+msgstr[0] "\n %(total_docs)s Dokument\n "
+msgstr[1] "\n %(total_docs)s Dokumenty\n "
+msgstr[2] "\n %(total_docs)s Dokumentów\n "
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -587,9 +535,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Możesz edytować stronę tutaj:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -599,12 +546,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
-msgstr ""
-"\n"
-"Podgląd '%(title)s', Wysłano przez %(submitted_by)s, %(submitted_on)s."
+msgstr "\nPodgląd '%(title)s', Wysłano przez %(submitted_by)s, %(submitted_on)s."
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -650,32 +594,17 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Zostanie usunięta również jedna strona podrzędna\n"
-" "
-msgstr[1] ""
-"\n"
-" Zostaną usunięte również %(descendant_count)s strony "
-"podrzędne.\n"
-" "
-msgstr[2] ""
-"\n"
-" Zostanie usuniętych również %(descendant_count)s stron "
-"podrzędnych.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Zostanie usunięta również jedna strona podrzędna\n "
+msgstr[1] "\n Zostaną usunięte również %(descendant_count)s strony podrzędne.\n "
+msgstr[2] "\n Zostanie usuniętych również %(descendant_count)s stron podrzędnych.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Możesz dodatkowo cofnąć publikację tej strony. To spowoduje usunięcie jej z "
-"widoku publicznego. Istnieje możliwość późniejszej edycji lub ponownej "
-"publikacji."
+msgstr "Możesz dodatkowo cofnąć publikację tej strony. To spowoduje usunięcie jej z widoku publicznego. Istnieje możliwość późniejszej edycji lub ponownej publikacji."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -706,9 +635,7 @@ msgstr "Czy na pewno chcesz przesunąć tę stronę do '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Czy na pewno chcesz przesunąć tę stronę i wszystkie strony podrzędne do "
-"'%(title)s'?"
+msgstr "Czy na pewno chcesz przesunąć tę stronę i wszystkie strony podrzędne do '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -739,9 +666,9 @@ msgid "Pages using"
msgstr "Strony używające"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Przesuń %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -749,9 +676,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Edytuj tę stronę"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -840,9 +766,9 @@ msgid "Explore"
msgstr "Przeglądaj"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Przeglądarka stron podrzędnych '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -863,15 +789,12 @@ msgid "Why not add one?"
msgstr "Czemu nie dodać kilku?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" Strona %(page_number)s z %(num_pages)s.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -904,7 +827,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Wybierz nową stronę nadrzędną dla %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -914,17 +837,8 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" Jedno dopasowanie\n"
-" "
msgstr[1] ""
-"\n"
-" Są %(counter)s dopasowania\n"
-" "
msgstr[2] ""
-"\n"
-" Jest %(counter)s dopasowań\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -949,10 +863,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Strona %(page_number)s z %(num_pages)s.\n"
-" "
+msgstr "\n Strona %(page_number)s z %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -964,9 +875,8 @@ msgid "Enter a search term above"
msgstr "Wpisz wyszukiwany ciąg powyżej"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Strony używające"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -981,9 +891,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Szukaj"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1046,9 +955,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Status"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1072,9 +980,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Strona %(page_num)s z %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Użytkownicy"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1093,9 +1000,8 @@ msgid "Your password has been changed successfully!"
msgstr "Twoje hasło zostało zmienione poprawnie!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Twoje hasło zostało zmienione poprawnie!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1118,9 +1024,8 @@ msgid "Page '{0}' created."
msgstr "Stworzono stronę '{0}'."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "Strona nie mogła zostać zapisana z powodu błędów poprawności."
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1147,14 +1052,12 @@ msgid "Page '{0}' moved."
msgstr "Przesunięto stronę '{0}'."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Uaktualniono stronę '{0}'."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Przesunięto stronę '{0}'."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1163,58 +1066,3 @@ msgstr "Strona '{0}' nie oczekuje na przejrzenie."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Strona '{0}' została odrzucona."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Proszę wpisać poprawny czas"
-
-#~ msgid "View draft"
-#~ msgstr "Pokaż szkic"
-
-#~ msgid "View live"
-#~ msgstr "Pokaż na żywo"
-
-#~ msgid "Status:"
-#~ msgstr "Status:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Gdzie chcesz stworzyć %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Gdzie chcesz stworzyć"
-
-#~ msgid "Create a new page"
-#~ msgstr "Stwórz nową stronę"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Twoja nowa strona zostanie zapisana w najwyższym poziomie. "
-#~ "Możesz ją przesunąć po zapisaniu."
-
-#~ msgid "More"
-#~ msgstr "Więcej"
-
-#~ msgid "Redirects"
-#~ msgstr "Przekierowania"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Wybór redakcji"
-
-#~ msgid "Snippets"
-#~ msgstr "Snippety"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Przepraszamy, nie masz uprawnień do stworzenia strony typu '{0}'."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Strony tego typu mogą zostać stworzone tylko jako strony podrzędne "
-#~ "'{0}'. Ta strona zostanie tam zapisana."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "Strona nie mogła zostać stworzona z powodu błędów."
diff --git a/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
index a3a6e56b3..d30aaa5f0 100644
--- a/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/pt_BR/LC_MESSAGES/django.po
@@ -1,21 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
+#
+# Translators:
+# Douglas Miranda , 2014
+# Gladson , 2014
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"Language: \n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wagtail/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: edit_handlers.py:627
@@ -44,33 +45,29 @@ msgstr "Entre com seu email para resetar sua senha"
#: forms.py:60
msgid "Please fill your email address."
-msgstr "Por favor, insira o seu e-mail"
+msgstr "Por favor, insira o seu e-mail."
#: forms.py:73
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Desculpe, você não pode resetar sua senha aqui com seu usuário, que é "
-"gerenciado por outro servidor."
+msgstr "Desculpe, você não pode redefinir sua senha aqui com seu usuário, que é gerenciado por outro servidor."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Esse e-mail não é reconhecido."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Mover %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Adicionar sub-página"
+msgstr ""
#: forms.py:97
#, python-format
@@ -88,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publicar"
+msgstr ""
#: forms.py:111
#, python-format
@@ -109,18 +105,16 @@ msgstr "Esse endereço já existe"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publicar"
+msgstr "Público"
#: forms.py:131
msgid "Private, accessible with the following password"
-msgstr ""
+msgstr "Privado, acessível com a seguinte senha"
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Esse e-mail não é reconhecido."
+msgstr "Este campo é obrigatório."
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -139,9 +133,7 @@ msgstr "Bem vindo ao %(site_name)s Wagtail CMS"
msgid ""
"This is your dashboard on which helpful information about content you've "
"created will be displayed."
-msgstr ""
-"Este é o seu painel aonde possui informações úteis sobre os conteúdos que "
-"criou."
+msgstr "Este é o seu painel aonde possui informações úteis sobre os conteúdos que criou."
#: templates/wagtailadmin/login.html:4 templates/wagtailadmin/login.html:59
msgid "Sign in"
@@ -173,10 +165,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Sua imagem é fornecido pelo Gravatar e está ligado ao seu e-mail. Com sua "
-"conta do Gravatar você pode definir um avatar para qualquer quantidade de e-"
-"mails que você usa."
+msgstr "Sua imagem é fornecido pelo Gravatar e está ligado ao seu e-mail. Com sua conta do Gravatar você pode definir um avatar para qualquer quantidade de e-mails que você usa."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -190,7 +179,7 @@ msgstr "Altere sua senha para entrar."
#: templates/wagtailadmin/account/account.html:36
msgid "Notification preferences"
-msgstr ""
+msgstr "Preferências de notificação"
#: templates/wagtailadmin/account/account.html:40
msgid "Choose which email notifications to receive."
@@ -208,11 +197,11 @@ msgstr "Sua senha não pode ser alterada. Contacte o administrador do site."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
msgid "Notification Preferences"
-msgstr ""
+msgstr "Preferências de notificação"
#: templates/wagtailadmin/account/notification_preferences.html:16
msgid "Update"
-msgstr ""
+msgstr "Atualizar"
#: templates/wagtailadmin/account/password_reset/complete.html:4
#: templates/wagtailadmin/account/password_reset/confirm.html:42
@@ -296,14 +285,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Existe uma combinação\n"
-" "
-msgstr[1] ""
-"\n"
-" Existem %(counter)s combinações\n"
-" "
+msgstr[0] "\n Existe uma combinação\n "
+msgstr[1] "\n Existem %(counter)s combinações\n "
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -444,7 +427,7 @@ msgstr "Rascunho"
#: templates/wagtailadmin/pages/list.html:78
#: templates/wagtailadmin/pages/list.html:196
msgid "Live"
-msgstr "Aplicado"
+msgstr "Ao vivo"
#: templates/wagtailadmin/home/site_summary.html:3
msgid "Site summary"
@@ -460,14 +443,8 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_pages)s Página\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_pages)s Páginas\n"
-" "
+msgstr[0] "\n %(total_pages)s Página\n "
+msgstr[1] "\n %(total_pages)s Páginas\n "
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -479,14 +456,8 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_images)s Imagem\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_images)s Imagens\n"
-" "
+msgstr[0] "\n %(total_images)s Imagem\n "
+msgstr[1] "\n %(total_images)s Imagens\n "
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -498,14 +469,8 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-" %(total_docs)s Documento\n"
-" "
-msgstr[1] ""
-"\n"
-" %(total_docs)s Documentos\n"
-" "
+msgstr[0] "\n %(total_docs)s Documento\n "
+msgstr[1] "\n %(total_docs)s Documentos\n "
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -523,7 +488,7 @@ msgstr "Você pode visualizar a página aqui:"
#: templates/wagtailadmin/notifications/base_notification.html:3
msgid "Edit your notification preferences here:"
-msgstr ""
+msgstr "Edite suas preferências de notificação aqui:"
#: templates/wagtailadmin/notifications/rejected.html:1
#, python-format
@@ -557,16 +522,15 @@ msgstr "Você pode visualizar a página aqui:"
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:2
#: templates/wagtailadmin/page_privacy/set_privacy.html:2
msgid "Page privacy"
-msgstr ""
+msgstr "Página privada"
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:6
msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Você pode editar sua página:"
+msgstr "Você pode editar as configurações de privacidade em:"
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -576,14 +540,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" Visualizando '%(title)s', enviado por %(submitted_by)s em "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n Visualizando '%(title)s', enviado por %(submitted_by)s em %(submitted_on)s.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -629,26 +588,16 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
-" "
-msgstr[0] ""
-"\n"
-" Isso deverá excluir mais de uma sub-página.\n"
-" "
-msgstr[1] ""
-"\n"
-" Isso deverá excluir mais de %(descendant_count)s sub-"
-"páginas.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
+msgstr[0] "\n Isso deverá excluir mais de uma sub-página.\n "
+msgstr[1] "\n Isso deverá excluir mais de %(descendant_count)s sub-páginas.\n "
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Você pode cancelar a publicaçåo da página de outra forma. Isso vai remover a "
-"página de publicação e então pode editar e publicá-lo mais tarde."
+msgstr "Você pode cancelar a publicaçåo da página de outra forma. Isso vai remover a página de publicação e então pode editar e publicá-lo mais tarde."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -679,8 +628,7 @@ msgstr "Tem certeza que deseja mover a página dentro de '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Tem certeza que deseja mover essa página e suas filhas dentro de '%(title)s'?"
+msgstr "Tem certeza que deseja mover essa página e suas filhas dentro de '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -711,9 +659,9 @@ msgid "Pages using"
msgstr "Usando páginas"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Mover %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -721,9 +669,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Editar essa página"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -812,9 +759,9 @@ msgid "Explore"
msgstr "Explorar"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explorar páginas filhas de %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -835,15 +782,12 @@ msgid "Why not add one?"
msgstr "Porque não adicionar uma?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Página %(page_number)s de %(num_pages)s.\n"
-" "
+msgstr "\n Página %(page_number)s de %(num_pages)s.\n "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -885,18 +829,12 @@ msgid_plural ""
"\n"
" There are %(counter)s matching pages\n"
" "
-msgstr[0] ""
-"\n"
-" Existe uma página correspondente\n"
-" "
-msgstr[1] ""
-"\n"
-" Existe %(counter)s páginas correspondentes\n"
-" "
+msgstr[0] "\n Há uma página correspondente\n "
+msgstr[1] "\n Existem %(counter)s páginas que correspondem\n "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
-msgstr "Outras pesquisas"
+msgstr "Outras buscas"
#: templates/wagtailadmin/pages/search_results.html:18
msgid "Images"
@@ -917,10 +855,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" Página %(page_number)s de %(num_pages)s.\n"
-" "
+msgstr "\n Página %(page_number)s de %(num_pages)s.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -932,9 +867,8 @@ msgid "Enter a search term above"
msgstr "Entre com termo de pesquisa acima"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Usando páginas"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -942,81 +876,79 @@ msgstr "Início"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:6
msgid "January"
-msgstr ""
+msgstr "Janeiro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:7
msgid "February"
-msgstr ""
+msgstr "Fevereiro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Pesquisa"
+msgstr "Março"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
-msgstr ""
+msgstr "Abril"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:10
msgid "May"
-msgstr ""
+msgstr "Maio"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:11
msgid "June"
-msgstr ""
+msgstr "Junho"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:12
msgid "July"
-msgstr ""
+msgstr "Julho"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:13
msgid "August"
-msgstr ""
+msgstr "Agosto"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:14
msgid "September"
-msgstr ""
+msgstr "Setembro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:15
msgid "October"
-msgstr ""
+msgstr "Outubro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:16
msgid "November"
-msgstr ""
+msgstr "Novembro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:17
msgid "December"
-msgstr ""
+msgstr "Dezembro"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:20
msgid "Sun"
-msgstr ""
+msgstr "Dom"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:21
msgid "Mon"
-msgstr ""
+msgstr "Seg"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:22
msgid "Tue"
-msgstr ""
+msgstr "Ter"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:23
msgid "Wed"
-msgstr ""
+msgstr "Qua"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:24
msgid "Thu"
-msgstr ""
+msgstr "Qui"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:25
msgid "Fri"
-msgstr ""
+msgstr "Sex"
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Status"
+msgstr "Sáb"
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1040,28 +972,27 @@ msgstr "Página %(page_num)s de %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
msgid "User bar"
-msgstr "Barra do Usuário"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
-msgstr "Ir para Interface Administrativa"
+msgstr ""
#: templates/wagtailadmin/userbar/item_page_add.html:5
msgid "Add another page at this level"
-msgstr "Adicionar outra página neste nivel"
+msgstr ""
#: templates/wagtailadmin/userbar/item_page_add.html:5
msgid "Add"
-msgstr "Adicionar"
+msgstr "Add"
#: views/account.py:39
msgid "Your password has been changed successfully!"
msgstr "Sua senha foi alterada com sucesso!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Sua senha foi alterada com sucesso!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1084,9 +1015,8 @@ msgid "Page '{0}' created."
msgstr "Página '{0}' criada."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "A página não pode ser salva devido a erros de validação"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1113,14 +1043,12 @@ msgid "Page '{0}' moved."
msgstr "Página '{0}' movida."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Página '{0}' atualizada."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Página '{0}' movida."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1129,56 +1057,3 @@ msgstr "A página '{0}' não está mais esperando moderação."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Página '{0}' rejeitada para publicação."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Por favor, insira um hora válida"
-
-#~ msgid "Status:"
-#~ msgstr "Status:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Aonde você deseja criar um %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Aonde deseje criar isto"
-
-#~ msgid "Create a new page"
-#~ msgstr "Criar nova página"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Sua nova página será salva no nível superior do seu site. Você "
-#~ "pode mover depois de salvar."
-
-#~ msgid "Less"
-#~ msgstr "Menos"
-
-#~ msgid "More"
-#~ msgstr "Mais"
-
-#~ msgid "Redirects"
-#~ msgstr "Redirecionamentos"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Dicas de Redação"
-
-#~ msgid "Snippets"
-#~ msgstr "Trechos"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Desculpe, você não tem permissão para criar uma página do tipo {0}"
-#~ "em>"
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Páginas desse tipo somente pode ser criada como filho de {0}. "
-#~ "Esta nova página será salva lá."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "A página não pode ser criado devido a erros."
diff --git a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
index f83070b4b..4967b5f5f 100644
--- a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po
@@ -1,24 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# zerolab, 2014
+# Dan Braghis, 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-18 13:19+0000\n"
-"Last-Translator: zerolab\n"
-"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
-"language/ro/)\n"
-"Language: ro\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: edit_handlers.py:627
msgid "Scheduled publishing"
@@ -52,27 +50,23 @@ msgstr "Introduceți adresa de e-mail."
msgid ""
"Sorry, you cannot reset your password here as your user account is managed "
"by another server."
-msgstr ""
-"Ne pare rău, dar nu puteți reseta parola aici. Contul dvs. de utilizator "
-"este gestionat de un alt server."
+msgstr "Ne pare rău, dar nu puteți reseta parola aici. Contul dvs. de utilizator este gestionat de un alt server."
#: forms.py:76
msgid "This email address is not recognised."
msgstr "Adresa e-mail nu este recunoscută."
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "Mută %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "Adaugă subpagină"
+msgstr ""
#: forms.py:97
#, python-format
@@ -91,9 +85,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "Publică"
+msgstr ""
#: forms.py:111
#, python-format
@@ -113,18 +106,16 @@ msgstr "Această fisă a fost deja folosită"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "Publică"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "Adresa e-mail nu este recunoscută."
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -151,8 +142,7 @@ msgstr "Conectare"
#: templates/wagtailadmin/login.html:18
msgid "Your username and password didn't match. Please try again."
-msgstr ""
-"Numele de utilizator și parola nu corespund. Vă rugăm să încercați din nou."
+msgstr "Numele de utilizator și parola nu corespund. Vă rugăm să încercați din nou."
#: templates/wagtailadmin/login.html:26
msgid "Sign in to Wagtail"
@@ -176,10 +166,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"Avatarul este oferit de Gravatar și este legat de adresa dvs. de e-mail. "
-"Având un cont Gravatar, puteți seta un avatar pentru orice număr de adrese e-"
-"mail folosite."
+msgstr "Avatarul este oferit de Gravatar și este legat de adresa dvs. de e-mail. Având un cont Gravatar, puteți seta un avatar pentru orice număr de adrese e-mail folosite."
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -206,9 +193,7 @@ msgstr "Schimbă parola"
#: templates/wagtailadmin/account/change_password.html:21
msgid ""
"Your password can't be changed here. Please contact a site administrator."
-msgstr ""
-"Parola nu poate fi schimbată aici. Vă rugăm să contactați administratorii "
-"sitului."
+msgstr "Parola nu poate fi schimbată aici. Vă rugăm să contactați administratorii sitului."
#: templates/wagtailadmin/account/notification_preferences.html:4
#: templates/wagtailadmin/account/notification_preferences.html:6
@@ -301,15 +286,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Există o potrivire"
-msgstr[1] ""
-"\n"
-"Sunt %(counter)s potriviri"
-msgstr[2] ""
-"\n"
-"Sunt %(counter)s potriviri"
+msgstr[0] "\nExistă o potrivire"
+msgstr[1] "\nSunt %(counter)s potriviri"
+msgstr[2] "\nSunt %(counter)s potriviri"
#: templates/wagtailadmin/chooser/browse.html:2
#: templates/wagtailadmin/chooser/search.html:2
@@ -466,15 +445,9 @@ msgid_plural ""
"\n"
" %(total_pages)s Pages\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_pages)s pagină"
-msgstr[1] ""
-"\n"
-"%(total_pages)s pagini"
-msgstr[2] ""
-"\n"
-"%(total_pages)s pagini"
+msgstr[0] "\n%(total_pages)s pagină"
+msgstr[1] "\n%(total_pages)s pagini"
+msgstr[2] "\n%(total_pages)s pagini"
#: templates/wagtailadmin/home/site_summary.html:16
#, python-format
@@ -486,15 +459,9 @@ msgid_plural ""
"\n"
" %(total_images)s Images\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_images)s imagine"
-msgstr[1] ""
-"\n"
-"%(total_images)s imagini"
-msgstr[2] ""
-"\n"
-"%(total_images)s imagini"
+msgstr[0] "\n%(total_images)s imagine"
+msgstr[1] "\n%(total_images)s imagini"
+msgstr[2] "\n%(total_images)s imagini"
#: templates/wagtailadmin/home/site_summary.html:25
#, python-format
@@ -506,15 +473,9 @@ msgid_plural ""
"\n"
" %(total_docs)s Documents\n"
" "
-msgstr[0] ""
-"\n"
-"%(total_docs)s document"
-msgstr[1] ""
-"\n"
-"%(total_docs)s documente"
-msgstr[2] ""
-"\n"
-"%(total_docs)s documente"
+msgstr[0] "\n%(total_docs)s document"
+msgstr[1] "\n%(total_docs)s documente"
+msgstr[2] "\n%(total_docs)s documente"
#: templates/wagtailadmin/notifications/approved.html:1
#, python-format
@@ -573,9 +534,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "Puteți edita pagina aici:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -585,13 +545,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
-msgstr ""
-"\n"
-"Examinare '%(title)s', trimisă de %(submitted_by)s pe data de "
-"%(submitted_on)s."
+msgstr "\nExaminare '%(title)s', trimisă de %(submitted_by)s pe data de %(submitted_on)s."
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -637,26 +593,17 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
-msgstr[0] ""
-"\n"
-"Această acțiune va șterge și o subpagină."
-msgstr[1] ""
-"\n"
-"Această acțiune va șterge %(descendant_count)s subpagini."
-msgstr[2] ""
-"\n"
-"Această acțiune va șterge %(descendant_count)s subpagini."
+msgstr[0] "\nAceastă acțiune va șterge și o subpagină."
+msgstr[1] "\nAceastă acțiune va șterge %(descendant_count)s subpagini."
+msgstr[2] "\nAceastă acțiune va șterge %(descendant_count)s subpagini."
#: templates/wagtailadmin/pages/confirm_delete.html:22
msgid ""
"Alternatively you can unpublish the page. This removes the page from public "
"view and you can edit or publish it again later."
-msgstr ""
-"Puteți să anulați pagina ca alternativă. Această acțiune retrage pagina din "
-"domeniul public, dar puteți edita sau publica pagina ulterior."
+msgstr "Puteți să anulați pagina ca alternativă. Această acțiune retrage pagina din domeniul public, dar puteți edita sau publica pagina ulterior."
#: templates/wagtailadmin/pages/confirm_delete.html:26
msgid "Delete it"
@@ -687,8 +634,7 @@ msgstr "Sigur doriți să mutați această pagină în '%(title)s'?"
msgid ""
"Are you sure you want to move this page and all of its children into "
"'%(title)s'?"
-msgstr ""
-"Sigur doriți să mutați această pagină și paginile dependente în '%(title)s'?"
+msgstr "Sigur doriți să mutați această pagină și paginile dependente în '%(title)s'?"
#: templates/wagtailadmin/pages/confirm_move.html:18
msgid "Yes, move this page"
@@ -719,9 +665,9 @@ msgid "Pages using"
msgstr "Pagini cu"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "Mută %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -729,9 +675,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "Editează această pagină"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -820,9 +765,9 @@ msgid "Explore"
msgstr "Explorează"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "Explorează paginile dependente de '%(title)s'"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -843,14 +788,12 @@ msgid "Why not add one?"
msgstr "De ce să nu adăugați una?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-"Pagina %(page_number)s din %(num_pages)s."
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -883,7 +826,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "Selectează o pagină de bază nouă pentru %(title)s"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -893,14 +836,8 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-"Există o potrivire"
msgstr[1] ""
-"\n"
-"Sunt %(counter)s potriviri"
msgstr[2] ""
-"\n"
-"Sunt %(counter)s potriviri"
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -925,24 +862,20 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-"Pagina %(page_number)s din %(num_pages)s."
+msgstr "\nPagina %(page_number)s din %(num_pages)s."
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
msgid "Sorry, no pages match \"%(query_string)s\""
-msgstr ""
-"Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o pagină"
+msgstr "Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o pagină"
#: templates/wagtailadmin/pages/search_results.html:56
msgid "Enter a search term above"
msgstr "Introduceți termenii de căutare mai sus"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "Pagini cu"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -957,9 +890,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "Căutare"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -1022,9 +954,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "Status"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -1048,9 +979,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "Pagina %(page_num)s din %(total_pages)s."
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "Utilizatori"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1069,9 +999,8 @@ msgid "Your password has been changed successfully!"
msgstr "Parola a fost schimbată cu succes!"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "Parola a fost schimbată cu succes!"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1094,9 +1023,8 @@ msgid "Page '{0}' created."
msgstr "Pagina '{0}' a fost creată."
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "Pagina nu a fost salvată din cauza erorilor de validare."
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1123,14 +1051,12 @@ msgid "Page '{0}' moved."
msgstr "Pagina '{0}' a fost mutată."
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "Pagina '{0}' a fost actualizată."
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "Pagina '{0}' a fost mutată."
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1139,59 +1065,3 @@ msgstr "Pagina '{0}' nu este în moderare la moment."
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "Publicare paginii '{0}' a fost refuzată."
-
-#~ msgid "Please type a valid time"
-#~ msgstr "Introduceți o oră validă"
-
-#~ msgid "View draft"
-#~ msgstr "Vezi ciornă"
-
-#~ msgid "View live"
-#~ msgstr "Vezi în direct"
-
-#~ msgid "Status:"
-#~ msgstr "Stare:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "Unde doriți să creați %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "Unde doriți să creați"
-
-#~ msgid "Create a new page"
-#~ msgstr "Crează pagină nouă"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr ""
-#~ "Pagina va fi salvată în nivelul de sus al sitului. După care "
-#~ "puteți să o mutați."
-
-#~ msgid "More"
-#~ msgstr "Mai mult"
-
-#~ msgid "Redirects"
-#~ msgstr "Redirecționări"
-
-#~ msgid "Editors Picks"
-#~ msgstr "Selecții editoriale"
-
-#~ msgid "Snippets"
-#~ msgstr "Fragmente"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr ""
-#~ "Ne pare rău, dar nu aveți nivelul de acces potrivit pentru a crea pagini "
-#~ "de tipul '{0}'."
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr ""
-#~ "Paginile de acest tip pot fi create numai ca fiind dependente de "
-#~ "'{0}'. Această pagină va fi salvată acolo."
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "Pagina nu a fost creată din cauza erorilor."
diff --git a/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
index 667db45c6..7aa5b5fec 100644
--- a/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailadmin/locale/zh/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
-"zh/)\n"
-"Language: zh\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/zh/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: edit_handlers.py:627
@@ -32,11 +31,11 @@ msgstr "搜索词"
#: forms.py:43
msgid "Enter your username"
-msgstr "请输入用户名"
+msgstr ""
#: forms.py:46
msgid "Enter password"
-msgstr "请输入密码"
+msgstr ""
#: forms.py:51
msgid "Enter your email address to reset your password"
@@ -57,18 +56,16 @@ msgid "This email address is not recognised."
msgstr "没有找到这个电子邮件地址。"
#: forms.py:88
-#, fuzzy
msgid "New title"
-msgstr "移动 %(title)s"
+msgstr ""
#: forms.py:89
msgid "New slug"
msgstr ""
#: forms.py:95
-#, fuzzy
msgid "Copy subpages"
-msgstr "添加子页面"
+msgstr ""
#: forms.py:97
#, python-format
@@ -85,9 +82,8 @@ msgid "This page is live. Would you like to publish its copy as well?"
msgstr ""
#: forms.py:109
-#, fuzzy
msgid "Publish copies"
-msgstr "发布"
+msgstr ""
#: forms.py:111
#, python-format
@@ -105,18 +101,16 @@ msgstr "这个唯一的地址已被占用"
#: forms.py:130 templates/wagtailadmin/pages/_privacy_indicator.html:13
#: templates/wagtailadmin/pages/_privacy_indicator.html:18
-#, fuzzy
msgid "Public"
-msgstr "发布"
+msgstr ""
#: forms.py:131
msgid "Private, accessible with the following password"
msgstr ""
#: forms.py:139
-#, fuzzy
msgid "This field is required."
-msgstr "没有找到这个电子邮件地址。"
+msgstr ""
#: templates/wagtailadmin/base.html:7 templates/wagtailadmin/home.html:4
msgid "Dashboard"
@@ -151,7 +145,7 @@ msgstr "登录Wagtail"
#: templates/wagtailadmin/login.html:46
msgid "Forgotten it?"
-msgstr "忘记密码?"
+msgstr "忘记了?"
#: templates/wagtailadmin/account/account.html:4
#: templates/wagtailadmin/account/account.html:6
@@ -167,9 +161,7 @@ msgid ""
"Your avatar image is provided by Gravatar and is connected to your email "
"address. With a Gravatar account you can set an avatar for any number of "
"other email addresses you use."
-msgstr ""
-"您的头像图片是由Gravatar提供的,并且关联了您的电子邮箱。一个Gravatar账号可以"
-"设置多个电子邮箱的头像图片。"
+msgstr "您的头像图片是由Gravatar提供的,并且关联了您的电子邮件地址。一个Gravatar账号可以设置多个电子邮件地址的头像图片。"
#: templates/wagtailadmin/account/account.html:25
#: templates/wagtailadmin/account/change_password.html:4
@@ -179,7 +171,7 @@ msgstr "修改密码"
#: templates/wagtailadmin/account/account.html:29
msgid "Change the password you use to log in."
-msgstr "修改登录密码。"
+msgstr "修改您用于登录的密码。"
#: templates/wagtailadmin/account/account.html:36
msgid "Notification preferences"
@@ -529,9 +521,8 @@ msgid "This page has been made private by a parent page."
msgstr ""
#: templates/wagtailadmin/page_privacy/ancestor_privacy.html:7
-#, fuzzy
msgid "You can edit the privacy settings on:"
-msgstr "你可以在此编辑这个页面:"
+msgstr ""
#: templates/wagtailadmin/page_privacy/set_privacy.html:6
msgid "Note: privacy changes apply to all children of this page too."
@@ -541,13 +532,9 @@ msgstr ""
#, python-format
msgid ""
"\n"
-" Previewing '%(title)s', submitted by %(submitted_by)s on "
-"%(submitted_on)s.\n"
-" "
-msgstr ""
-"\n"
-" 预览 '%(title)s', %(submitted_by)s 在 %(submitted_on)s 提交.\n"
+" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n"
" "
+msgstr "\n 预览 '%(title)s', %(submitted_by)s 在 %(submitted_on)s 提交.\n "
#: templates/wagtailadmin/pages/_privacy_indicator.html:9
msgid "Privacy"
@@ -593,8 +580,7 @@ msgid ""
" "
msgid_plural ""
"\n"
-" This will also delete %(descendant_count)s more "
-"subpages.\n"
+" This will also delete %(descendant_count)s more subpages.\n"
" "
msgstr[0] ""
@@ -664,9 +650,9 @@ msgid "Pages using"
msgstr "页面在用"
#: templates/wagtailadmin/pages/copy.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Copy %(title)s"
-msgstr "移动 %(title)s"
+msgstr ""
#: templates/wagtailadmin/pages/copy.html:6
#: templates/wagtailadmin/pages/list.html:202
@@ -674,9 +660,8 @@ msgid "Copy"
msgstr ""
#: templates/wagtailadmin/pages/copy.html:26
-#, fuzzy
msgid "Copy this page"
-msgstr "编辑这个页面"
+msgstr ""
#: templates/wagtailadmin/pages/create.html:5
#, python-format
@@ -765,9 +750,9 @@ msgid "Explore"
msgstr "浏览"
#: templates/wagtailadmin/pages/list.html:245
-#, fuzzy, python-format
+#, python-format
msgid "Explore child pages of '%(title)s'"
-msgstr "浏览 '%(title)s' 的子页面"
+msgstr ""
#: templates/wagtailadmin/pages/list.html:247
#, python-format
@@ -788,15 +773,12 @@ msgid "Why not add one?"
msgstr "为什么不添加一页?"
#: templates/wagtailadmin/pages/list.html:263
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
msgstr ""
-"\n"
-" 第 %(page_number)s / %(num_pages)s页.\n"
-" "
#: templates/wagtailadmin/pages/list.html:269
#: templates/wagtailadmin/pages/search_results.html:35
@@ -829,7 +811,7 @@ msgid "Select a new parent page for %(title)s"
msgstr "为%(title)s选择一个新的根页面"
#: templates/wagtailadmin/pages/search_results.html:6
-#, fuzzy, python-format
+#, python-format
msgid ""
"\n"
" There is one matching page\n"
@@ -839,9 +821,6 @@ msgid_plural ""
" There are %(counter)s matching pages\n"
" "
msgstr[0] ""
-"\n"
-" 第 %(page_number)s / %(num_pages)s页.\n"
-" "
#: templates/wagtailadmin/pages/search_results.html:16
msgid "Other searches"
@@ -866,10 +845,7 @@ msgid ""
"\n"
" Page %(page_number)s of %(num_pages)s.\n"
" "
-msgstr ""
-"\n"
-" 第 %(page_number)s / %(num_pages)s页.\n"
-" "
+msgstr "\n 第 %(page_number)s / %(num_pages)s页.\n "
#: templates/wagtailadmin/pages/search_results.html:54
#, python-format
@@ -881,9 +857,8 @@ msgid "Enter a search term above"
msgstr "请在上面输入搜索词"
#: templates/wagtailadmin/pages/usage_results.html:24
-#, fuzzy
msgid "No pages use"
-msgstr "页面在用"
+msgstr ""
#: templates/wagtailadmin/shared/breadcrumb.html:6
msgid "Home"
@@ -898,9 +873,8 @@ msgid "February"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:8
-#, fuzzy
msgid "March"
-msgstr "搜索"
+msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:9
msgid "April"
@@ -963,9 +937,8 @@ msgid "Fri"
msgstr ""
#: templates/wagtailadmin/shared/datetimepicker_translations.html:26
-#, fuzzy
msgid "Sat"
-msgstr "状态"
+msgstr ""
#: templates/wagtailadmin/shared/header.html:23
#, python-format
@@ -987,9 +960,8 @@ msgid "Page %(page_num)s of %(total_pages)s."
msgstr "第%(page_num)s页 共%(total_pages)s页"
#: templates/wagtailadmin/userbar/base.html:4
-#, fuzzy
msgid "User bar"
-msgstr "用户"
+msgstr ""
#: templates/wagtailadmin/userbar/base.html:14
msgid "Go to Wagtail admin interface"
@@ -1008,9 +980,8 @@ msgid "Your password has been changed successfully!"
msgstr "您的密码已经更改成功。"
#: views/account.py:60
-#, fuzzy
msgid "Your preferences have been updated successfully!"
-msgstr "您的密码已经更改成功。"
+msgstr ""
#: views/pages.py:169 views/pages.py:286
msgid "Go live date/time must be before expiry date/time"
@@ -1033,9 +1004,8 @@ msgid "Page '{0}' created."
msgstr "第 '{0}' 页已创建。"
#: views/pages.py:233
-#, fuzzy
msgid "The page could not be created due to validation errors"
-msgstr "这页无法保存,因为页面发生验证错误"
+msgstr ""
#: views/pages.py:356
msgid "Page '{0}' updated."
@@ -1062,14 +1032,12 @@ msgid "Page '{0}' moved."
msgstr "第 '{0}' 页已移动。"
#: views/pages.py:709
-#, fuzzy
msgid "Page '{0}' and {1} subpages copied."
-msgstr "第 '{0}' 页已更新"
+msgstr ""
#: views/pages.py:711
-#, fuzzy
msgid "Page '{0}' copied."
-msgstr "第 '{0}' 页已移动。"
+msgstr ""
#: views/pages.py:785 views/pages.py:804 views/pages.py:824
msgid "The page '{0}' is not currently awaiting moderation."
@@ -1078,53 +1046,3 @@ msgstr "第 '{0}' 页当前不需要等待审核。"
#: views/pages.py:810
msgid "Page '{0}' rejected for publication."
msgstr "第 '{0}' 页已被拒绝发布。"
-
-#~ msgid "Please type a valid time"
-#~ msgstr "请输入一个有效的时间"
-
-#~ msgid "View draft"
-#~ msgstr "查看草稿"
-
-#~ msgid "View live"
-#~ msgstr "查看在线版"
-
-#~ msgid "Status:"
-#~ msgstr "状态:"
-
-#~ msgid "Where do you want to create a %(page_type)s"
-#~ msgstr "你想在哪创建 %(page_type)s"
-
-#~ msgid "Where do you want to create this"
-#~ msgstr "你想在哪创建这个"
-
-#~ msgid "Create a new page"
-#~ msgstr "创建一个新页面"
-
-#~ msgid ""
-#~ "Your new page will be saved in the top level of your website. "
-#~ "You can move it after saving."
-#~ msgstr "你的新页面将会保存到网站的顶级 你 在保存后可以移动."
-
-#~ msgid "More"
-#~ msgstr "更多"
-
-#~ msgid "Redirects"
-#~ msgstr "转向"
-
-#~ msgid "Editors Picks"
-#~ msgstr "编辑手摘"
-
-#~ msgid "Snippets"
-#~ msgstr "片段"
-
-#~ msgid ""
-#~ "Sorry, you do not have access to create a page of type '{0}'."
-#~ msgstr "对不起,你没有创建'{0}'类型页面的权限。"
-
-#~ msgid ""
-#~ "Pages of this type can only be created as children of '{0}'. "
-#~ "This new page will be saved there."
-#~ msgstr "这一类的页面只能创建为'{0}'的子页面。这一页将会保存在那。"
-
-#~ msgid "The page could not be created due to errors."
-#~ msgstr "这一页因有错误发生而无法创建。"
diff --git a/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
index 1108f63ca..3d3cfb9bb 100644
--- a/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/bg/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# LyuboslavPetrov , 2014
+# Lyuboslav Petrov , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-24 20:02+0000\n"
-"Last-Translator: LyuboslavPetrov \n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
-"language/bg/)\n"
-"Language: bg\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -24,18 +23,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Задайте това като нещо различно от 80, в случай че имате нужда от определен "
-"порт да се появи в URL адресите ви (напр. код-разработка на порт 8000). Не "
-"се отнася за боравене със заявки (така Port Forwarding ще работи)."
+msgstr "Задайте това като нещо различно от 80, в случай че имате нужда от определен порт да се появи в URL адресите ви (напр. код-разработка на порт 8000). Не се отнася за боравене със заявки (така Port Forwarding ще работи)."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Ако е Вярно, този сайт ще борави със заявки за всички останали хостове, "
-"които нямат собствен сайт."
+msgstr "Ако е Вярно, този сайт ще борави със заявки за всички останали хостове, които нямат собствен сайт."
#: models.py:109
#, python-format
@@ -50,11 +44,9 @@ msgstr "Заглавието на страницата както желаете
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Името на страницата както ще изглежда в URL-ите. Например http://domain.com/"
-"blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Името на страницата както ще изглежда в URL-ите. Например http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -62,17 +54,14 @@ msgstr "Заглавие на Страница"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Незадължителен. 'Оптимизирано за Търсачки' заглавие. Това ще се появи най-"
-"отгоре на браузър прозореца."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Незадължителен. 'Оптимизирано за Търсачки' заглавие. Това ще се появи най-отгоре на браузър прозореца."
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Дали линк към тази страница ще се появи в автоматично генерираните менюта"
+msgstr "Дали линк към тази страница ще се появи в автоматично генерираните менюта"
#: models.py:291
msgid "Go live date/time"
@@ -87,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "име '%s' (ползвано в листа subpage_types) не е зададено."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
index 2d46c5017..aa3525fd6 100644
--- a/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/ca/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# Lloople , 2014
+# David Llop , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-22 12:43+0000\n"
-"Last-Translator: Lloople \n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
-"ca/)\n"
-"Language: ca\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -24,18 +23,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Canvia això per un número diferent de 80 si necessites que aparegui un port "
-"específic en les URLs (per ex: port de desenvolupament al 8000). No afecta a "
-"la petició actual (el port de reenviament encara funciona)."
+msgstr "Canvia això per un número diferent de 80 si necessites que aparegui un port específic en les URLs (per ex: port de desenvolupament al 8000). No afecta a la petició actual (el port de reenviament encara funciona)."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Si és cert, aquest lloc s'encarregarà de les peticions de totes les altres "
-"màquines que no tenen un lloc establert."
+msgstr "Si és cert, aquest lloc s'encarregarà de les peticions de totes les altres màquines que no tenen un lloc establert."
#: models.py:109
#, python-format
@@ -50,11 +44,9 @@ msgstr "El títol de la pàgina que vols que sigui vist pel públic"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"El nom de la pàgina que apareixerà en la URL. Per exemple: http://domini.com/"
-"blog/[nom]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "El nom de la pàgina que apareixerà en la URL. Per exemple: http://domini.com/blog/[nom]/"
#: models.py:287
msgid "Page title"
@@ -62,17 +54,14 @@ msgstr "Títol de la pàgina"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Opcional. Títol de 'Motor de cerca amigable'. Això apareixerà al cap damunt "
-"de la finetra del navegador"
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Opcional. Títol de 'Motor de cerca amigable'. Això apareixerà al cap damunt de la finetra del navegador"
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Si s'enllaça cap aquesta pàgina apareixerà automàticament als menús generats"
+msgstr "Si s'enllaça cap aquesta pàgina apareixerà automàticament als menús generats"
#: models.py:291
msgid "Go live date/time"
@@ -87,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "el nom '%s' (utilitzat a subpage_types list) no està definit."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
index d303111cd..543a13b5b 100644
--- a/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/de/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# jspielmann , 2014
+# Johannes Spielmann , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-25 17:28+0000\n"
-"Last-Translator: jspielmann \n"
-"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
-"de/)\n"
-"Language: de\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -24,18 +23,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Geben Sie hier einen anderen Wert als 80 ein, wenn dieser in URLs auftauchen "
-"soll (z.B. Development Port auf 8000). Dies bezieht sich nicht auf Request "
-"Handling, so dass Port Forwarding weiterhin funktioniert."
+msgstr "Geben Sie hier einen anderen Wert als 80 ein, wenn dieser in URLs auftauchen soll (z.B. Development Port auf 8000). Dies bezieht sich nicht auf Request Handling, so dass Port Forwarding weiterhin funktioniert."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Falls ausgewählt wird diese Seite Anfragen für alle Hostnamen annehmen, die "
-"keinen eigenen Seiteneintrag haben."
+msgstr "Falls ausgewählt wird diese Seite Anfragen für alle Hostnamen annehmen, die keinen eigenen Seiteneintrag haben."
#: models.py:109
#, python-format
@@ -50,11 +44,9 @@ msgstr "Der Seitentitel, der öffentlich angezeigt werden soll"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Der Name der Seite, wie er in URLs angezeigt werden soll, z.B. http://domain."
-"com/blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Der Name der Seite, wie er in URLs angezeigt werden soll, z.B. http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -62,17 +54,14 @@ msgstr "Seitentitel"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Optional. Suchmaschinenfreundlicher Titel. Wird in der Titelleiste des "
-"Browsers angezeigt."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Optional. Suchmaschinenfreundlicher Titel. Wird in der Titelleiste des Browsers angezeigt."
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Ob ein Link zu dieser Seite in automatisch generierten Menüs auftaucht."
+msgstr "Ob ein Link zu dieser Seite in automatisch generierten Menüs auftaucht."
#: models.py:291
msgid "Go live date/time"
@@ -87,8 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
msgstr ""
-"Der Name '%s', der in der Liste subpage_types verwendet wird, ist nicht "
-"definiert."
diff --git a/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
index cca756ca7..bed0ba05d 100644
--- a/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/el/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# serafeim , 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-22 12:27+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
-"el/)\n"
-"Language: el\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -24,19 +23,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Μπορείτε να χρησιμοποιήσετε κάτι διαφορετικό από το 80 αν θέλετε να "
-"εμφανίζεται στις διευθύνσεις μια συγκεκριμένη θύρα (π.χ. ανάπτυξη στη θύρα "
-"8000). Δεν επηρεάζει τον τρόπο που χειρίζονται τις αιτήσεις (οπότε η "
-"προώθηση θύρας δουλεύει ακόμα)"
+msgstr "Μπορείτε να χρησιμοποιήσετε κάτι διαφορετικό από το 80 αν θέλετε να εμφανίζεται στις διευθύνσεις μια συγκεκριμένη θύρα (π.χ. ανάπτυξη στη θύρα 8000). Δεν επηρεάζει τον τρόπο που χειρίζονται τις αιτήσεις (οπότε η προώθηση θύρας δουλεύει ακόμα)"
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Αν είναι αληθές, το εν λόγω site θα χειρίζεται και τις αιτήσεις για όλα τα "
-"άλλα ονόματα που δεν έχουν δική τους εγγραφή"
+msgstr "Αν είναι αληθές, το εν λόγω site θα χειρίζεται και τις αιτήσεις για όλα τα άλλα ονόματα που δεν έχουν δική τους εγγραφή"
#: models.py:109
#, python-format
@@ -51,11 +44,9 @@ msgstr "Ο τίτλος της σελίδας έτσι όπως θα εμφαν
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Το όνομα της σελίδας έτσι όπως θα εμφανίζεται στις διευθύνσεις, π.χ http://"
-"domain.com/blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Το όνομα της σελίδας έτσι όπως θα εμφανίζεται στις διευθύνσεις, π.χ http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -63,18 +54,14 @@ msgstr "Τίτλος σελίδας"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Προαιρετικό. Τίτλος που είναι 'φιλικός προς τις μηχανές αναζήτησης'. Θα "
-"εμφανιστεί στην κορυφή του παραθύρου."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Προαιρετικό. Τίτλος που είναι 'φιλικός προς τις μηχανές αναζήτησης'. Θα εμφανιστεί στην κορυφή του παραθύρου."
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Επιλέξτε αν μια σύνδεση σε αυτή τη σελίδα θα εμφανιστεί στα μενού που "
-"δημιουργούνται αυτόματα"
+msgstr "Επιλέξτε αν μια σύνδεση σε αυτή τη σελίδα θα εμφανιστεί στα μενού που δημιουργούνται αυτόματα"
#: models.py:291
msgid "Go live date/time"
@@ -89,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "το όνομα '%s' (που χρησιμοποιείται στη λίστα) δεν έχει οριστεί."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
index a6b75474d..05bc60286 100644
--- a/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/es/LC_MESSAGES/django.po
@@ -1,26 +1,25 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
# fooflare , 2014
-# unaizalakain , 2014
-# unaizalakain , 2014
+# Unai Zalakain , 2014
+# Unai Zalakain , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-27 09:22+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
-"es/)\n"
-"Language: es\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -28,18 +27,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Cambia esto a algo que no sea 80 si necesitas que un puerto específico "
-"aparezca en las URLs (p.e. desarrollo en el puerto 8000). Esto no afecta al "
-"manejo de solicitudes (así que la redirección de puertos sigue funcionando)."
+msgstr "Cambia esto a algo que no sea 80 si necesitas que un puerto específico aparezca en las URLs (p.e. desarrollo en el puerto 8000). Esto no afecta al manejo de solicitudes (así que la redirección de puertos sigue funcionando)."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Si afirmativo, este sitio manejará solicitudes para todos los demás "
-"hostnames que no tengan un site por sí mismos"
+msgstr "Si afirmativo, este sitio manejará solicitudes para todos los demás hostnames que no tengan un site por sí mismos"
#: models.py:109
#, python-format
@@ -54,11 +48,9 @@ msgstr "El título de la página como quieres que sea visto por el público"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"El nombre de la página tal como aparecerá en URLs p.ej. http://domain.com/"
-"blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "El nombre de la página tal como aparecerá en URLs p.ej. http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -66,11 +58,9 @@ msgstr "Título de la página"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Opcional. Título 'Amigable para el Motor de Búsqueda'. Aparecerá en la parte "
-"superior de la ventana del navegador."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Opcional. Título 'Amigable para el Motor de Búsqueda'. Aparecerá en la parte superior de la ventana del navegador."
#: models.py:288
msgid ""
@@ -90,6 +80,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "nombre '%s' (usado en la lista de subpage_types) no está definido."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
index d61633839..cbe69e338 100644
--- a/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/eu/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-24 22:36+0000\n"
-"Last-Translator: tomdyson \n"
-"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
-"eu/)\n"
-"Language: eu\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -44,8 +43,8 @@ msgstr ""
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
msgstr ""
#: models.py:287
@@ -54,8 +53,8 @@ msgstr ""
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
msgstr ""
#: models.py:288
diff --git a/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
index 2683cb21e..cc75fb902 100644
--- a/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/fr/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# nahuel, 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-18 22:47+0000\n"
-"Last-Translator: nahuel\n"
-"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
-"fr/)\n"
-"Language: fr\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: models.py:46
@@ -24,11 +23,7 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Définissez cette valeur à autre chose que 80 si vous avez besoin qu'un port "
-"spécifique apparaisse dans les URLs (e.g. développement sur le port 8000). "
-"Ceci n'affecte pas la prise en charge des requêtes (les redirections de port "
-"continuent de fonctionner)."
+msgstr "Définissez cette valeur à autre chose que 80 si vous avez besoin qu'un port spécifique apparaisse dans les URLs (e.g. développement sur le port 8000). Ceci n'affecte pas la prise en charge des requêtes (les redirections de port continuent de fonctionner)."
#: models.py:48
msgid ""
@@ -49,11 +44,9 @@ msgstr "Le titre de la page comme vous souhaiteriez que les lecteurs la voient"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Le nom de la page comme elle apparaîtra dans l'URL e.g http://domain.com/"
-"blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Le nom de la page comme elle apparaîtra dans l'URL e.g http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -61,16 +54,14 @@ msgstr "Titre de la page"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
msgstr ""
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Si un lien vers cette page devra apparaître dans les menus générés "
-"automatiquement"
+msgstr "Si un lien vers cette page devra apparaître dans les menus générés automatiquement"
#: models.py:291
msgid "Go live date/time"
@@ -85,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "le nom '%s' (utilisé dans la liste subpage_types) n'est pas défini."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
index 7c5f85412..4201d9b9e 100644
--- a/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/gl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-23 10:32+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
-"language/gl/)\n"
-"Language: gl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -24,18 +23,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Cambia isto a algo que non sexa o 80 se necesitas que un porto específico "
-"apareza nas URLs (p.e. desenvolvemento no porto 8000). Isto non afecta ao "
-"manexo de solicitudes (así que a redirección de portos segue funcionando)."
+msgstr "Cambia isto a algo que non sexa o 80 se necesitas que un porto específico apareza nas URLs (p.e. desenvolvemento no porto 8000). Isto non afecta ao manexo de solicitudes (así que a redirección de portos segue funcionando)."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Se é afirmativo, este sitio manexará solicitudes para todos os demais nomes "
-"de host que non teñan unha entrada por si mesmos"
+msgstr "Se é afirmativo, este sitio manexará solicitudes para todos os demais nomes de host que non teñan unha entrada por si mesmos"
#: models.py:109
#, python-format
@@ -50,11 +44,9 @@ msgstr "O título da páxina como queres que sexa visto polo público"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"O nome da páxina tal como aparecerá nas URLs p.ex. http://domain.com/blog/"
-"[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "O nome da páxina tal como aparecerá nas URLs p.ex. http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -62,11 +54,9 @@ msgstr "Título da páxina"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Opcional. Título 'Amigable para o Motor de Busca'. Aparecerá na parte "
-"superior da ventá do navegador."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Opcional. Título 'Amigable para o Motor de Busca'. Aparecerá na parte superior da ventá do navegador."
#: models.py:288
msgid ""
@@ -86,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "nome '%s' (usado en la lista de subpage_types) non está definido."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
index ebf676793..064a1dabb 100644
--- a/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/mn/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# delgermurun , 2014
+# Delgermurun Purevkhuuu , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-04 05:03+0000\n"
-"Last-Translator: delgermurun \n"
-"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
-"language/mn/)\n"
-"Language: mn\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:46
@@ -45,8 +44,8 @@ msgstr ""
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
msgstr ""
#: models.py:287
@@ -55,8 +54,8 @@ msgstr "Хуудасны гарчиг"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
msgstr ""
#: models.py:288
diff --git a/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
index 0a11c22de..d0a696b89 100644
--- a/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/pl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# utek , 2014
# utek , 2014
@@ -10,34 +10,27 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-23 10:22+0000\n"
-"Last-Translator: utek \n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
-"pl/)\n"
-"Language: pl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Ustaw na inną wartość niż 80 jeżeli istnieje potrzeba pojawienia się "
-"konkretnego portu w URLach (np. port wersji roboczej 8000). Nie ma wpływu na "
-"obsługę żądań (przekierowanie portów będzie nadal działało)."
+msgstr "Ustaw na inną wartość niż 80 jeżeli istnieje potrzeba pojawienia się konkretnego portu w URLach (np. port wersji roboczej 8000). Nie ma wpływu na obsługę żądań (przekierowanie portów będzie nadal działało)."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Wartość true sprawi, że ta strona będzie obsługiwała żądania wszystkich "
-"innych hostów, które nie mają ustawionej strony."
+msgstr "Wartość true sprawi, że ta strona będzie obsługiwała żądania wszystkich innych hostów, które nie mają ustawionej strony."
#: models.py:109
#, python-format
@@ -52,11 +45,9 @@ msgstr "Tytuł strony jaki chcesz żeby był widoczny publicznie."
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Nazwa strony, która będzie wyświetlana w URLach np. http://domain.com/blog/"
-"[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Nazwa strony, która będzie wyświetlana w URLach np. http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -64,17 +55,14 @@ msgstr "Tytuł strony"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Opcjonalne. Tytuł 'przyjazny wyszukiwarkom'. Będzie widoczny się na górze "
-"okna przeglądarki."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Opcjonalne. Tytuł 'przyjazny wyszukiwarkom'. Będzie widoczny się na górze okna przeglądarki."
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Czy link do tej strony zostanie wyświetlony w menu tworzonym automatycznie."
+msgstr "Czy link do tej strony zostanie wyświetlony w menu tworzonym automatycznie."
#: models.py:291
msgid "Go live date/time"
@@ -89,6 +77,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "nazwa '%s' (używana w liście subpage_types) nie jest zdefiniowana."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
index aac390c30..d6c9a1902 100644
--- a/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/ro/LC_MESSAGES/django.po
@@ -1,43 +1,35 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# zerolab, 2014
+# Dan Braghis, 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-24 22:29+0000\n"
-"Last-Translator: zerolab\n"
-"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
-"language/ro/)\n"
-"Language: ro\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: models.py:46
msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"Dacă aveți nevoie ca un număr de port specific să apară în adrese de "
-"internet (de exemplu, dezvoltare pe portul 8000) setați aceasta la altceva "
-"decât 80. Nu influențează gestionarea solicitărilor și transmiterile de port "
-"vor continua să funcționeze."
+msgstr "Dacă aveți nevoie ca un număr de port specific să apară în adrese de internet (de exemplu, dezvoltare pe portul 8000) setați aceasta la altceva decât 80. Nu influențează gestionarea solicitărilor și transmiterile de port vor continua să funcționeze."
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"Dacă e 'true', acest sit va gestiona solicitări pentru toate hostname-urile "
-"fără setări separate"
+msgstr "Dacă e 'true', acest sit va gestiona solicitări pentru toate hostname-urile fără setări separate"
#: models.py:109
#, python-format
@@ -52,11 +44,9 @@ msgstr "Titlul paginii așa cum doriți să fie vizibil public"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
-msgstr ""
-"Numele paginii așa cum va apărea în adrese. De exemplu, http://domain.com/"
-"blog/[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
+msgstr "Numele paginii așa cum va apărea în adrese. De exemplu, http://domain.com/blog/[my-slug]/"
#: models.py:287
msgid "Page title"
@@ -64,18 +54,14 @@ msgstr "Titlu pagină"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
-msgstr ""
-"Opțional. Titlu favorabil motoarelor de căutare. Apare în partea de sus a "
-"browserului."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
+msgstr "Opțional. Titlu favorabil motoarelor de căutare. Apare în partea de sus a browserului."
#: models.py:288
msgid ""
"Whether a link to this page will appear in automatically generated menus"
-msgstr ""
-"Dacă un link către această pagină va apărea în meniurile generate în mod "
-"automat"
+msgstr "Dacă un link către această pagină va apărea în meniurile generate în mod automat"
#: models.py:291
msgid "Go live date/time"
@@ -90,6 +76,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "numele '%s' (folosit în lista subpage_types) nu este definit."
+msgstr ""
diff --git a/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
index 3de773cf3..4dc9d01ee 100644
--- a/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailcore/locale/zh/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-02-28 16:07+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
-"zh/)\n"
-"Language: zh\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/zh/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: models.py:46
@@ -23,16 +22,13 @@ msgid ""
"Set this to something other than 80 if you need a specific port number to "
"appear in URLs (e.g. development on port 8000). Does not affect request "
"handling (so port forwarding still works)."
-msgstr ""
-"如果你需要指定端口,请选择一个有别于80的端口(比如开发端口8000)。 不影响接受请"
-"求 (端口转发仍然有效)"
+msgstr "如果你需要指定端口,请选择一个有别于80的端口(比如开发端口8000)。 不影响接受请求 (端口转发仍然有效)"
#: models.py:48
msgid ""
"If true, this site will handle requests for all other hostnames that do not "
"have a site entry of their own"
-msgstr ""
-"如果是真的,这个网站将处理没有一个属于自己的主机名的其他所有主机名的请求"
+msgstr "如果是真的,这个网站将处理没有一个属于自己的主机名的其他所有主机名的请求"
#: models.py:109
#, python-format
@@ -47,8 +43,8 @@ msgstr "页面标题,你想被大众所看到的"
#: models.py:278
msgid ""
-"The name of the page as it will appear in URLs e.g http://domain.com/blog/"
-"[my-slug]/"
+"The name of the page as it will appear in URLs e.g http://domain.com/blog"
+"/[my-slug]/"
msgstr "一个出现在URL的名字 比如 http://domain.com/blog/[my-slug]/"
#: models.py:287
@@ -57,8 +53,8 @@ msgstr "页面标题"
#: models.py:287
msgid ""
-"Optional. 'Search Engine Friendly' title. This will appear at the top of the "
-"browser window."
+"Optional. 'Search Engine Friendly' title. This will appear at the top of the"
+" browser window."
msgstr "可选 ‘搜索引擎友好’ 标题。 这会显示在浏览器窗口顶部"
#: models.py:288
@@ -79,6 +75,5 @@ msgid "Expiry date/time"
msgstr ""
#: models.py:564
-#, fuzzy
msgid "name '{0}' (used in subpage_types list) is not defined."
-msgstr "名称为 '%s' (用于子页面类型列表) 没有被创建."
+msgstr ""
diff --git a/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
index 3740f19a9..ff8ce4bd1 100644
--- a/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/bg/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# LyuboslavPetrov , 2014
+# Lyuboslav Petrov , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
-"language/bg/)\n"
-"Language: bg\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -68,13 +67,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Има едно съвпадение\n"
-" "
-msgstr[1] ""
-"\n"
-"Има %(counter)s съвпадения"
+msgstr[0] "\n Има едно съвпадение\n "
+msgstr[1] "\nИма %(counter)s съвпадения"
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -134,16 +128,14 @@ msgstr "Качени"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Не сте качили никакви документи. Защо не качите един сега?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Не сте качили никакви документи. Защо не качите един сега?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Изтрийте %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
index 20a1c47e3..03625463e 100644
--- a/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/ca/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# Lloople , 2014
+# David Llop , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
-"ca/)\n"
-"Language: ca\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -68,12 +67,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Hi ha un resultat"
-msgstr[1] ""
-"\n"
-"Hi han %(counter)s resultats"
+msgstr[0] "\nHi ha un resultat"
+msgstr[1] "\nHi han %(counter)s resultats"
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -133,16 +128,14 @@ msgstr "Pujat"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"No has pujat cap document. Per què no pujes un ara?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "No has pujat cap document. Per què no pujes un ara?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Esborra %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
index 5399f1431..ae5dccc63 100644
--- a/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/de/LC_MESSAGES/django.po
@@ -1,23 +1,23 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# jspielmann , 2014
+# Johannes Spielmann , 2014
+# karlsander , 2014
# pcraston , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-24 18:54+0000\n"
-"Last-Translator: pcraston \n"
-"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
-"de/)\n"
-"Language: de\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -69,14 +69,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Es gibt ein Ergebnis\n"
-" "
-msgstr[1] ""
-"\n"
-" Es gibt %(counter)s Ergebnisse\n"
-" "
+msgstr[0] "\n Es gibt ein Ergebnis\n "
+msgstr[1] "\n Es gibt %(counter)s Ergebnisse\n "
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -86,8 +80,7 @@ msgstr "Neueste Dokumente"
#: templates/wagtaildocs/documents/results.html:18
#, python-format
msgid "Sorry, no documents match \"%(query_string)s\""
-msgstr ""
-"Es gibt leider keine Dokumente zum Suchbegriff \"%(query_string)s\""
+msgstr "Es gibt leider keine Dokumente zum Suchbegriff \"%(query_string)s\""
#: templates/wagtaildocs/documents/_file_field.html:5
msgid "Change document:"
@@ -137,16 +130,14 @@ msgstr "Hochgeladen"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Sie haben noch keine Dokumente hochgeladen.Laden Sie doch jetzt eins hoch!"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Sie haben noch keine Dokumente hochgeladen. Laden Sie doch jetzt eins hoch!"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "%(title)s löschen"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
index 769d22cf7..15b8a82e9 100644
--- a/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/el/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# serafeim , 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
-"el/)\n"
-"Language: el\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -68,14 +67,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Βρέθηκε ένα αποτέλεσμα\n"
-" "
-msgstr[1] ""
-"\n"
-" Βρέθηκαν %(counter)s αποτελέσματα\n"
-" "
+msgstr[0] "\n Βρέθηκε ένα αποτέλεσμα\n "
+msgstr[1] "\n Βρέθηκαν %(counter)s αποτελέσματα\n "
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -85,8 +78,7 @@ msgstr "Τελευταία έγγραφα"
#: templates/wagtaildocs/documents/results.html:18
#, python-format
msgid "Sorry, no documents match \"%(query_string)s\""
-msgstr ""
-"Δε βρέθηκαν έγγραφα που να ταιριάζουν με το \"%(query_string)s\""
+msgstr "Δε βρέθηκαν έγγραφα που να ταιριάζουν με το \"%(query_string)s\""
#: templates/wagtaildocs/documents/_file_field.html:5
msgid "Change document:"
@@ -136,16 +128,14 @@ msgstr "Ανεβασμένο"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Δεν υπάρχουν έγγραφα. Θέλετε να ανεβάσετε μερικά;"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Δεν υπάρχουν έγγραφα. Θέλετε να ανεβάσετε μερικά;"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Διαγραφή %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
index 20521efcc..a8b711977 100644
--- a/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/es/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
-"es/)\n"
-"Language: es\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -69,14 +68,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hay una coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hay %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hay una coincidencia\n "
+msgstr[1] "\n Hay %(counter)s coincidencias\n "
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -136,16 +129,14 @@ msgstr "Subidos"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"No has subido documentos. ¿Por qué no subir uno ahora?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "No has subido documentos. ¿Por qué no subir uno ahora?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Eliminar %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
index 4658fcdcc..aa6f5d81b 100644
--- a/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/eu/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
-"eu/)\n"
-"Language: eu\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -128,8 +127,8 @@ msgstr ""
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
+"You haven't uploaded any documents. Why not upload one now?"
msgstr ""
#: templates/wagtaildocs/documents/usage.html:3
diff --git a/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
index 921115dc5..ec5c5f9bf 100644
--- a/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/fr/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# nahuel, 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-18 23:15+0000\n"
-"Last-Translator: nahuel\n"
-"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
-"fr/)\n"
-"Language: fr\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -129,14 +128,14 @@ msgstr ""
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
+"You haven't uploaded any documents. Why not upload one now?"
msgstr ""
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Supprimer %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
index c80a38726..4a2ce5bef 100644
--- a/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/gl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-23 10:32+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
-"language/gl/)\n"
-"Language: gl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -69,14 +68,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hai unha coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hai %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hai unha coincidencia\n "
+msgstr[1] "\n Hai %(counter)s coincidencias\n "
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -136,16 +129,14 @@ msgstr "Subidos"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Non subiches documentos. ¿Por qué non subir un agora?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Non subiches documentos. ¿Por qué non subir un agora?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Eliminar %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
index 4cad2ebeb..5e127bb88 100644
--- a/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/mn/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
-"language/mn/)\n"
-"Language: mn\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -128,8 +127,8 @@ msgstr ""
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
+"You haven't uploaded any documents. Why not upload one now?"
msgstr ""
#: templates/wagtaildocs/documents/usage.html:3
diff --git a/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
index 49f3daf32..81db48471 100644
--- a/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/pl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# utek , 2014
# utek , 2014
@@ -10,16 +10,14 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
-"pl/)\n"
-"Language: pl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
@@ -70,18 +68,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Jedno dopasowanie\n"
-" "
-msgstr[1] ""
-"\n"
-" Są %(counter)s dopasowania\n"
-" "
-msgstr[2] ""
-"\n"
-" Jest %(counter)s dopasowań\n"
-" "
+msgstr[0] "\n Jedno dopasowanie\n "
+msgstr[1] "\n Są %(counter)s dopasowania\n "
+msgstr[2] "\n Jest %(counter)s dopasowań\n "
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -91,8 +80,7 @@ msgstr "Najnowsze dokumenty"
#: templates/wagtaildocs/documents/results.html:18
#, python-format
msgid "Sorry, no documents match \"%(query_string)s\""
-msgstr ""
-"Przepraszamy, żaden dokument nie pasuje do \"%(query_string)s\""
+msgstr "Przepraszamy, żaden dokument nie pasuje do \"%(query_string)s\""
#: templates/wagtaildocs/documents/_file_field.html:5
msgid "Change document:"
@@ -142,16 +130,14 @@ msgstr "Przesłano"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Nie przesłano żadnych dokumentów. Czemu nie dodać jednego teraz?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Nie przesłano żadnych dokumentów. Czemu nie dodać jednego teraz?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Usuń %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
index da57e4e38..15b64f26e 100644
--- a/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/ro/LC_MESSAGES/django.po
@@ -1,24 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# zerolab, 2014
+# Dan Braghis, 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-18 13:20+0000\n"
-"Last-Translator: zerolab\n"
-"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
-"language/ro/)\n"
-"Language: ro\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
#: templates/wagtaildocs/documents/list.html:14
@@ -69,15 +67,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Există o potrivire"
-msgstr[1] ""
-"\n"
-"Sunt %(counter)s potriviri"
-msgstr[2] ""
-"\n"
-"Sunt %(counter)s potriviri"
+msgstr[0] "\nExistă o potrivire"
+msgstr[1] "\nSunt %(counter)s potriviri"
+msgstr[2] "\nSunt %(counter)s potriviri"
#: templates/wagtaildocs/chooser/results.html:12
msgid "Latest documents"
@@ -87,9 +79,7 @@ msgstr "Documente recente"
#: templates/wagtaildocs/documents/results.html:18
#, python-format
msgid "Sorry, no documents match \"%(query_string)s\""
-msgstr ""
-"Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici un "
-"document"
+msgstr "Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici un document"
#: templates/wagtaildocs/documents/_file_field.html:5
msgid "Change document:"
@@ -139,16 +129,14 @@ msgstr "Încărcat"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"Nu ați încărcat nici un document. De ce să nu adăugați unul?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "Nu ați încărcat nici un document. De ce să nu adăugați unul?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Șterge %(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
index b173c46b6..3ad210f18 100644
--- a/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtaildocs/locale/zh/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:38+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
-"zh/)\n"
-"Language: zh\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/zh/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: models.py:21 templates/wagtaildocs/documents/list.html:11
@@ -127,16 +126,14 @@ msgstr "已上传"
#: templates/wagtaildocs/documents/results.html:21
#, python-format
msgid ""
-"You haven't uploaded any documents. Why not upload one now?"
-msgstr ""
-"你没有上传任何文档。 为什么不 上"
-"传一份?"
+"You haven't uploaded any documents. Why not upload one now?"
+msgstr "你没有上传任何文档。 为什么不 上传一份?"
#: templates/wagtaildocs/documents/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "删除%(title)s"
+msgstr ""
#: templates/wagtaildocs/documents/usage.html:5
msgid "Usage of"
diff --git a/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
index 9f18d0a2e..d065aad7e 100644
--- a/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/bg/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# LyuboslavPetrov , 2014
+# Lyuboslav Petrov , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
-"language/bg/)\n"
-"Language: bg\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -102,13 +101,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Има едно съвпадение\n"
-" "
-msgstr[1] ""
-"\n"
-"Има %(counter)s съвпадения"
+msgstr[0] "\n Има едно съвпадение\n "
+msgstr[1] "\nИма %(counter)s съвпадения"
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -181,11 +175,9 @@ msgstr ""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Не сте качили никакви изображения. Защо не качите едно сега?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Не сте качили никакви изображения. Защо не качите едно сега?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -206,9 +198,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Редакция на %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -231,14 +223,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Добави Изображение"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Добави Изображение"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -264,25 +254,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Изтрий Изображение"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Невалиден формат на изображение. Моля ползвайте gif, jpeg или png файлове."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
index 58c06cc71..d43082fd6 100644
--- a/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/ca/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# Lloople , 2014
+# David Llop , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:58+0000\n"
-"Last-Translator: Lloople \n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
-"ca/)\n"
-"Language: ca\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -102,12 +101,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Hi ha un resultat"
-msgstr[1] ""
-"\n"
-"Hi han %(counter)s resultats"
+msgstr[0] "\nHi ha un resultat"
+msgstr[1] "\nHi han %(counter)s resultats"
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -180,11 +175,9 @@ msgstr "Ho sentim, cap imatge coincideix amb \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"No has pujat cap imatge. Per què no afegeixes una ara?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "No has pujat cap imatge. Per què no afegeixes una ara?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -205,9 +198,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Editant imatge %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -230,14 +223,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Afegeix una imatge"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Afegeix imatge"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -263,27 +254,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Esborra imatge"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
-"formats."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"No és un format d'imatge vàlid. Si us plau fes servir gif, jpeg o png com a "
-"formats."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
index 1663820e9..9f186eb44 100644
--- a/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/de/LC_MESSAGES/django.po
@@ -1,23 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# jspielmann , 2014
+# Johannes Spielmann , 2014
# pcraston , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-24 19:01+0000\n"
-"Last-Translator: pcraston \n"
-"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
-"de/)\n"
-"Language: de\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -103,14 +102,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Es gibt ein Ergebnis\n"
-" "
-msgstr[1] ""
-"\n"
-" Es gibt %(counter)s Ergebnisse\n"
-" "
+msgstr[0] "\n Es gibt ein Ergebnis\n "
+msgstr[1] "\n Es gibt %(counter)s Ergebnisse\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -178,17 +171,14 @@ msgstr "Bearbeiten"
#: templates/wagtailimages/images/results.html:31
#, python-format
msgid "Sorry, no images match \"%(query_string)s\""
-msgstr ""
-"Es gibt leider keine Bilder zum Suchbegriff \"%(query_string)s\""
+msgstr "Es gibt leider keine Bilder zum Suchbegriff \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Sie haben noch keine Bilder hochgeladen. Laden Sie doch jetzt eins hoch!"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Sie haben noch keine Bilder hochgeladen. Laden Sie doch jetzt eins hoch!"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -209,9 +199,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Bild %(title)s bearbeiten"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -234,14 +224,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Ein Bild hinzufügen"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Bild hinzufügen"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -267,25 +255,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Bild löschen"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Kein gültiges Bildformat. Bitte benutzen Sie GIF-, JPEG- oder PNG-Dateien."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
index 87ec737ba..92bb5f8af 100644
--- a/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/el/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# serafeim , 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:17+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
-"el/)\n"
-"Language: el\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -102,13 +101,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Βρέθηκε ένα αποτέλεσμα"
-msgstr[1] ""
-"\n"
-" Βρέθηκαν %(counter)s αποτελέσματα\n"
-" "
+msgstr[0] "\nΒρέθηκε ένα αποτέλεσμα"
+msgstr[1] "\n Βρέθηκαν %(counter)s αποτελέσματα\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -176,17 +170,14 @@ msgstr "Διόρθωση"
#: templates/wagtailimages/images/results.html:31
#, python-format
msgid "Sorry, no images match \"%(query_string)s\""
-msgstr ""
-"Λυπούμαστε, καμία εικόνα δε ταιριάζει με το \"%(query_string)s\""
+msgstr "Λυπούμαστε, καμία εικόνα δε ταιριάζει με το \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Δεν υπάρχουν εικόνες. Θέλετε να προσθέσετε μερικές;"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Δεν υπάρχουν εικόνες. Θέλετε να προσθέσετε μερικές;"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -207,9 +198,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Επεξεργασία εικόνας %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -232,14 +223,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Προσθήκη εικόνας"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Προσθήκη εικόνας"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -265,23 +254,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Διαγραφή εικόνας"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
-msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
+msgstr ""
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
-msgstr "Πρέπει να ανεβάσετε αρχείο εικόνας τύπου gif, gpeg ή png."
+msgstr ""
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
index b78b9ddf9..9f8743311 100644
--- a/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/es/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-23 10:21+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
-"es/)\n"
-"Language: es\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -103,14 +102,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hay una coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hay %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hay una coincidencia\n "
+msgstr[1] "\n Hay %(counter)s coincidencias\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -178,18 +171,14 @@ msgstr "Editando"
#: templates/wagtailimages/images/results.html:31
#, python-format
msgid "Sorry, no images match \"%(query_string)s\""
-msgstr ""
-"Lo sentimos, no hay coincidencias en las imágenes \"%(query_string)s"
-"\""
+msgstr "Lo sentimos, no hay coincidencias en las imágenes \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"No has subido imágenes. ¿Por qué no añadir una ahora?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "No has subido imágenes. ¿Por qué no añadir una ahora?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -210,9 +199,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Editando imagen %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -235,14 +224,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Añadir una imagen"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Añadir imagen"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -268,27 +255,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Eliminar imagen"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
-"gif, jpeg o png."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"No es un formato válido de imagen. Por favor, usa en su lugar un archivo "
-"gif, jpeg o png."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
index 3d133b441..c07a35c6d 100644
--- a/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/eu/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
-"eu/)\n"
-"Language: eu\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -175,8 +174,8 @@ msgstr ""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
+"You've not uploaded any images. Why not add one now?"
msgstr ""
#: templates/wagtailimages/images/url_generator.html:9
diff --git a/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
index 81ee938f4..fe6d971b6 100644
--- a/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/fr/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# nahuel, 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-18 23:15+0000\n"
-"Last-Translator: nahuel\n"
-"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
-"fr/)\n"
-"Language: fr\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: forms.py:37
@@ -102,14 +101,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Il y a une correspondance\n"
-" "
-msgstr[1] ""
-"\n"
-" Il y a %(counter)s correspondances\n"
-" "
+msgstr[0] "\n Il y a une correspondance\n "
+msgstr[1] "\n Il y a %(counter)s correspondances\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -182,8 +175,8 @@ msgstr "Désolé, aucune image ne correspond à \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
+"You've not uploaded any images. Why not add one now?"
msgstr ""
#: templates/wagtailimages/images/url_generator.html:9
@@ -205,9 +198,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Édition de l'image %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -230,14 +223,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Ajouter une image"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Ajouter l'image"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -263,25 +254,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Supprimer l'image"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Format d'image invalide. Utilisez à la place un fichier gif, jpeg ou png."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
index bdc82d234..1208c799e 100644
--- a/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/gl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-23 10:32+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
-"language/gl/)\n"
-"Language: gl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -103,14 +102,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hai unha coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hai %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hai unha coincidencia\n "
+msgstr[1] "\n Hai %(counter)s coincidencias\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -183,11 +176,9 @@ msgstr "Sentímolo, ningunha imaxe contén \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"No subiches imaxes. ¿Por qué non engadir unha agora?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "No subiches imaxes. ¿Por qué non engadir unha agora?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -208,9 +199,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Editando imaxe %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -233,14 +224,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Engadir unha imaxe"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Engadir imaxe"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -266,27 +255,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Eliminar imaxe"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
-"gif, jpeg o png."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Non é un formato válido de imaxe. Por favor, usa no seu lugar un arquivo "
-"gif, jpeg o png."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
index 481d53919..f641c1c3e 100644
--- a/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/mn/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# delgermurun , 2014
+# Delgermurun Purevkhuuu , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
-"language/mn/)\n"
-"Language: mn\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:37
@@ -102,12 +101,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"1 зураг олдлоо"
-msgstr[1] ""
-"\n"
-"%(counter)s зураг олдлоо"
+msgstr[0] "\n1 зураг олдлоо"
+msgstr[1] "\n%(counter)s зураг олдлоо"
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -180,11 +175,9 @@ msgstr ""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Та зураг оруулаагүй байна. Яагаад одоо нэгийг оруулж болохгүй гэж?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Та зураг оруулаагүй байна. Яагаад одоо нэгийг оруулж болохгүй гэж?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -205,9 +198,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "%(title)s зургийг засч байна"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -230,14 +223,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Зураг нэмэх"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Зураг нэмэх"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -263,23 +254,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Зургийг устгах"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
-msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
+msgstr ""
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
-msgstr "Буруу форматтай зураг байна. gif, jpeg, png форматыг зөвшөөрнө."
+msgstr ""
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
index 0d282f588..5cdbdd5c8 100644
--- a/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/pl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# utek , 2014
# utek , 2014
@@ -10,16 +10,14 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 22:16+0000\n"
-"Last-Translator: utek \n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
-"pl/)\n"
-"Language: pl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: forms.py:37
msgid "Filter"
@@ -104,18 +102,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Jedno dopasowanie\n"
-" "
-msgstr[1] ""
-"\n"
-" Znaleziono %(counter)s dopasowania\n"
-" "
-msgstr[2] ""
-"\n"
-" Znaleziono %(counter)s dopasowań\n"
-" "
+msgstr[0] "\n Jedno dopasowanie\n "
+msgstr[1] "\n Znaleziono %(counter)s dopasowania\n "
+msgstr[2] "\n Znaleziono %(counter)s dopasowań\n "
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -188,11 +177,9 @@ msgstr "Przepraszamy, żaden obraz nie pasuje do \"%(query_string)s\""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Nie przesłano żadnych obrazów. Czemu nie dodać jednego teraz?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Nie przesłano żadnych obrazów. Czemu nie dodać jednego teraz?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -213,9 +200,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Edycja obrazu %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -238,14 +225,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Dodaj obraz"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Dodaj obraz"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -271,27 +256,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Usuń obraz"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
-"gif, jpeg lub png."
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
msgstr ""
-"Niepoprawny format obrazu. Użyj proszę jednego z następujących formatów: "
-"gif, jpeg lub png."
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
index ab44c17de..ac03909ae 100644
--- a/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/ro/LC_MESSAGES/django.po
@@ -1,24 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# zerolab, 2014
+# Dan Braghis, 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-18 13:20+0000\n"
-"Last-Translator: zerolab\n"
-"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
-"language/ro/)\n"
-"Language: ro\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: forms.py:37
msgid "Filter"
@@ -103,15 +101,9 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Există o potrivire"
-msgstr[1] ""
-"\n"
-"Sunt %(counter)s potriviri"
-msgstr[2] ""
-"\n"
-"Sunt %(counter)s potriviri"
+msgstr[0] "\nExistă o potrivire"
+msgstr[1] "\nSunt %(counter)s potriviri"
+msgstr[2] "\nSunt %(counter)s potriviri"
#: templates/wagtailimages/chooser/results.html:13
#: templates/wagtailimages/images/results.html:13
@@ -179,17 +171,14 @@ msgstr "Editare"
#: templates/wagtailimages/images/results.html:31
#, python-format
msgid "Sorry, no images match \"%(query_string)s\""
-msgstr ""
-"Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o imagine"
+msgstr "Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o imagine"
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"Nu ați încărcat nici o imagine. De să nu adăugați una?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "Nu ați încărcat nici o imagine. De să nu adăugați una?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -210,9 +199,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "Editare imagine %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -235,14 +224,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "Adaugă o imagine"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "Adaugă imagine"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -268,23 +255,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "Șterge imagine"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
-msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
+msgstr ""
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
-msgstr "Format nevalid. Încercați un fișier gif, jpeg sau png în schimb."
+msgstr ""
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
index 4e734176c..564fcb35c 100644
--- a/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailimages/locale/zh/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
-"zh/)\n"
-"Language: zh\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/zh/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: forms.py:37
@@ -174,11 +173,9 @@ msgstr ""
#: templates/wagtailimages/images/results.html:34
#, python-format
msgid ""
-"You've not uploaded any images. Why not add one now?"
-msgstr ""
-"没有任何上传的图片。为什么不 添加"
-"一个?"
+"You've not uploaded any images. Why not add one now?"
+msgstr "没有任何上传的图片。为什么不 添加一个?"
#: templates/wagtailimages/images/url_generator.html:9
msgid "Generating URL"
@@ -199,9 +196,9 @@ msgid ""
msgstr ""
#: templates/wagtailimages/images/usage.html:3
-#, fuzzy, python-format
+#, python-format
msgid "Usage of %(title)s"
-msgstr "编辑图片 %(title)s"
+msgstr ""
#: templates/wagtailimages/images/usage.html:5
msgid "Usage of"
@@ -224,14 +221,12 @@ msgid "Edit this page"
msgstr ""
#: templates/wagtailimages/multiple/add.html:3
-#, fuzzy
msgid "Add multiple images"
-msgstr "添加一个图片"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:13
-#, fuzzy
msgid "Add images"
-msgstr "添加图片"
+msgstr ""
#: templates/wagtailimages/multiple/add.html:18
msgid "Drag and drop images into this area to upload immediately."
@@ -257,23 +252,21 @@ msgid "Update"
msgstr ""
#: templates/wagtailimages/multiple/edit_form.html:11
-#, fuzzy
msgid "Delete"
-msgstr "删除图片"
+msgstr ""
#: utils/validators.py:17 utils/validators.py:28
-#, fuzzy
msgid ""
"Not a valid image. Please use a gif, jpeg or png file with the correct file "
"extension (*.gif, *.jpg or *.png)."
-msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
+msgstr ""
#: utils/validators.py:35
-#, fuzzy, python-format
+#, python-format
msgid ""
"Not a valid %s image. Please use a gif, jpeg or png file with the correct "
"file extension (*.gif, *.jpg or *.png)."
-msgstr "不是有效的图片格式。请用gif,jpeg或者png格式的图片"
+msgstr ""
#: views/images.py:37 views/images.py:47
msgid "Search images"
diff --git a/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
index b61a741b3..c63ffe52b 100644
--- a/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/bg/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# LyuboslavPetrov , 2014
+# Lyuboslav Petrov , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/"
-"language/bg/)\n"
-"Language: bg\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Bulgarian (http://www.transifex.com/projects/p/wagtail/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -28,10 +27,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Въведете целият стринг. Точно \n"
-" съвпадение е нужно за вашите \"Избрано от Редактора\" \n"
-" да бъдат показани, като wildcards НЕ са позволени."
+msgstr "Въведете целият стринг. Точно \n съвпадение е нужно за вашите \"Избрано от Редактора\" \n да бъдат показани, като wildcards НЕ са позволени."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -47,30 +43,16 @@ msgid "Add editor's pick"
msgstr "Добави \"Избрано от Редактора\""
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
\"Избор на Редактора\" са средство за препоръчване на специфични "
-"страници, които не биха могли да дойдат по нормален начин високо в "
-"резултатите от търсенето. Например, препоръка към основната ви страница за "
-"дарения на потребителско търсене с по-малко общ термин като \" даде "
-"\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
@@ -91,10 +73,9 @@ msgid "Delete"
msgstr "Изтрий"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Сигурен ли сте, че искате да изтриете всички \"Избрано от Редактора\" за "
-"тази ключова дума?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Сигурен ли сте, че искате да изтриете всички \"Избрано от Редактора\" за тази ключова дума?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -148,14 +129,8 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Има едно съвпадение\n"
-" "
-msgstr[1] ""
-"\n"
-" Има %(counter)s съвпадения\n"
-" "
+msgstr[0] "\n Има едно съвпадение\n "
+msgstr[1] "\n Има %(counter)s съвпадения\n "
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
@@ -165,8 +140,8 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
+"No editor's picks have been created. Why not add one?"
msgstr ""
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
diff --git a/wagtail/wagtailsearch/locale/ca/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/ca/LC_MESSAGES/django.po
index f5729f9e3..62deec3d6 100644
--- a/wagtail/wagtailsearch/locale/ca/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/ca/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# Lloople , 2014
+# David Llop , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:59+0000\n"
-"Last-Translator: Lloople \n"
-"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/"
-"ca/)\n"
-"Language: ca\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Catalan (http://www.transifex.com/projects/p/wagtail/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -28,11 +27,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Escriu el text a cercar. Una\n"
-"coincidència exacta és requerida per les teves seleccions dels editors per "
-"ser\n"
-"mostrades, les wildcars NO estan permeses."
+msgstr "Escriu el text a cercar. Una\ncoincidència exacta és requerida per les teves seleccions dels editors per ser\nmostrades, les wildcars NO estan permeses."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -48,37 +43,18 @@ msgid "Add editor's pick"
msgstr "afegeix selecció dels editors"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Les seleccions dels editors són una mena de recomanacions de pàgines "
-"específiques que no puguin aparèixer orgànicament als resultats de cerca. "
-"Per exemple, recomanant la teva pàgina principal de donacions en un termini "
-"de cerca comú com \"donar\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
El camp \"Cerca paraula(es)/frases\" de sota ha de contenir la cerca "
-"completa i exacta per al que vols proveïr resultats recomanats, "
-"inclöent qualsevol error dels usuaris. Per ajugar, pots escollir "
-"des dels terminis de cerca que s'han fet populars a través dels usuaris del "
-"teu lloc.
"
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -97,10 +73,9 @@ msgid "Delete"
msgstr "Esborra"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Estàs segur que vols esborrar totes les seleccions dels editors per aquest "
-"terme de cerca?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Estàs segur que vols esborrar totes les seleccions dels editors per aquest terme de cerca?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -154,27 +129,20 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Hi ha una coincidència"
-msgstr[1] ""
-"\n"
-"Hi han %(counter)s coincidències"
+msgstr[0] "\nHi ha una coincidència"
+msgstr[1] "\nHi han %(counter)s coincidències"
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Ho sentim, cap selecció d'editor coincideix amb \"%(query_string)s\""
+msgstr "Ho sentim, cap selecció d'editor coincideix amb \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Encara no s'ha creat cap selecció d'editor. Per què no afegeixes una?"
+"No editor's picks have been created. Why not add one?"
+msgstr "Encara no s'ha creat cap selecció d'editor. Per què no afegeixes una?"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/de/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/de/LC_MESSAGES/django.po
index 8494abb1a..a5bb2346f 100644
--- a/wagtail/wagtailsearch/locale/de/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/de/LC_MESSAGES/django.po
@@ -1,23 +1,22 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# jspielmann , 2014
+# Johannes Spielmann , 2014
# pcraston , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-24 19:02+0000\n"
-"Last-Translator: pcraston \n"
-"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/"
-"de/)\n"
-"Language: de\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: German (http://www.transifex.com/projects/p/wagtail/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -29,10 +28,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Geben Sie den vollständigen Suchbegriff ein! Um Ihre Redaktionsempfehlungen "
-"anzuzeigen wird eine genaue Übereinstimmung benötigt. Wildcards sind NICHT "
-"erlaubt."
+msgstr "Geben Sie den vollständigen Suchbegriff ein! Um Ihre Redaktionsempfehlungen anzuzeigen wird eine genaue Übereinstimmung benötigt. Wildcards sind NICHT erlaubt."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -48,38 +44,18 @@ msgid "Add editor's pick"
msgstr "Redaktionsempfehlung hinzufügen"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Redaktionsempfehlungen sind eine Möglichkeit, bestimmte Seiten zu "
-"empfehlen die von sich aus nicht sehr weit oben in den Suchergebnissen "
-"auftauchen würden. So könnte zum Beispiel Ihre Spendenseite auftauchen wenn "
-"nach dem Suchbegriff \"unterstützen\" gesucht wird.
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
Im Eingabefeld \"Suchbegriffe/Phrasen\" müssen Sie den "
-"vollständigen und genauen Suchbegriff, inklusive eventueller "
-"Rechtschreibfehler, eingeben, für den Sie Seiten empfehlen möchten. Zur "
-"Unterstützung können Sie aus häufig verwendeten Suchbegriffen wählen.
\n"
-" "
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -98,10 +74,9 @@ msgid "Delete"
msgstr "Löschen"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Sind Sie sicher, dass Sie alle Redaktionsempfehlungen für diesen Suchbegriff "
-"löschen wollen?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Sind Sie sicher, dass Sie alle Redaktionsempfehlungen für diesen Suchbegriff löschen wollen?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -155,30 +130,20 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Es gibt ein Ergebnis\n"
-" "
-msgstr[1] ""
-"\n"
-" Es gibt %(counter)s Ergebnisse\n"
-" "
+msgstr[0] "\n Es gibt ein Ergebnis\n "
+msgstr[1] "\n Es gibt %(counter)s Ergebnisse\n "
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Es wurde leider keine Redaktionsempfehlung zum Suchbegriff \""
-"%(query_string)s\" gefunden"
+msgstr "Es wurde leider keine Redaktionsempfehlung zum Suchbegriff \"%(query_string)s\" gefunden"
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Sie haben noch keine Redaktionsempfehlungen erstellt. Erstellen Sie doch jetzt eine!"
+"No editor's picks have been created. Why not add one?"
+msgstr "Sie haben noch keine Redaktionsempfehlungen erstellt. Erstellen Sie doch jetzt eine!"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/el/LC_MESSAGES/django.po
index e8abb626b..023235064 100644
--- a/wagtail/wagtailsearch/locale/el/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/el/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# serafeim , 2014
# serafeim , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:15+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/"
-"el/)\n"
-"Language: el\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Greek (http://www.transifex.com/projects/p/wagtail/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -29,11 +28,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Συμπληρώσατε το πλήρες κείμενο προς αναζήτησης.\n"
-"Για να εμφανιστεί η επιλογή των συντακτών σας\n"
-"απαιτείται ακριβές ταίριασμα, δεν επιτρέπονται\n"
-"αστεράκια."
+msgstr "Συμπληρώσατε το πλήρες κείμενο προς αναζήτησης.\nΓια να εμφανιστεί η επιλογή των συντακτών σας\nαπαιτείται ακριβές ταίριασμα, δεν επιτρέπονται\nαστεράκια."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -49,38 +44,18 @@ msgid "Add editor's pick"
msgstr "Προσθήκη επιλογής συντακτών"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Οι επιλογές συντακτών είναι ένας τρόπος πρότασης συγκεκριμένων σελίδων οι "
-"οποίες κανονικά δε θα βρίσκονται ψηλά στα αποτελέσματα της αναζήτησης. Για "
-"παράδειγμα, μπορείτε να προτείνετε τη σελίδα δωρεων σας σε μια αναζήτηση "
-"ενός λιγότερο συνηθισμένου όρου όπως \"δίνω\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"\n"
-"
Το πεδίο \"όροι/φράσεις αναζήτησης\" παρακάτω πρέπει να περιέχει το "
-"πλήρες και ακριβές κείμενο για το οποίο θέλετε να παρέχετε προτεινόμενα "
-"αποτελέσματα, συμπεριλαμβανομένων τυχόν ορθογραφικών λαθών. Προς "
-"βοήθεια, μπορείτε να επιλέξετε όρους αναζήτησης που ήταν δημοφιλείς στους "
-"χρήστες.
"
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -99,10 +74,9 @@ msgid "Delete"
msgstr "Διαγραφή"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Είστε σίγουρος ότι θέλετε να διαγράψετε όλες τις επιλογές συντακτών για τον "
-"εν λόγω όρο αναζήτησης;"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Είστε σίγουρος ότι θέλετε να διαγράψετε όλες τις επιλογές συντακτών για τον εν λόγω όρο αναζήτησης;"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -156,28 +130,20 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Βρέθηκε ένα αποτέλεσμα"
-msgstr[1] ""
-"\n"
-"Βρέθηκαν %(counter)s αποτελέσματα"
+msgstr[0] "\nΒρέθηκε ένα αποτέλεσμα"
+msgstr[1] "\nΒρέθηκαν %(counter)s αποτελέσματα"
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Λυπούμαστε, δε ταιριάζουν επιλογές συντακτών με το \"%(query_string)s"
-"em>\""
+msgstr "Λυπούμαστε, δε ταιριάζουν επιλογές συντακτών με το \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Δεν υπάρχουν επιλογές συντακτών. Θέλετε να προσθέσετε μία;"
+"No editor's picks have been created. Why not add one?"
+msgstr "Δεν υπάρχουν επιλογές συντακτών. Θέλετε να προσθέσετε μία;"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/es/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/es/LC_MESSAGES/django.po
index 180106509..f619f1125 100644
--- a/wagtail/wagtailsearch/locale/es/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/es/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-23 10:17+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/"
-"es/)\n"
-"Language: es\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Spanish (http://www.transifex.com/projects/p/wagtail/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -29,11 +28,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Introduce la cadena completa de búsqueda a encontrar. Es \n"
-" necesaria una coincidencia exacta para que tus Selecciones del "
-"Editor sean \n"
-" mostradas, los comodines NO están permitidos."
+msgstr "Introduce la cadena completa de búsqueda a encontrar. Es \n necesaria una coincidencia exacta para que tus Selecciones del Editor sean \n mostradas, los comodines NO están permitidos."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -49,40 +44,18 @@ msgid "Add editor's pick"
msgstr "Añadir selección del editor"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Las Selecciones del editor son una manera de recomendar las "
-"páginas específicas que podrían no aparecer por sí solas en lo alto de los "
-"resultados de búsqueda. P. ej., la recomendación de tu página principal de "
-"donaciones a un usuario que busque con un término menos común como "
-"\"dando\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
El campo de \"término(s)/frase de Búsqueda\" debe contener la "
-"búsqueda completa y exacta por la que deseas que se proporcionen los "
-"resultados recomendados, incluyendo cualquier error de de "
-"ortografía/usuario. Para ayudar, puedes elegir entre los términos de "
-"búsqueda que han sido populares entre los usuarios de tu sitio.
\n"
-" "
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -101,10 +74,9 @@ msgid "Delete"
msgstr "Eliminar"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"¿Seguro que quieres eliminar todas las selecciones del editor para este "
-"término de búsqueda?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "¿Seguro que quieres eliminar todas las selecciones del editor para este término de búsqueda?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -158,30 +130,20 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hay una coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hay %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hay una coincidencia\n "
+msgstr[1] "\n Hay %(counter)s coincidencias\n "
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Lo sentimos, no hay coincidencias en las selecciones del editor \""
-"%(query_string)s\""
+msgstr "Lo sentimos, no hay coincidencias en las selecciones del editor \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Ninguna selección del editor ha sido creada. ¿Por qué no añadir una?"
+"No editor's picks have been created. Why not add one?"
+msgstr "Ninguna selección del editor ha sido creada. ¿Por qué no añadir una?"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/eu/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/eu/LC_MESSAGES/django.po
index 330b1491f..277720dcb 100644
--- a/wagtail/wagtailsearch/locale/eu/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/eu/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/"
-"eu/)\n"
-"Language: eu\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Basque (http://www.transifex.com/projects/p/wagtail/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -45,20 +44,14 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/add.html:10
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
@@ -79,7 +72,8 @@ msgid "Delete"
msgstr ""
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
msgstr ""
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
@@ -145,8 +139,8 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
+"No editor's picks have been created. Why not add one?"
msgstr ""
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
diff --git a/wagtail/wagtailsearch/locale/fr/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/fr/LC_MESSAGES/django.po
index c957bb0d7..c787820da 100644
--- a/wagtail/wagtailsearch/locale/fr/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/fr/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# nahuel, 2014
msgid ""
@@ -9,14 +9,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-18 23:17+0000\n"
-"Last-Translator: nahuel\n"
-"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/"
-"fr/)\n"
-"Language: fr\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: French (http://www.transifex.com/projects/p/wagtail/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: forms.py:9
@@ -46,20 +45,14 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/add.html:10
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
@@ -80,7 +73,8 @@ msgid "Delete"
msgstr "Supprimer"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
msgstr ""
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
@@ -141,15 +135,13 @@ msgstr[1] ""
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Désolé, aucun choix de rédacteur ne correspond avec \"%(query_string)s"
-"em>\""
+msgstr "Désolé, aucun choix de rédacteur ne correspond avec \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
+"No editor's picks have been created. Why not add one?"
msgstr ""
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
diff --git a/wagtail/wagtailsearch/locale/gl/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/gl/LC_MESSAGES/django.po
index aa366d1c3..bd63b29ba 100644
--- a/wagtail/wagtailsearch/locale/gl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/gl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# fooflare , 2014
# fooflare , 2014
@@ -10,14 +10,13 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-23 10:33+0000\n"
-"Last-Translator: fooflare \n"
-"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/"
-"language/gl/)\n"
-"Language: gl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Galician (http://www.transifex.com/projects/p/wagtail/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -29,11 +28,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Introduce a cadea completa de busca a atopar. É \n"
-" necesaria unha coincidencia exacta para que as túas Seleccións do "
-"Editor sexan \n"
-" mostradas, os comodines NON están permitidos."
+msgstr "Introduce a cadea completa de busca a atopar. É \n necesaria unha coincidencia exacta para que as túas Seleccións do Editor sexan \n mostradas, os comodines NON están permitidos."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -49,40 +44,18 @@ msgid "Add editor's pick"
msgstr "Engadir selección do editor"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
As Seleccións do editor son unha maneira de recomendar as "
-"páxinas específicas que poderían non aparecer por sí soas no alto dos "
-"resultados de búsqueda. P. ex., a recomendación da túa páxina principal de "
-"donacións a un usuario que procure con un termo menos común como "
-"\"dando\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
O campo de \"termo(s)/frase de Busca\" debe conter a busca "
-"completa e exacta pola que desexas que se proporcionen os resultados "
-"recomendados, incluíndo calquera erro de de ortografía/usuario. "
-"Para axudar, podes elixir entre os termos de busca que foron populares entre "
-"os usuarios do teu sitio.
\n"
-" "
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -101,10 +74,9 @@ msgid "Delete"
msgstr "Eliminar"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"¿Seguro que queres eliminar todas as seleccións do editor para este termo de "
-"busca?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "¿Seguro que queres eliminar todas as seleccións do editor para este termo de busca?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -158,29 +130,20 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Hai unha coincidencia\n"
-" "
-msgstr[1] ""
-"\n"
-" Hai %(counter)s coincidencias\n"
-" "
+msgstr[0] "\n Hai unha coincidencia\n "
+msgstr[1] "\n Hai %(counter)s coincidencias\n "
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Sentímolo, ningunha selección do editor contén \"%(query_string)s\""
+msgstr "Sentímolo, ningunha selección do editor contén \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Ningunha selección do editor foi creada. ¿Por qué non engadir unha?"
+"No editor's picks have been created. Why not add one?"
+msgstr "Ningunha selección do editor foi creada. ¿Por qué non engadir unha?"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/mn/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/mn/LC_MESSAGES/django.po
index e8582d2e1..a0544cbc2 100644
--- a/wagtail/wagtailsearch/locale/mn/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/mn/LC_MESSAGES/django.po
@@ -1,22 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# delgermurun , 2014
+# Delgermurun Purevkhuuu , 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/"
-"language/mn/)\n"
-"Language: mn\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Mongolian (http://www.transifex.com/projects/p/wagtail/language/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forms.py:9
@@ -46,20 +45,14 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/add.html:10
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
@@ -80,7 +73,8 @@ msgid "Delete"
msgstr "Устгах"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
msgstr ""
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
@@ -146,8 +140,8 @@ msgstr ""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
+"No editor's picks have been created. Why not add one?"
msgstr ""
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
diff --git a/wagtail/wagtailsearch/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/pl/LC_MESSAGES/django.po
index 333cd6872..430cfba84 100644
--- a/wagtail/wagtailsearch/locale/pl/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/pl/LC_MESSAGES/django.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# utek , 2014
msgid ""
@@ -9,16 +9,14 @@ msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 22:16+0000\n"
-"Last-Translator: utek \n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/"
-"pl/)\n"
-"Language: pl\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Polish (http://www.transifex.com/projects/p/wagtail/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: forms.py:9
msgid "Search term(s)/phrase"
@@ -29,11 +27,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Wprowadź pełną frazę wyszukania do porównania.\n"
-" Dokładne porównanie jest wymagane żeby twoje \n"
-" wybory redakcji były wyświetlone, symbol \n"
-" wieloznaczności jest niedozwolony."
+msgstr "Wprowadź pełną frazę wyszukania do porównania.\n Dokładne porównanie jest wymagane żeby twoje \n wybory redakcji były wyświetlone, symbol \n wieloznaczności jest niedozwolony."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -49,38 +43,18 @@ msgid "Add editor's pick"
msgstr "Dodaj wybór redakcji"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Wybór redakcji służy do polecania stron, które normalnie "
-"niekoniecznie pojawiają sie wysoko w wynikach wyszukiwania. Np. polecanie "
-"głównej strony z darowiznami użytkownikom szukającym mniej pasujących "
-"wyrażeń jak np. \"oferować\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
Pole \"Frazy wyszukiwania\" musi zawierać pełne i dokładne "
-"wyszukanie dla którego chcesz wyświetlić polecanie wyniki, razem z "
-"wszystkimi literówkami/błędami użytkownika. W celu ułatwienia możesz wybrać "
-"z fraz wyszukiwania popularnych wśród użytkowników Twojej strony
\n"
-" "
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -99,10 +73,9 @@ msgid "Delete"
msgstr "Usuń"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Czy na pewno chcesz usunąć wszystkie wybory redakcji dla tych fraz "
-"wyszukiwania?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Czy na pewno chcesz usunąć wszystkie wybory redakcji dla tych fraz wyszukiwania?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -156,34 +129,21 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-" Jedno dopasowanie\n"
-" "
-msgstr[1] ""
-"\n"
-" Są %(counter)s dopasowania\n"
-" "
-msgstr[2] ""
-"\n"
-" Jest %(counter)s dopasowań\n"
-" "
+msgstr[0] "\n Jedno dopasowanie\n "
+msgstr[1] "\n Są %(counter)s dopasowania\n "
+msgstr[2] "\n Jest %(counter)s dopasowań\n "
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Przepraszamy, żaden wybór redakcji nie pasuje do \"%(query_string)s"
-"\""
+msgstr "Przepraszamy, żaden wybór redakcji nie pasuje do \"%(query_string)s\""
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Nie stworzono żadnego wyboru redakcji. Czemu nie dodać jakiegoś?"
+"No editor's picks have been created. Why not add one?"
+msgstr "Nie stworzono żadnego wyboru redakcji. Czemu nie dodać jakiegoś?"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/ro/LC_MESSAGES/django.po
index dc1131aa1..6301dd67b 100644
--- a/wagtail/wagtailsearch/locale/ro/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/ro/LC_MESSAGES/django.po
@@ -1,25 +1,23 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
-# zerolab, 2014
-# zerolab, 2014
+# Dan Braghis, 2014
+# Dan Braghis, 2014
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-18 13:21+0000\n"
-"Last-Translator: zerolab\n"
-"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/"
-"language/ro/)\n"
-"Language: ro\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Romanian (http://www.transifex.com/projects/p/wagtail/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: forms.py:9
msgid "Search term(s)/phrase"
@@ -30,10 +28,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"Introduceți șirul complet de căutare. \n"
-"Este nevoie de o potrivire exactă pentru a afișa selecțiile \n"
-"dvs. editoriale. Metacaractere NU sunt permise."
+msgstr "Introduceți șirul complet de căutare. \nEste nevoie de o potrivire exactă pentru a afișa selecțiile \ndvs. editoriale. Metacaractere NU sunt permise."
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -49,36 +44,18 @@ msgid "Add editor's pick"
msgstr "Adaugă selecție editorială"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
\n"
" "
msgstr ""
-"\n"
-"
Selecțiile editoriale sunt mijloace de recomandare de pagini ce pot să nu "
-"apară la începutul rezultatelor de căutare în mod natural. De exemplu, "
-"recomandarea paginii de donații utilizatorilor care au căutat termeni mai "
-"puțin specifici ca \"dare\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.
\n"
" "
msgstr ""
-"\n"
-"
Câmpul \"Termeni/frază de căutare\" de mai jos trebuie să conțină șirul "
-"exact pentru care doriți să furnizați rezultate recomandate. Includeți"
-"em> greșeli ortografice și alte greșeli. Puteți să alegeți din termenii de "
-"căutare populari printre utilizatorii sitului dvs.
"
#: templates/wagtailsearch/editorspicks/add.html:27
#: templates/wagtailsearch/editorspicks/edit.html:19
@@ -97,10 +74,9 @@ msgid "Delete"
msgstr "Șterge"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:9
-msgid "Are you sure you want to delete all editors picks for this search term?"
-msgstr ""
-"Sigur doriți să ștergeți toate selecțiile editoriale pentru acest termen de "
-"căutare?"
+msgid ""
+"Are you sure you want to delete all editors picks for this search term?"
+msgstr "Sigur doriți să ștergeți toate selecțiile editoriale pentru acest termen de căutare?"
#: templates/wagtailsearch/editorspicks/confirm_delete.html:12
msgid "Yes, delete"
@@ -154,31 +130,21 @@ msgid_plural ""
"\n"
" There are %(counter)s matches\n"
" "
-msgstr[0] ""
-"\n"
-"Există o potrivire"
-msgstr[1] ""
-"\n"
-"Sunt %(counter)s potriviri"
-msgstr[2] ""
-"\n"
-"Sunt %(counter)s potriviri"
+msgstr[0] "\nExistă o potrivire"
+msgstr[1] "\nSunt %(counter)s potriviri"
+msgstr[2] "\nSunt %(counter)s potriviri"
#: templates/wagtailsearch/editorspicks/results.html:18
#, python-format
msgid "Sorry, no editor's picks match \"%(query_string)s\""
-msgstr ""
-"Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o "
-"selecție editorială"
+msgstr "Ne pare rău, \"%(query_string)s\" nu se potrivește cu nici o selecție editorială"
#: templates/wagtailsearch/editorspicks/results.html:21
#, python-format
msgid ""
-"No editor's picks have been created. Why not add one?"
-msgstr ""
-"Nu a fost creată nici o selecție editorială. De ce să nu adăugați una?"
+"No editor's picks have been created. Why not add one?"
+msgstr "Nu a fost creată nici o selecție editorială. De ce să nu adăugați una?"
#: templates/wagtailsearch/editorspicks/includes/editorspicks_form.html:4
msgid "Move up"
diff --git a/wagtail/wagtailsearch/locale/zh/LC_MESSAGES/django.po b/wagtail/wagtailsearch/locale/zh/LC_MESSAGES/django.po
index d79ced30a..0d7561367 100644
--- a/wagtail/wagtailsearch/locale/zh/LC_MESSAGES/django.po
+++ b/wagtail/wagtailsearch/locale/zh/LC_MESSAGES/django.po
@@ -1,21 +1,20 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-01 16:39+0100\n"
-"PO-Revision-Date: 2014-03-14 21:12+0000\n"
-"Last-Translator: serafeim \n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/"
-"zh/)\n"
-"Language: zh\n"
+"PO-Revision-Date: 2014-08-01 15:43+0000\n"
+"Last-Translator: Karl Hobley \n"
+"Language-Team: Chinese (http://www.transifex.com/projects/p/wagtail/language/zh/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: forms.py:9
@@ -27,10 +26,7 @@ msgid ""
"Enter the full search string to match. An \n"
" exact match is required for your Editors Picks to be \n"
" displayed, wildcards are NOT allowed."
-msgstr ""
-"输入完整的字符来匹配. \n"
-" 必须输入完全一样的编辑精选进行匹配 \n"
-" 不允许匹配"
+msgstr "输入完整的字符来匹配. \n 必须输入完全一样的编辑精选进行匹配 \n 不允许匹配"
#: forms.py:36
msgid "Please specify at least one recommendation for this search term."
@@ -46,34 +42,18 @@ msgid "Add editor's pick"
msgstr "添加编辑精选"
#: templates/wagtailsearch/editorspicks/add.html:10
-#, fuzzy
msgid ""
"\n"
-"
Editors picks are a means of recommending specific pages "
-"that might not organically come high up in search results. E.g recommending "
-"your primary donation page to a user searching with a less common term like "
-"\"giving\".
\n"
+"
Editors picks are a means of recommending specific pages that might not organically come high up in search results. E.g recommending your primary donation page to a user searching with a less common term like \"giving\".
The \"Search term(s)/phrase\" field below must contain "
-"the full and exact search for which you wish to provide recommended results, "
-"including any misspellings/user error. To help, you can choose from "
-"search terms that have been popular with users of your site.
\n"
+"
The \"Search term(s)/phrase\" field below must contain the full and exact search for which you wish to provide recommended results, including any misspellings/user error. To help, you can choose from search terms that have been popular with users of your site.