diff --git a/.tx/config b/.tx/config index 84719c7fc..2ae6c184a 100644 --- a/.tx/config +++ b/.tx/config @@ -1,6 +1,42 @@ [main] host = https://www.transifex.com +[wagtail.wagtailadmin] +file_filter = wagtail/wagtailadmin/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + +[wagtail.wagtailcore] +file_filter = wagtail/wagtailcore/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtailcore/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + +[wagtail.wagtaildocs] +file_filter = wagtail/wagtaildocs/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtaildocs/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + +[wagtail.wagtailimages] +file_filter = wagtail/wagtailimages/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtailimages/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + +[wagtail.wagtailembeds] +file_filter = wagtail/wagtailembeds/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtailembeds/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + +[wagtail.wagtailredirects] +file_filter = wagtail/wagtailredirects/locale//LC_MESSAGES/django.po +source_file = wagtail/wagtailredirects/locale/en/LC_MESSAGES/django.po +source_lang = en +type = PO + [wagtail.wagtailsearch] file_filter = wagtail/wagtailsearch/locale//LC_MESSAGES/django.po source_file = wagtail/wagtailsearch/locale/en/LC_MESSAGES/django.po diff --git a/docs/contributing.rst b/docs/contributing.rst index a75fd9cb9..feb3b96f8 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -17,6 +17,15 @@ Coding guidelines * PEP8. We ask that all Python contributions adhere to the `PEP8 `_ style guide, apart from the restriction on line length (E501). The `pep8 tool `_ makes it easy to check your code, e.g. ``pep8 --ignore=E501 your_file.py``. * Tests. Wagtail has a suite of tests, which we are committed to improving and expanding. We run continuous integration at `travis-ci.org/torchbox/wagtail `_ to ensure that no commits or pull requests introduce test failures. If your contributions add functionality to Wagtail, please include the additional tests to cover it; if your contributions alter existing functionality, please update the relevant tests accordingly. +Translations +~~~~~~~~~~~~ + +Wagtail has internationalisation support so if you are fluent in a non-English language you can contribute by localising the interface. + +Our preferred way to submit or contribute to a language translation is via `Transifex `_. + +If you do not want to use Transifex we also welcome pull requests of ``django.po`` files for any of the Wagtail modules. + Other contributions ~~~~~~~~~~~~~~~~~~~ diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst index 4d716dc32..a1cba7bbe 100644 --- a/docs/gettingstarted.rst +++ b/docs/gettingstarted.rst @@ -53,7 +53,6 @@ run the following commands:: createdb -Upostgres wagtaildemo ./manage.py syncdb ./manage.py migrate - ./manage.py createsuperuser ./manage.py runserver SQLite support diff --git a/wagtail/wagtailadmin/edit_handlers.py b/wagtail/wagtailadmin/edit_handlers.py index 3c23e844e..8d3f23164 100644 --- a/wagtail/wagtailadmin/edit_handlers.py +++ b/wagtail/wagtailadmin/edit_handlers.py @@ -15,6 +15,7 @@ from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured, ValidationError from django.core.urlresolvers import reverse from django.conf import settings +from django.utils.translation import ugettext as _, ugettext_lazy as __ from wagtail.wagtailcore.models import Page from wagtail.wagtailcore.util import camelcase_to_underscore @@ -76,7 +77,7 @@ class FriendlyTimeField(forms.CharField): return datetime.time(hour=hour, minute=minute) else: - raise ValidationError("Please type a valid time") + raise ValidationError(_("Please type a valid time")) class LocalizedDateInput(forms.DateInput): @@ -125,11 +126,11 @@ class LocalizedTimeField(forms.CharField): else: minute = 0 if hour>=24 or hour < 0 or minute >=60 or minute < 0: - raise ValidationError("Please type a valid time") + raise ValidationError(_("Please type a valid time")) return datetime.time(hour=hour, minute=minute) else: - raise ValidationError("Please type a valid time") + raise ValidationError(_("Please type a valid time") ) if hasattr(settings, 'USE_L10N') and settings.USE_L10N==True: @@ -719,5 +720,5 @@ Page.promote_panels = [ FieldPanel('seo_title'), FieldPanel('show_in_menus'), FieldPanel('search_description'), - ], 'Common page configuration'), + ], __('Common page configuration')), ] diff --git a/wagtail/wagtailadmin/forms.py b/wagtail/wagtailadmin/forms.py index 7e7b71517..4262cae76 100644 --- a/wagtail/wagtailadmin/forms.py +++ b/wagtail/wagtailadmin/forms.py @@ -1,8 +1,7 @@ -from django.utils.translation import ugettext, ugettext_lazy as _ 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 _, ugettext_lazy as __ class SearchForm(forms.Form): def __init__(self, *args, **kwargs): @@ -10,7 +9,7 @@ class SearchForm(forms.Form): super(SearchForm, self).__init__(*args, **kwargs) self.fields['q'].widget.attrs = {'placeholder': 'Search ' + placeholder_suffix} - q = forms.CharField(label="Search term", widget=forms.TextInput()) + q = forms.CharField(label=_("Search term"), widget=forms.TextInput()) class ExternalLinkChooserForm(forms.Form): @@ -34,10 +33,10 @@ class EmailLinkChooserWithLinkTextForm(forms.Form): class LoginForm(AuthenticationForm): username = forms.CharField( max_length=254, - widget=forms.TextInput(attrs={'placeholder': "Enter your username"}), + widget=forms.TextInput(attrs={'placeholder': __("Enter your username")}), ) password = forms.CharField( - widget=forms.PasswordInput(attrs={'placeholder': "Enter password"}), + widget=forms.PasswordInput(attrs={'placeholder': __("Enter password")}), ) @@ -51,7 +50,7 @@ class PasswordResetForm(PasswordResetForm): UserModel = get_user_model() email = cleaned_data.get('email') if not email: - raise forms.ValidationError("Please fill your email address.") + raise forms.ValidationError(_("Please fill your email address.")) active_users = UserModel._default_manager.filter(email__iexact=email, is_active=True) if active_users.exists(): @@ -64,9 +63,9 @@ class PasswordResetForm(PasswordResetForm): if not found_non_ldap_user: # All found users are LDAP users, give error message - raise forms.ValidationError("Sorry, you cannot reset your password here as your user account is managed by another server.") + raise forms.ValidationError(_("Sorry, you cannot reset your password here as your user account is managed by another server.")) else: # No user accounts exist - raise forms.ValidationError("This email address is not recognised.") + raise forms.ValidationError(_("This email address is not recognised.")) return cleaned_data diff --git a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.mo b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.mo new file mode 100644 index 000000000..b54533b6d Binary files /dev/null and b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.mo differ diff --git a/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po new file mode 100644 index 000000000..dd6ca5e07 --- /dev/null +++ b/wagtail/wagtailadmin/locale/el/LC_MESSAGES/django.po @@ -0,0 +1,780 @@ +# 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-02-21 17:37+0200\n" +"PO-Revision-Date: 2014-02-21 15:50+0000\n" +"Last-Translator: serafeim \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:80 .\edit_handlers.py:129 .\edit_handlers.py:133 +msgid "Please type a valid time" +msgstr "" + +#: .\forms.py:12 +msgid "Search term" +msgstr "" + +#: .\forms.py:44 +msgid "Enter your email address to reset your password" +msgstr "" + +#: .\forms.py:53 +msgid "Please fill your email address." +msgstr "" + +#: .\forms.py:66 +msgid "" +"Sorry, you cannot reset your password here as your user account is managed " +"by another server." +msgstr "" + +#: .\forms.py:69 +msgid "This email address is not recognised." +msgstr "" + +#: .\templates\wagtailadmin\base.html:7 .\templates\wagtailadmin\home.html:4 +msgid "Dashboard" +msgstr "" + +#: .\templates\wagtailadmin\home.html:22 +#, python-format +msgid "Welcome to the %(site_name)s Wagtail CMS" +msgstr "" + +#: .\templates\wagtailadmin\home.html:33 +msgid "" +"This is your dashboard on which helpful information about content you've " +"created will be displayed." +msgstr "" + +#: .\templates\wagtailadmin\login.html:18 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\login.html:55 +msgid "\"Sign in" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:4 +msgid "Account" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:11 +msgid "Set gravatar" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:15 +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 "" + +#: .\templates\wagtailadmin\account\account.html:23 +msgid "Change password" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:27 +msgid "Change the password you use to log in." +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:16 +msgid "Change" +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:19 +msgid "" +"Your password can't be changed here. Please contact a site administrator." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:42 +#: .\templates\wagtailadmin\account\password_reset\done.html:4 +#: .\templates\wagtailadmin\account\password_reset\form.html:37 +msgid "Reset password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:15 +msgid "Password change successful" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:16 +msgid "Login" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:26 +msgid "Set your new password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:19 +msgid "The passwords do not match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:15 +msgid "Check your email" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:16 +msgid "A link to reset your password has been emailed to you." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email.txt:2 +msgid "Please follow the link below to reset your password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email_subject.txt:2 +msgid "Password reset" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\form.html:27 +msgid "Reset your password" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:5 +#: .\templates\wagtailadmin\chooser\_link_types.html:7 +msgid "Internal link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:11 +#: .\templates\wagtailadmin\chooser\_link_types.html:13 +msgid "External link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:17 +#: .\templates\wagtailadmin\chooser\_link_types.html:19 +msgid "Email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_form.html:7 +#: .\templates\wagtailadmin\pages\search.html:3 +#: .\templates\wagtailadmin\pages\search.html:16 +msgid "Search" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:3 +msgid "Explorer" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:5 +#: .\templates\wagtailadmin\pages\index.html:15 +#: .\templates\wagtailadmin\pages\move_choose_destination.html:10 +msgid "Home" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:13 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\chooser\browse.html:2 +#: .\templates\wagtailadmin\chooser\search.html:2 +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:13 +msgid "Choose a page" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:2 +msgid "Add an email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:14 +#: .\templates\wagtailadmin\chooser\external_link.html:14 +msgid "Insert link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\external_link.html:2 +msgid "Add an external link" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:20 +msgid "Clear choice" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:22 +msgid "Choose another item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:27 +msgid "Choose an item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:5 +msgid "Move up" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:6 +msgid "Move down" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:8 +#: .\templates\wagtailadmin\pages\confirm_delete.html:7 +#: .\templates\wagtailadmin\pages\edit.html:36 +#: .\templates\wagtailadmin\pages\list.html:68 +#: .\templates\wagtailadmin\pages\list.html:189 +msgid "Delete" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:12 +msgid "Choose another page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:5 +msgid "Pages awaiting moderation" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:13 +#: .\templates\wagtailadmin\home\recent_edits.html:12 +#: .\templates\wagtailadmin\pages\list.html:102 +msgid "Title" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:14 +#: .\templates\wagtailadmin\pages\list.html:22 +msgid "Parent" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:15 +#: .\templates\wagtailadmin\home\recent_edits.html:13 +msgid "Date" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:16 +msgid "Author" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:23 +#: .\templates\wagtailadmin\home\recent_edits.html:21 +#: .\templates\wagtailadmin\pages\list.html:168 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit this page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:28 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:12 +msgid "Approve" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:34 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:17 +msgid "Reject" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:38 +#: .\templates\wagtailadmin\pages\create.html:23 +#: .\templates\wagtailadmin\pages\edit.html:42 +msgid "Preview" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:5 +msgid "Your most recent edits" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:14 +#: .\templates\wagtailadmin\pages\list.html:25 +#: .\templates\wagtailadmin\pages\list.html:129 +msgid "Status" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:25 +#: .\templates\wagtailadmin\pages\list.html:59 +#: .\templates\wagtailadmin\pages\list.html:180 +msgid "View draft" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:28 +#: .\templates\wagtailadmin\pages\list.html:62 +#: .\templates\wagtailadmin\pages\list.html:183 +msgid "View live" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:3 +msgid "Site summary" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:6 +#, python-format +msgid "" +"\n" +" %(total_pages)s Page\n" +" " +msgid_plural "" +"\n" +" %(total_pages)s Pages\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\home\site_summary.html:13 +#, python-format +msgid "" +"\n" +" %(total_images)s Image\n" +" " +msgid_plural "" +"\n" +" %(total_images)s Images\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\home\site_summary.html:20 +#, python-format +msgid "" +"\n" +" %(total_docs)s Document\n" +" " +msgid_plural "" +"\n" +" %(total_docs)s Documents\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\notifications\approved.html:1 +#, python-format +msgid "The page \"%(title)s\" has been approved" +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:2 +#, python-format +msgid "The page \"%(title)s\" has been approved." +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:4 +msgid "You can view the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:1 +#, python-format +msgid "The page \"%(title)s\" has been rejected" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:2 +#, python-format +msgid "The page \"%(title)s\" has been rejected." +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:4 +#: .\templates\wagtailadmin\notifications\submitted.html:5 +msgid "You can edit the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:1 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:2 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation." +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:4 +msgid "You can preview the page here:" +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:4 +#, python-format +msgid "" +"\n" +" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:9 +#: .\templates\wagtailadmin\pages\list.html:56 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:6 +#, python-format +msgid "Create a page in %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:9 +msgid "Create a page in" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:13 +msgid "Choose which type of page you'd like to create." +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:3 +#, python-format +msgid "Delete %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:12 +msgid "Are you sure you want to delete this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:14 +#, python-format +msgid "" +"\n" +" This will also delete one more subpage.\n" +" " +msgid_plural "" +"\n" +" This will also delete %(descendant_count)s more subpages.\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\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 "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Delete it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:3 +#, python-format +msgid "Move %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:6 +#: .\templates\wagtailadmin\pages\list.html:65 +#: .\templates\wagtailadmin\pages\list.html:186 +msgid "Move" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:11 +#, python-format +msgid "Are you sure you want to move this page into '%(destination.title)s'?" +msgstr "" + +#: .\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 " +"'%(destination.title)s'?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:18 +msgid "Yes, move this page" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:3 +#, python-format +msgid "Unpublish %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:6 +#: .\templates\wagtailadmin\pages\edit.html:33 +#: .\templates\wagtailadmin\pages\list.html:71 +#: .\templates\wagtailadmin\pages\list.html:192 +msgid "Unpublish" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:10 +msgid "Are you sure you want to unpublish this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:13 +msgid "Yes, unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\content_type_use.html:7 +msgid "Pages using" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:5 +#, python-format +msgid "New %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:20 +msgid "Save as draft" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:25 +#: .\templates\wagtailadmin\pages\edit.html:39 +msgid "Publish" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:27 +#: .\templates\wagtailadmin\pages\edit.html:41 +msgid "Submit for moderation" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:5 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:12 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:15 +msgid "Status:" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:52 +#, python-format +msgid "Last modified: %(last_mod)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:54 +#, python-format +msgid "by %(modified_by)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\index.html:4 +#, python-format +msgid "Exploring %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:24 +#: .\templates\wagtailadmin\pages\list.html:117 +msgid "Type" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:53 +#: .\templates\wagtailadmin\pages\list.html:195 +msgid "Add child page" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +msgid "Disable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Order" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Enable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:150 +msgid "Drag" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#, python-format +msgid "Explorer subpages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#: .\templates\wagtailadmin\pages\list.html:223 +msgid "Explore" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:223 +#, python-format +msgid "Explorer child pages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +#, python-format +msgid "Add a child page to '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +msgid "Add subpage" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +msgid "No pages have been created." +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +#, python-format +msgid "Why not add one?" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:3 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:7 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:6 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\pages\search_results.html:17 +#, python-format +msgid "" +"\n" +" Page %(page_number)s of %(num_pages)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:24 +#: .\templates\wagtailadmin\pages\search_results.html:26 +#: .\templates\wagtailadmin\shared\pagination_nav.html:8 +#: .\templates\wagtailadmin\shared\pagination_nav.html:10 +#: .\templates\wagtailadmin\shared\pagination_nav.html:14 +msgid "Previous" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:33 +#: .\templates\wagtailadmin\pages\search_results.html:35 +#: .\templates\wagtailadmin\shared\pagination_nav.html:21 +#: .\templates\wagtailadmin\shared\pagination_nav.html:23 +#: .\templates\wagtailadmin\shared\pagination_nav.html:25 +msgid "Next" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:43 +#, python-format +msgid "Sorry, no pages match \"%(search_query)s\"" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:45 +msgid "Enter a search term above" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:3 +#, python-format +msgid "Where do you want to create a %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:5 +msgid "Where do you want to create this" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:3 +#: .\templates\wagtailadmin\pages\select_type.html:6 +msgid "Create a new page" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:10 +msgid "" +"Your new page will be saved in the top level of your website. You " +"can move it after saving." +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:15 +msgid "Account settings" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:20 +msgid "More" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:22 +msgid "Redirects" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:23 +msgid "Editors Picks" +msgstr "" + +#: .\templates\wagtailadmin\shared\pagination_nav.html:3 +#, python-format +msgid "Page %(page_num)s of %(total_pages)s." +msgstr "" + +#: .\views\account.py:23 +msgid "Your password has been changed successfully!" +msgstr "" + +#: .\views\pages.py:99 +msgid "Sorry, you do not have access to create a page of type '{0}'." +msgstr "" + +#: .\views\pages.py:103 +msgid "" +"Pages of this type can only be created as children of '{0}'. This " +"new page will be saved there." +msgstr "" + +#: .\views\pages.py:166 +msgid "This slug is already in use" +msgstr "" + +#: .\views\pages.py:187 .\views\pages.py:254 .\views\pages.py:589 +msgid "Page '{0}' published." +msgstr "" + +#: .\views\pages.py:189 .\views\pages.py:256 +msgid "Page '{0}' submitted for moderation." +msgstr "" + +#: .\views\pages.py:192 +msgid "Page '{0}' created." +msgstr "" + +#: .\views\pages.py:201 +msgid "The page could not be created due to errors." +msgstr "" + +#: .\views\pages.py:259 +msgid "Page '{0}' updated." +msgstr "" + +#: .\views\pages.py:268 +msgid "The page could not be saved due to validation errors" +msgstr "" + +#: .\views\pages.py:280 +msgid "This page is currently awaiting moderation" +msgstr "" + +#: .\views\pages.py:298 +msgid "Page '{0}' deleted." +msgstr "" + +#: .\views\pages.py:428 +msgid "Page '{0}' unpublished." +msgstr "" + +#: .\views\pages.py:479 +msgid "Page '{0}' moved." +msgstr "" + +#: .\views\pages.py:584 .\views\pages.py:602 .\views\pages.py:621 +msgid "The page '{0}' is not currently awaiting moderation." +msgstr "" + +#: .\views\pages.py:608 +msgid "Page '{0}' rejected for publication." +msgstr "" diff --git a/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.mo b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 000000000..b2e89ab2b Binary files /dev/null and b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.mo differ diff --git a/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po new file mode 100644 index 000000000..696f785af --- /dev/null +++ b/wagtail/wagtailadmin/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,781 @@ +# 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 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-21 17:37+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: .\edit_handlers.py:80 .\edit_handlers.py:129 .\edit_handlers.py:133 +msgid "Please type a valid time" +msgstr "" + +#: .\forms.py:12 +msgid "Search term" +msgstr "" + +#: .\forms.py:44 +msgid "Enter your email address to reset your password" +msgstr "" + +#: .\forms.py:53 +msgid "Please fill your email address." +msgstr "" + +#: .\forms.py:66 +msgid "" +"Sorry, you cannot reset your password here as your user account is managed " +"by another server." +msgstr "" + +#: .\forms.py:69 +msgid "This email address is not recognised." +msgstr "" + +#: .\templates\wagtailadmin\base.html:7 .\templates\wagtailadmin\home.html:4 +msgid "Dashboard" +msgstr "" + +#: .\templates\wagtailadmin\home.html:22 +#, python-format +msgid "Welcome to the %(site_name)s Wagtail CMS" +msgstr "" + +#: .\templates\wagtailadmin\home.html:33 +msgid "" +"This is your dashboard on which helpful information about content you've " +"created will be displayed." +msgstr "" + +#: .\templates\wagtailadmin\login.html:18 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\login.html:55 +msgid "\"Sign in" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:4 +msgid "Account" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:11 +msgid "Set gravatar" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:15 +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 "" + +#: .\templates\wagtailadmin\account\account.html:23 +msgid "Change password" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:27 +msgid "Change the password you use to log in." +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:16 +msgid "Change" +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:19 +msgid "" +"Your password can't be changed here. Please contact a site administrator." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:42 +#: .\templates\wagtailadmin\account\password_reset\done.html:4 +#: .\templates\wagtailadmin\account\password_reset\form.html:37 +msgid "Reset password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:15 +msgid "Password change successful" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:16 +msgid "Login" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:26 +msgid "Set your new password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:19 +msgid "The passwords do not match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:15 +msgid "Check your email" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:16 +msgid "A link to reset your password has been emailed to you." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email.txt:2 +msgid "Please follow the link below to reset your password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email_subject.txt:2 +msgid "Password reset" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\form.html:27 +msgid "Reset your password" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:5 +#: .\templates\wagtailadmin\chooser\_link_types.html:7 +msgid "Internal link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:11 +#: .\templates\wagtailadmin\chooser\_link_types.html:13 +msgid "External link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:17 +#: .\templates\wagtailadmin\chooser\_link_types.html:19 +msgid "Email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_form.html:7 +#: .\templates\wagtailadmin\pages\search.html:3 +#: .\templates\wagtailadmin\pages\search.html:16 +msgid "Search" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:3 +msgid "Explorer" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:5 +#: .\templates\wagtailadmin\pages\index.html:15 +#: .\templates\wagtailadmin\pages\move_choose_destination.html:10 +msgid "Home" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:13 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\chooser\browse.html:2 +#: .\templates\wagtailadmin\chooser\search.html:2 +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:13 +msgid "Choose a page" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:2 +msgid "Add an email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:14 +#: .\templates\wagtailadmin\chooser\external_link.html:14 +msgid "Insert link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\external_link.html:2 +msgid "Add an external link" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:20 +msgid "Clear choice" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:22 +msgid "Choose another item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:27 +msgid "Choose an item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:5 +msgid "Move up" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:6 +msgid "Move down" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:8 +#: .\templates\wagtailadmin\pages\confirm_delete.html:7 +#: .\templates\wagtailadmin\pages\edit.html:36 +#: .\templates\wagtailadmin\pages\list.html:68 +#: .\templates\wagtailadmin\pages\list.html:189 +msgid "Delete" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:12 +msgid "Choose another page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:5 +msgid "Pages awaiting moderation" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:13 +#: .\templates\wagtailadmin\home\recent_edits.html:12 +#: .\templates\wagtailadmin\pages\list.html:102 +msgid "Title" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:14 +#: .\templates\wagtailadmin\pages\list.html:22 +msgid "Parent" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:15 +#: .\templates\wagtailadmin\home\recent_edits.html:13 +msgid "Date" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:16 +msgid "Author" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:23 +#: .\templates\wagtailadmin\home\recent_edits.html:21 +#: .\templates\wagtailadmin\pages\list.html:168 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit this page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:28 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:12 +msgid "Approve" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:34 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:17 +msgid "Reject" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:38 +#: .\templates\wagtailadmin\pages\create.html:23 +#: .\templates\wagtailadmin\pages\edit.html:42 +msgid "Preview" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:5 +msgid "Your most recent edits" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:14 +#: .\templates\wagtailadmin\pages\list.html:25 +#: .\templates\wagtailadmin\pages\list.html:129 +msgid "Status" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:25 +#: .\templates\wagtailadmin\pages\list.html:59 +#: .\templates\wagtailadmin\pages\list.html:180 +msgid "View draft" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:28 +#: .\templates\wagtailadmin\pages\list.html:62 +#: .\templates\wagtailadmin\pages\list.html:183 +msgid "View live" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:3 +msgid "Site summary" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:6 +#, python-format +msgid "" +"\n" +" %(total_pages)s Page\n" +" " +msgid_plural "" +"\n" +" %(total_pages)s Pages\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\home\site_summary.html:13 +#, python-format +msgid "" +"\n" +" %(total_images)s Image\n" +" " +msgid_plural "" +"\n" +" %(total_images)s Images\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\home\site_summary.html:20 +#, python-format +msgid "" +"\n" +" %(total_docs)s Document\n" +" " +msgid_plural "" +"\n" +" %(total_docs)s Documents\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\notifications\approved.html:1 +#, python-format +msgid "The page \"%(title)s\" has been approved" +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:2 +#, python-format +msgid "The page \"%(title)s\" has been approved." +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:4 +msgid "You can view the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:1 +#, python-format +msgid "The page \"%(title)s\" has been rejected" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:2 +#, python-format +msgid "The page \"%(title)s\" has been rejected." +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:4 +#: .\templates\wagtailadmin\notifications\submitted.html:5 +msgid "You can edit the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:1 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:2 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation." +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:4 +msgid "You can preview the page here:" +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:4 +#, python-format +msgid "" +"\n" +" Previewing '%(title)s', submitted by %(submitted_by)s on %" +"(submitted_on)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:9 +#: .\templates\wagtailadmin\pages\list.html:56 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:6 +#, python-format +msgid "Create a page in %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:9 +msgid "Create a page in" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:13 +msgid "Choose which type of page you'd like to create." +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:3 +#, python-format +msgid "Delete %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:12 +msgid "Are you sure you want to delete this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:14 +#, python-format +msgid "" +"\n" +" This will also delete one more subpage.\n" +" " +msgid_plural "" +"\n" +" This will also delete %(descendant_count)s more " +"subpages.\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\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 "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Delete it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:3 +#, python-format +msgid "Move %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:6 +#: .\templates\wagtailadmin\pages\list.html:65 +#: .\templates\wagtailadmin\pages\list.html:186 +msgid "Move" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:11 +#, python-format +msgid "Are you sure you want to move this page into '%(destination.title)s'?" +msgstr "" + +#: .\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 '%" +"(destination.title)s'?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:18 +msgid "Yes, move this page" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:3 +#, python-format +msgid "Unpublish %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:6 +#: .\templates\wagtailadmin\pages\edit.html:33 +#: .\templates\wagtailadmin\pages\list.html:71 +#: .\templates\wagtailadmin\pages\list.html:192 +msgid "Unpublish" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:10 +msgid "Are you sure you want to unpublish this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:13 +msgid "Yes, unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\content_type_use.html:7 +msgid "Pages using" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:5 +#, python-format +msgid "New %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:20 +msgid "Save as draft" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:25 +#: .\templates\wagtailadmin\pages\edit.html:39 +msgid "Publish" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:27 +#: .\templates\wagtailadmin\pages\edit.html:41 +msgid "Submit for moderation" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:5 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:12 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:15 +msgid "Status:" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:52 +#, python-format +msgid "Last modified: %(last_mod)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:54 +#, python-format +msgid "by %(modified_by)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\index.html:4 +#, python-format +msgid "Exploring %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:24 +#: .\templates\wagtailadmin\pages\list.html:117 +msgid "Type" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:53 +#: .\templates\wagtailadmin\pages\list.html:195 +msgid "Add child page" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +msgid "Disable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Order" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Enable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:150 +msgid "Drag" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#, python-format +msgid "Explorer subpages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#: .\templates\wagtailadmin\pages\list.html:223 +msgid "Explore" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:223 +#, python-format +msgid "Explorer child pages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +#, python-format +msgid "Add a child page to '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +msgid "Add subpage" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +msgid "No pages have been created." +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +#, python-format +msgid "Why not add one?" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:3 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:7 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:6 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: .\templates\wagtailadmin\pages\search_results.html:17 +#, python-format +msgid "" +"\n" +" Page %(page_number)s of %(num_pages)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:24 +#: .\templates\wagtailadmin\pages\search_results.html:26 +#: .\templates\wagtailadmin\shared\pagination_nav.html:8 +#: .\templates\wagtailadmin\shared\pagination_nav.html:10 +#: .\templates\wagtailadmin\shared\pagination_nav.html:14 +msgid "Previous" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:33 +#: .\templates\wagtailadmin\pages\search_results.html:35 +#: .\templates\wagtailadmin\shared\pagination_nav.html:21 +#: .\templates\wagtailadmin\shared\pagination_nav.html:23 +#: .\templates\wagtailadmin\shared\pagination_nav.html:25 +msgid "Next" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:43 +#, python-format +msgid "Sorry, no pages match \"%(search_query)s\"" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:45 +msgid "Enter a search term above" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:3 +#, python-format +msgid "Where do you want to create a %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:5 +msgid "Where do you want to create this" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:3 +#: .\templates\wagtailadmin\pages\select_type.html:6 +msgid "Create a new page" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:10 +msgid "" +"Your new page will be saved in the top level of your website. You " +"can move it after saving." +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:15 +msgid "Account settings" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:20 +msgid "More" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:22 +msgid "Redirects" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:23 +msgid "Editors Picks" +msgstr "" + +#: .\templates\wagtailadmin\shared\pagination_nav.html:3 +#, python-format +msgid "Page %(page_num)s of %(total_pages)s." +msgstr "" + +#: .\views\account.py:23 +msgid "Your password has been changed successfully!" +msgstr "" + +#: .\views\pages.py:99 +msgid "Sorry, you do not have access to create a page of type '{0}'." +msgstr "" + +#: .\views\pages.py:103 +msgid "" +"Pages of this type can only be created as children of '{0}'. This " +"new page will be saved there." +msgstr "" + +#: .\views\pages.py:166 +msgid "This slug is already in use" +msgstr "" + +#: .\views\pages.py:187 .\views\pages.py:254 .\views\pages.py:589 +msgid "Page '{0}' published." +msgstr "" + +#: .\views\pages.py:189 .\views\pages.py:256 +msgid "Page '{0}' submitted for moderation." +msgstr "" + +#: .\views\pages.py:192 +msgid "Page '{0}' created." +msgstr "" + +#: .\views\pages.py:201 +msgid "The page could not be created due to errors." +msgstr "" + +#: .\views\pages.py:259 +msgid "Page '{0}' updated." +msgstr "" + +#: .\views\pages.py:268 +msgid "The page could not be saved due to validation errors" +msgstr "" + +#: .\views\pages.py:280 +msgid "This page is currently awaiting moderation" +msgstr "" + +#: .\views\pages.py:298 +msgid "Page '{0}' deleted." +msgstr "" + +#: .\views\pages.py:428 +msgid "Page '{0}' unpublished." +msgstr "" + +#: .\views\pages.py:479 +msgid "Page '{0}' moved." +msgstr "" + +#: .\views\pages.py:584 .\views\pages.py:602 .\views\pages.py:621 +msgid "The page '{0}' is not currently awaiting moderation." +msgstr "" + +#: .\views\pages.py:608 +msgid "Page '{0}' rejected for publication." +msgstr "" diff --git a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.mo b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 000000000..719ecfe2c Binary files /dev/null and b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.mo differ diff --git a/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 000000000..b5be00d7b --- /dev/null +++ b/wagtail/wagtailadmin/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,786 @@ +# 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-02-21 17:37+0200\n" +"PO-Revision-Date: 2014-02-21 15:50+0000\n" +"Last-Translator: serafeim \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" +"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:80 .\edit_handlers.py:129 .\edit_handlers.py:133 +msgid "Please type a valid time" +msgstr "" + +#: .\forms.py:12 +msgid "Search term" +msgstr "" + +#: .\forms.py:44 +msgid "Enter your email address to reset your password" +msgstr "" + +#: .\forms.py:53 +msgid "Please fill your email address." +msgstr "" + +#: .\forms.py:66 +msgid "" +"Sorry, you cannot reset your password here as your user account is managed " +"by another server." +msgstr "" + +#: .\forms.py:69 +msgid "This email address is not recognised." +msgstr "" + +#: .\templates\wagtailadmin\base.html:7 .\templates\wagtailadmin\home.html:4 +msgid "Dashboard" +msgstr "" + +#: .\templates\wagtailadmin\home.html:22 +#, python-format +msgid "Welcome to the %(site_name)s Wagtail CMS" +msgstr "" + +#: .\templates\wagtailadmin\home.html:33 +msgid "" +"This is your dashboard on which helpful information about content you've " +"created will be displayed." +msgstr "" + +#: .\templates\wagtailadmin\login.html:18 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\login.html:55 +msgid "\"Sign in" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:4 +msgid "Account" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:11 +msgid "Set gravatar" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:15 +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 "" + +#: .\templates\wagtailadmin\account\account.html:23 +msgid "Change password" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:27 +msgid "Change the password you use to log in." +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:16 +msgid "Change" +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:19 +msgid "" +"Your password can't be changed here. Please contact a site administrator." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:42 +#: .\templates\wagtailadmin\account\password_reset\done.html:4 +#: .\templates\wagtailadmin\account\password_reset\form.html:37 +msgid "Reset password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:15 +msgid "Password change successful" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:16 +msgid "Login" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:26 +msgid "Set your new password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:19 +msgid "The passwords do not match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:15 +msgid "Check your email" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:16 +msgid "A link to reset your password has been emailed to you." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email.txt:2 +msgid "Please follow the link below to reset your password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email_subject.txt:2 +msgid "Password reset" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\form.html:27 +msgid "Reset your password" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:5 +#: .\templates\wagtailadmin\chooser\_link_types.html:7 +msgid "Internal link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:11 +#: .\templates\wagtailadmin\chooser\_link_types.html:13 +msgid "External link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:17 +#: .\templates\wagtailadmin\chooser\_link_types.html:19 +msgid "Email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_form.html:7 +#: .\templates\wagtailadmin\pages\search.html:3 +#: .\templates\wagtailadmin\pages\search.html:16 +msgid "Search" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:3 +msgid "Explorer" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:5 +#: .\templates\wagtailadmin\pages\index.html:15 +#: .\templates\wagtailadmin\pages\move_choose_destination.html:10 +msgid "Home" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:13 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\chooser\browse.html:2 +#: .\templates\wagtailadmin\chooser\search.html:2 +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:13 +msgid "Choose a page" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:2 +msgid "Add an email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:14 +#: .\templates\wagtailadmin\chooser\external_link.html:14 +msgid "Insert link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\external_link.html:2 +msgid "Add an external link" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:20 +msgid "Clear choice" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:22 +msgid "Choose another item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:27 +msgid "Choose an item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:5 +msgid "Move up" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:6 +msgid "Move down" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:8 +#: .\templates\wagtailadmin\pages\confirm_delete.html:7 +#: .\templates\wagtailadmin\pages\edit.html:36 +#: .\templates\wagtailadmin\pages\list.html:68 +#: .\templates\wagtailadmin\pages\list.html:189 +msgid "Delete" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:12 +msgid "Choose another page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:5 +msgid "Pages awaiting moderation" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:13 +#: .\templates\wagtailadmin\home\recent_edits.html:12 +#: .\templates\wagtailadmin\pages\list.html:102 +msgid "Title" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:14 +#: .\templates\wagtailadmin\pages\list.html:22 +msgid "Parent" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:15 +#: .\templates\wagtailadmin\home\recent_edits.html:13 +msgid "Date" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:16 +msgid "Author" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:23 +#: .\templates\wagtailadmin\home\recent_edits.html:21 +#: .\templates\wagtailadmin\pages\list.html:168 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit this page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:28 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:12 +msgid "Approve" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:34 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:17 +msgid "Reject" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:38 +#: .\templates\wagtailadmin\pages\create.html:23 +#: .\templates\wagtailadmin\pages\edit.html:42 +msgid "Preview" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:5 +msgid "Your most recent edits" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:14 +#: .\templates\wagtailadmin\pages\list.html:25 +#: .\templates\wagtailadmin\pages\list.html:129 +msgid "Status" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:25 +#: .\templates\wagtailadmin\pages\list.html:59 +#: .\templates\wagtailadmin\pages\list.html:180 +msgid "View draft" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:28 +#: .\templates\wagtailadmin\pages\list.html:62 +#: .\templates\wagtailadmin\pages\list.html:183 +msgid "View live" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:3 +msgid "Site summary" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:6 +#, python-format +msgid "" +"\n" +" %(total_pages)s Page\n" +" " +msgid_plural "" +"\n" +" %(total_pages)s Pages\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\home\site_summary.html:13 +#, python-format +msgid "" +"\n" +" %(total_images)s Image\n" +" " +msgid_plural "" +"\n" +" %(total_images)s Images\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\home\site_summary.html:20 +#, python-format +msgid "" +"\n" +" %(total_docs)s Document\n" +" " +msgid_plural "" +"\n" +" %(total_docs)s Documents\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\notifications\approved.html:1 +#, python-format +msgid "The page \"%(title)s\" has been approved" +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:2 +#, python-format +msgid "The page \"%(title)s\" has been approved." +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:4 +msgid "You can view the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:1 +#, python-format +msgid "The page \"%(title)s\" has been rejected" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:2 +#, python-format +msgid "The page \"%(title)s\" has been rejected." +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:4 +#: .\templates\wagtailadmin\notifications\submitted.html:5 +msgid "You can edit the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:1 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:2 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation." +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:4 +msgid "You can preview the page here:" +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:4 +#, python-format +msgid "" +"\n" +" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:9 +#: .\templates\wagtailadmin\pages\list.html:56 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:6 +#, python-format +msgid "Create a page in %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:9 +msgid "Create a page in" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:13 +msgid "Choose which type of page you'd like to create." +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:3 +#, python-format +msgid "Delete %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:12 +msgid "Are you sure you want to delete this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:14 +#, python-format +msgid "" +"\n" +" This will also delete one more subpage.\n" +" " +msgid_plural "" +"\n" +" This will also delete %(descendant_count)s more subpages.\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\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 "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Delete it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:3 +#, python-format +msgid "Move %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:6 +#: .\templates\wagtailadmin\pages\list.html:65 +#: .\templates\wagtailadmin\pages\list.html:186 +msgid "Move" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:11 +#, python-format +msgid "Are you sure you want to move this page into '%(destination.title)s'?" +msgstr "" + +#: .\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 " +"'%(destination.title)s'?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:18 +msgid "Yes, move this page" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:3 +#, python-format +msgid "Unpublish %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:6 +#: .\templates\wagtailadmin\pages\edit.html:33 +#: .\templates\wagtailadmin\pages\list.html:71 +#: .\templates\wagtailadmin\pages\list.html:192 +msgid "Unpublish" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:10 +msgid "Are you sure you want to unpublish this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:13 +msgid "Yes, unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\content_type_use.html:7 +msgid "Pages using" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:5 +#, python-format +msgid "New %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:20 +msgid "Save as draft" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:25 +#: .\templates\wagtailadmin\pages\edit.html:39 +msgid "Publish" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:27 +#: .\templates\wagtailadmin\pages\edit.html:41 +msgid "Submit for moderation" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:5 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:12 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:15 +msgid "Status:" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:52 +#, python-format +msgid "Last modified: %(last_mod)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:54 +#, python-format +msgid "by %(modified_by)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\index.html:4 +#, python-format +msgid "Exploring %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:24 +#: .\templates\wagtailadmin\pages\list.html:117 +msgid "Type" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:53 +#: .\templates\wagtailadmin\pages\list.html:195 +msgid "Add child page" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +msgid "Disable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Order" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Enable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:150 +msgid "Drag" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#, python-format +msgid "Explorer subpages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#: .\templates\wagtailadmin\pages\list.html:223 +msgid "Explore" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:223 +#, python-format +msgid "Explorer child pages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +#, python-format +msgid "Add a child page to '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +msgid "Add subpage" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +msgid "No pages have been created." +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +#, python-format +msgid "Why not add one?" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:3 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:7 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:6 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\pages\search_results.html:17 +#, python-format +msgid "" +"\n" +" Page %(page_number)s of %(num_pages)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:24 +#: .\templates\wagtailadmin\pages\search_results.html:26 +#: .\templates\wagtailadmin\shared\pagination_nav.html:8 +#: .\templates\wagtailadmin\shared\pagination_nav.html:10 +#: .\templates\wagtailadmin\shared\pagination_nav.html:14 +msgid "Previous" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:33 +#: .\templates\wagtailadmin\pages\search_results.html:35 +#: .\templates\wagtailadmin\shared\pagination_nav.html:21 +#: .\templates\wagtailadmin\shared\pagination_nav.html:23 +#: .\templates\wagtailadmin\shared\pagination_nav.html:25 +msgid "Next" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:43 +#, python-format +msgid "Sorry, no pages match \"%(search_query)s\"" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:45 +msgid "Enter a search term above" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:3 +#, python-format +msgid "Where do you want to create a %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:5 +msgid "Where do you want to create this" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:3 +#: .\templates\wagtailadmin\pages\select_type.html:6 +msgid "Create a new page" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:10 +msgid "" +"Your new page will be saved in the top level of your website. You " +"can move it after saving." +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:15 +msgid "Account settings" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:20 +msgid "More" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:22 +msgid "Redirects" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:23 +msgid "Editors Picks" +msgstr "" + +#: .\templates\wagtailadmin\shared\pagination_nav.html:3 +#, python-format +msgid "Page %(page_num)s of %(total_pages)s." +msgstr "" + +#: .\views\account.py:23 +msgid "Your password has been changed successfully!" +msgstr "" + +#: .\views\pages.py:99 +msgid "Sorry, you do not have access to create a page of type '{0}'." +msgstr "" + +#: .\views\pages.py:103 +msgid "" +"Pages of this type can only be created as children of '{0}'. This " +"new page will be saved there." +msgstr "" + +#: .\views\pages.py:166 +msgid "This slug is already in use" +msgstr "" + +#: .\views\pages.py:187 .\views\pages.py:254 .\views\pages.py:589 +msgid "Page '{0}' published." +msgstr "" + +#: .\views\pages.py:189 .\views\pages.py:256 +msgid "Page '{0}' submitted for moderation." +msgstr "" + +#: .\views\pages.py:192 +msgid "Page '{0}' created." +msgstr "" + +#: .\views\pages.py:201 +msgid "The page could not be created due to errors." +msgstr "" + +#: .\views\pages.py:259 +msgid "Page '{0}' updated." +msgstr "" + +#: .\views\pages.py:268 +msgid "The page could not be saved due to validation errors" +msgstr "" + +#: .\views\pages.py:280 +msgid "This page is currently awaiting moderation" +msgstr "" + +#: .\views\pages.py:298 +msgid "Page '{0}' deleted." +msgstr "" + +#: .\views\pages.py:428 +msgid "Page '{0}' unpublished." +msgstr "" + +#: .\views\pages.py:479 +msgid "Page '{0}' moved." +msgstr "" + +#: .\views\pages.py:584 .\views\pages.py:602 .\views\pages.py:621 +msgid "The page '{0}' is not currently awaiting moderation." +msgstr "" + +#: .\views\pages.py:608 +msgid "Page '{0}' rejected for publication." +msgstr "" diff --git a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.mo b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.mo new file mode 100644 index 000000000..294254f3c Binary files /dev/null and b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.mo differ diff --git a/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po new file mode 100644 index 000000000..a86455890 --- /dev/null +++ b/wagtail/wagtailadmin/locale/ro/LC_MESSAGES/django.po @@ -0,0 +1,786 @@ +# 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-02-21 17:37+0200\n" +"PO-Revision-Date: 2014-02-21 15:50+0000\n" +"Last-Translator: serafeim \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" +"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:80 .\edit_handlers.py:129 .\edit_handlers.py:133 +msgid "Please type a valid time" +msgstr "" + +#: .\forms.py:12 +msgid "Search term" +msgstr "" + +#: .\forms.py:44 +msgid "Enter your email address to reset your password" +msgstr "" + +#: .\forms.py:53 +msgid "Please fill your email address." +msgstr "" + +#: .\forms.py:66 +msgid "" +"Sorry, you cannot reset your password here as your user account is managed " +"by another server." +msgstr "" + +#: .\forms.py:69 +msgid "This email address is not recognised." +msgstr "" + +#: .\templates\wagtailadmin\base.html:7 .\templates\wagtailadmin\home.html:4 +msgid "Dashboard" +msgstr "" + +#: .\templates\wagtailadmin\home.html:22 +#, python-format +msgid "Welcome to the %(site_name)s Wagtail CMS" +msgstr "" + +#: .\templates\wagtailadmin\home.html:33 +msgid "" +"This is your dashboard on which helpful information about content you've " +"created will be displayed." +msgstr "" + +#: .\templates\wagtailadmin\login.html:18 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\login.html:55 +msgid "\"Sign in" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:4 +msgid "Account" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:11 +msgid "Set gravatar" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:15 +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 "" + +#: .\templates\wagtailadmin\account\account.html:23 +msgid "Change password" +msgstr "" + +#: .\templates\wagtailadmin\account\account.html:27 +msgid "Change the password you use to log in." +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:16 +msgid "Change" +msgstr "" + +#: .\templates\wagtailadmin\account\change_password.html:19 +msgid "" +"Your password can't be changed here. Please contact a site administrator." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:42 +#: .\templates\wagtailadmin\account\password_reset\done.html:4 +#: .\templates\wagtailadmin\account\password_reset\form.html:37 +msgid "Reset password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:15 +msgid "Password change successful" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\complete.html:16 +msgid "Login" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:4 +#: .\templates\wagtailadmin\account\password_reset\confirm.html:26 +msgid "Set your new password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\confirm.html:19 +msgid "The passwords do not match. Please try again." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:15 +msgid "Check your email" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\done.html:16 +msgid "A link to reset your password has been emailed to you." +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email.txt:2 +msgid "Please follow the link below to reset your password" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\email_subject.txt:2 +msgid "Password reset" +msgstr "" + +#: .\templates\wagtailadmin\account\password_reset\form.html:27 +msgid "Reset your password" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:5 +#: .\templates\wagtailadmin\chooser\_link_types.html:7 +msgid "Internal link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:11 +#: .\templates\wagtailadmin\chooser\_link_types.html:13 +msgid "External link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_link_types.html:17 +#: .\templates\wagtailadmin\chooser\_link_types.html:19 +msgid "Email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_form.html:7 +#: .\templates\wagtailadmin\pages\search.html:3 +#: .\templates\wagtailadmin\pages\search.html:16 +msgid "Search" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:3 +msgid "Explorer" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:5 +#: .\templates\wagtailadmin\pages\index.html:15 +#: .\templates\wagtailadmin\pages\move_choose_destination.html:10 +msgid "Home" +msgstr "" + +#: .\templates\wagtailadmin\chooser\_search_results.html:13 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\chooser\browse.html:2 +#: .\templates\wagtailadmin\chooser\search.html:2 +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:13 +msgid "Choose a page" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:2 +msgid "Add an email link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\email_link.html:14 +#: .\templates\wagtailadmin\chooser\external_link.html:14 +msgid "Insert link" +msgstr "" + +#: .\templates\wagtailadmin\chooser\external_link.html:2 +msgid "Add an external link" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:20 +msgid "Clear choice" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:22 +msgid "Choose another item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\chooser_panel.html:27 +msgid "Choose an item" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:5 +msgid "Move up" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:6 +msgid "Move down" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\inline_panel_child.html:8 +#: .\templates\wagtailadmin\pages\confirm_delete.html:7 +#: .\templates\wagtailadmin\pages\edit.html:36 +#: .\templates\wagtailadmin\pages\list.html:68 +#: .\templates\wagtailadmin\pages\list.html:189 +msgid "Delete" +msgstr "" + +#: .\templates\wagtailadmin\edit_handlers\page_chooser_panel.html:12 +msgid "Choose another page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:5 +msgid "Pages awaiting moderation" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:13 +#: .\templates\wagtailadmin\home\recent_edits.html:12 +#: .\templates\wagtailadmin\pages\list.html:102 +msgid "Title" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:14 +#: .\templates\wagtailadmin\pages\list.html:22 +msgid "Parent" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:15 +#: .\templates\wagtailadmin\home\recent_edits.html:13 +msgid "Date" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:16 +msgid "Author" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:23 +#: .\templates\wagtailadmin\home\recent_edits.html:21 +#: .\templates\wagtailadmin\pages\list.html:168 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit this page" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:28 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:12 +msgid "Approve" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:34 +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:17 +msgid "Reject" +msgstr "" + +#: .\templates\wagtailadmin\home\pages_for_moderation.html:38 +#: .\templates\wagtailadmin\pages\create.html:23 +#: .\templates\wagtailadmin\pages\edit.html:42 +msgid "Preview" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:5 +msgid "Your most recent edits" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:14 +#: .\templates\wagtailadmin\pages\list.html:25 +#: .\templates\wagtailadmin\pages\list.html:129 +msgid "Status" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:25 +#: .\templates\wagtailadmin\pages\list.html:59 +#: .\templates\wagtailadmin\pages\list.html:180 +msgid "View draft" +msgstr "" + +#: .\templates\wagtailadmin\home\recent_edits.html:28 +#: .\templates\wagtailadmin\pages\list.html:62 +#: .\templates\wagtailadmin\pages\list.html:183 +msgid "View live" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:3 +msgid "Site summary" +msgstr "" + +#: .\templates\wagtailadmin\home\site_summary.html:6 +#, python-format +msgid "" +"\n" +" %(total_pages)s Page\n" +" " +msgid_plural "" +"\n" +" %(total_pages)s Pages\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\home\site_summary.html:13 +#, python-format +msgid "" +"\n" +" %(total_images)s Image\n" +" " +msgid_plural "" +"\n" +" %(total_images)s Images\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\home\site_summary.html:20 +#, python-format +msgid "" +"\n" +" %(total_docs)s Document\n" +" " +msgid_plural "" +"\n" +" %(total_docs)s Documents\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\notifications\approved.html:1 +#, python-format +msgid "The page \"%(title)s\" has been approved" +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:2 +#, python-format +msgid "The page \"%(title)s\" has been approved." +msgstr "" + +#: .\templates\wagtailadmin\notifications\approved.html:4 +msgid "You can view the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:1 +#, python-format +msgid "The page \"%(title)s\" has been rejected" +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:2 +#, python-format +msgid "The page \"%(title)s\" has been rejected." +msgstr "" + +#: .\templates\wagtailadmin\notifications\rejected.html:4 +#: .\templates\wagtailadmin\notifications\submitted.html:5 +msgid "You can edit the page here:" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:1 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation" +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:2 +#, python-format +msgid "The page \"%(page)s\" has been submitted for moderation." +msgstr "" + +#: .\templates\wagtailadmin\notifications\submitted.html:4 +msgid "You can preview the page here:" +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:4 +#, python-format +msgid "" +"\n" +" Previewing '%(title)s', submitted by %(submitted_by)s on %(submitted_on)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\_moderator_userbar.html:9 +#: .\templates\wagtailadmin\pages\list.html:56 +#: .\templates\wagtailadmin\pages\list.html:177 +msgid "Edit" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:6 +#, python-format +msgid "Create a page in %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:9 +msgid "Create a page in" +msgstr "" + +#: .\templates\wagtailadmin\pages\add_subpage.html:13 +msgid "Choose which type of page you'd like to create." +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:3 +#, python-format +msgid "Delete %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:12 +msgid "Are you sure you want to delete this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:14 +#, python-format +msgid "" +"\n" +" This will also delete one more subpage.\n" +" " +msgid_plural "" +"\n" +" This will also delete %(descendant_count)s more subpages.\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\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 "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Delete it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_delete.html:26 +msgid "Unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:3 +#, python-format +msgid "Move %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:6 +#: .\templates\wagtailadmin\pages\list.html:65 +#: .\templates\wagtailadmin\pages\list.html:186 +msgid "Move" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:11 +#, python-format +msgid "Are you sure you want to move this page into '%(destination.title)s'?" +msgstr "" + +#: .\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 " +"'%(destination.title)s'?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_move.html:18 +msgid "Yes, move this page" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:3 +#, python-format +msgid "Unpublish %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:6 +#: .\templates\wagtailadmin\pages\edit.html:33 +#: .\templates\wagtailadmin\pages\list.html:71 +#: .\templates\wagtailadmin\pages\list.html:192 +msgid "Unpublish" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:10 +msgid "Are you sure you want to unpublish this page?" +msgstr "" + +#: .\templates\wagtailadmin\pages\confirm_unpublish.html:13 +msgid "Yes, unpublish it" +msgstr "" + +#: .\templates\wagtailadmin\pages\content_type_use.html:7 +msgid "Pages using" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:5 +#, python-format +msgid "New %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:20 +msgid "Save as draft" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:25 +#: .\templates\wagtailadmin\pages\edit.html:39 +msgid "Publish" +msgstr "" + +#: .\templates\wagtailadmin\pages\create.html:27 +#: .\templates\wagtailadmin\pages\edit.html:41 +msgid "Submit for moderation" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:5 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:12 +#, python-format +msgid "Editing %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:15 +msgid "Status:" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:52 +#, python-format +msgid "Last modified: %(last_mod)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\edit.html:54 +#, python-format +msgid "by %(modified_by)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\index.html:4 +#, python-format +msgid "Exploring %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:24 +#: .\templates\wagtailadmin\pages\list.html:117 +msgid "Type" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:53 +#: .\templates\wagtailadmin\pages\list.html:195 +msgid "Add child page" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +msgid "Disable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:95 +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Order" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:97 +msgid "Enable ordering of child pages" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:150 +msgid "Drag" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#, python-format +msgid "Explorer subpages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:215 +#: .\templates\wagtailadmin\pages\list.html:219 +#: .\templates\wagtailadmin\pages\list.html:223 +msgid "Explore" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:223 +#, python-format +msgid "Explorer child pages of '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +#, python-format +msgid "Add a child page to '%(title)s'" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:225 +msgid "Add subpage" +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +msgid "No pages have been created." +msgstr "" + +#: .\templates\wagtailadmin\pages\list.html:234 +#, python-format +msgid "Why not add one?" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:3 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\move_choose_destination.html:7 +#, python-format +msgid "Select a new parent page for %(title)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:6 +#, python-format +msgid "" +"\n" +" There is one match\n" +" " +msgid_plural "" +"\n" +" There are %(counter)s matches\n" +" " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: .\templates\wagtailadmin\pages\search_results.html:17 +#, python-format +msgid "" +"\n" +" Page %(page_number)s of %(num_pages)s.\n" +" " +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:24 +#: .\templates\wagtailadmin\pages\search_results.html:26 +#: .\templates\wagtailadmin\shared\pagination_nav.html:8 +#: .\templates\wagtailadmin\shared\pagination_nav.html:10 +#: .\templates\wagtailadmin\shared\pagination_nav.html:14 +msgid "Previous" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:33 +#: .\templates\wagtailadmin\pages\search_results.html:35 +#: .\templates\wagtailadmin\shared\pagination_nav.html:21 +#: .\templates\wagtailadmin\shared\pagination_nav.html:23 +#: .\templates\wagtailadmin\shared\pagination_nav.html:25 +msgid "Next" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:43 +#, python-format +msgid "Sorry, no pages match \"%(search_query)s\"" +msgstr "" + +#: .\templates\wagtailadmin\pages\search_results.html:45 +msgid "Enter a search term above" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:3 +#, python-format +msgid "Where do you want to create a %(page_type)s" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_location.html:5 +msgid "Where do you want to create this" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:3 +#: .\templates\wagtailadmin\pages\select_type.html:6 +msgid "Create a new page" +msgstr "" + +#: .\templates\wagtailadmin\pages\select_type.html:10 +msgid "" +"Your new page will be saved in the top level of your website. You " +"can move it after saving." +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:15 +msgid "Account settings" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:20 +msgid "More" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:22 +msgid "Redirects" +msgstr "" + +#: .\templates\wagtailadmin\shared\main_nav.html:23 +msgid "Editors Picks" +msgstr "" + +#: .\templates\wagtailadmin\shared\pagination_nav.html:3 +#, python-format +msgid "Page %(page_num)s of %(total_pages)s." +msgstr "" + +#: .\views\account.py:23 +msgid "Your password has been changed successfully!" +msgstr "" + +#: .\views\pages.py:99 +msgid "Sorry, you do not have access to create a page of type '{0}'." +msgstr "" + +#: .\views\pages.py:103 +msgid "" +"Pages of this type can only be created as children of '{0}'. This " +"new page will be saved there." +msgstr "" + +#: .\views\pages.py:166 +msgid "This slug is already in use" +msgstr "" + +#: .\views\pages.py:187 .\views\pages.py:254 .\views\pages.py:589 +msgid "Page '{0}' published." +msgstr "" + +#: .\views\pages.py:189 .\views\pages.py:256 +msgid "Page '{0}' submitted for moderation." +msgstr "" + +#: .\views\pages.py:192 +msgid "Page '{0}' created." +msgstr "" + +#: .\views\pages.py:201 +msgid "The page could not be created due to errors." +msgstr "" + +#: .\views\pages.py:259 +msgid "Page '{0}' updated." +msgstr "" + +#: .\views\pages.py:268 +msgid "The page could not be saved due to validation errors" +msgstr "" + +#: .\views\pages.py:280 +msgid "This page is currently awaiting moderation" +msgstr "" + +#: .\views\pages.py:298 +msgid "Page '{0}' deleted." +msgstr "" + +#: .\views\pages.py:428 +msgid "Page '{0}' unpublished." +msgstr "" + +#: .\views\pages.py:479 +msgid "Page '{0}' moved." +msgstr "" + +#: .\views\pages.py:584 .\views\pages.py:602 .\views\pages.py:621 +msgid "The page '{0}' is not currently awaiting moderation." +msgstr "" + +#: .\views\pages.py:608 +msgid "Page '{0}' rejected for publication." +msgstr "" diff --git a/wagtail/wagtailadmin/static/wagtailadmin/css/components/formatters.less b/wagtail/wagtailadmin/static/wagtailadmin/css/components/formatters.less index 6ac54a3ea..54283e877 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/css/components/formatters.less +++ b/wagtail/wagtailadmin/static/wagtailadmin/css/components/formatters.less @@ -122,7 +122,7 @@ -webkit-font-smoothing: auto; font-size:0.80em; margin:0 0.5em; - background:white url(~"@{static-root}bg-dark-diag.svg"); + background:white url("@{static-root}bg-dark-diag.svg"); &.primary{ color:@color-grey-2; diff --git a/wagtail/wagtailadmin/static/wagtailadmin/css/components/icons.less b/wagtail/wagtailadmin/static/wagtailadmin/css/components/icons.less index e70150eb1..01ae80be3 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/css/components/icons.less +++ b/wagtail/wagtailadmin/static/wagtailadmin/css/components/icons.less @@ -12,7 +12,7 @@ @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'wagtail'; - src: url("@{css-root}fonts/wagtail.svg#wagtail") format("svg"), + src: url("@{css-root}fonts/wagtail.svg#wagtail") format("svg"); } } @@ -60,7 +60,7 @@ } -.icon-cogs:before, { +.icon-cogs:before { content: "a"; } .icon-doc-empty-inverse:before { diff --git a/wagtail/wagtailadmin/static/wagtailadmin/css/layouts/page-editor.less b/wagtail/wagtailadmin/static/wagtailadmin/css/layouts/page-editor.less index 69985f606..ebddbecfe 100644 --- a/wagtail/wagtailadmin/static/wagtailadmin/css/layouts/page-editor.less +++ b/wagtail/wagtailadmin/static/wagtailadmin/css/layouts/page-editor.less @@ -6,7 +6,7 @@ } .objects{ - background:url(~"@{static-root}bg-dark-diag.svg"); + background:url("@{static-root}bg-dark-diag.svg"); } .object{ position:relative; diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/account.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/account.html index ce1a176ee..90f803350 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/account.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/account.html @@ -1,28 +1,30 @@ {% extends "wagtailadmin/base.html" %} - +{% load i18n %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Account" %} + {% trans "Account" as account_str %} + {% include "wagtailadmin/shared/header.html" with title=account_str %}
  • - 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. + {% trans "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." %} +
  • {% if show_change_password %}
  • - Change the password you use to log in. + {% trans "Change the password you use to log in." %}
  • {% endif %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/change_password.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/change_password.html index 04fb708e5..060da0264 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/change_password.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/change_password.html @@ -1,7 +1,8 @@ {% extends "wagtailadmin/base.html" %} - +{% load i18n %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Change password" %} + {% trans "Change password" as change_str + {% include "wagtailadmin/shared/header.html" with title=change_str %}
    {% if can_change_password %} @@ -12,10 +13,10 @@ {% include "wagtailadmin/shared/field_as_li.html" with field=field %} {% endfor %}
- + {% else %} -

Your password can't be changed here. Please contact a site administrator.

+

{% trans "Your password can't be changed here. Please contact a site administrator." %}

{% endif %}
{% endblock %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/complete.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/complete.html index 68537aba4..dd8e4102a 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/complete.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/complete.html @@ -1,6 +1,7 @@ {% extends "wagtailadmin/skeleton.html" %} {% load compress %} -{% block titletag %}Reset password{% endblock %} +{% load i18n %} +{% block titletag %}{% trans "Reset password" %}{% endblock %} {% block bodyclass %}login{% endblock %} {% block extra_css %} @@ -11,7 +12,7 @@ {% block furniture %}
-

Password change successful

-

Login

+

{% trans "Password change successful" %}

+

{% trans "Login" %}

{% endblock %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/confirm.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/confirm.html index 966ca0dba..c2366f4ed 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/confirm.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/confirm.html @@ -1,6 +1,7 @@ {% extends "wagtailadmin/skeleton.html" %} {% load compress %} -{% block titletag %}Set your new password{% endblock %} +{% load i18n %} +{% block titletag %}{% trans "Set your new password" %}{% endblock %} {% block bodyclass %}login{% endblock %} {% block extra_css %} @@ -15,14 +16,14 @@ {% if form.errors %}
    -
  • The passwords do not match. Please try again.
  • +
  • {% trans "The passwords do not match. Please try again." %}
{% endif %}
{% csrf_token %} -

Set your new password

+

{% trans "Set your new password" %}

  • @@ -38,7 +39,7 @@
  • - +
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/done.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/done.html index d9df715b1..16e6d0c89 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/done.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/done.html @@ -1,6 +1,7 @@ {% extends "wagtailadmin/skeleton.html" %} +{% load i18n %} {% load compress %} -{% block titletag %}Reset password{% endblock %} +{% block titletag %}{% trans "Reset password" %}{% endblock %} {% block bodyclass %}login{% endblock %} {% block extra_css %} @@ -11,7 +12,7 @@ {% block furniture %}
-

Check your email

-

A link to reset your password has been emailed to you.

+

{% trans "Check your email" %}

+

{% trans "A link to reset your password has been emailed to you." %}

{% endblock %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email.txt b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email.txt index 2fbc72097..c30d3f277 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email.txt +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email.txt @@ -1,2 +1,3 @@ -Please follow the link below to reset your password +{% load i18n %} +{% trans "Please follow the link below to reset your password" %} {{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email_subject.txt b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email_subject.txt index bca0a5e0b..bfe6ce5e7 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email_subject.txt +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/email_subject.txt @@ -1 +1,2 @@ -Password reset \ No newline at end of file +{% load i18n %} +{% trans "Password reset" %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/form.html b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/form.html index db330566d..fb85100fe 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/form.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/account/password_reset/form.html @@ -1,6 +1,7 @@ {% extends "wagtailadmin/skeleton.html" %} {% load compress %} -{% block titletag %}Reset password{% endblock %} +{% load i18n %} +{% block titletag %}{ trans "Reset password" %}{% endblock %} {% block bodyclass %}login{% endblock %} {% block extra_css %} @@ -23,7 +24,7 @@
{% csrf_token %} -

Reset your password

+

{% trans "Reset your password" %}

  • @@ -33,7 +34,7 @@
  • - +
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/base.html b/wagtail/wagtailadmin/templates/wagtailadmin/base.html index f4054f2d9..0191a74aa 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/base.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/base.html @@ -1,10 +1,10 @@ {% extends "wagtailadmin/skeleton.html" %} {% load wagtailadmin_nav %} - +{% load i18n %} {% block furniture %} {% endif %}
-

Welcome to the {{ site_name }} Wagtail CMS

+

{% blocktrans %}Welcome to the {{ site_name }} Wagtail CMS{% endblocktrans %}

{{ user.get_full_name|default:user.username }}

@@ -29,7 +30,7 @@ {{ panel.render }} {% endfor %} {% else %} -

This is your dashboard on which helpful information about content you've created will be displayed.

+

{% trans "This is your dashboard on which helpful information about content you've created will be displayed." %}

{% endif %} {% endblock %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/home/pages_for_moderation.html b/wagtail/wagtailadmin/templates/wagtailadmin/home/pages_for_moderation.html index 1a8ab1e8e..37e57dfea 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/home/pages_for_moderation.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/home/pages_for_moderation.html @@ -1,7 +1,8 @@ +{% load i18n %} {% if page_revisions_for_moderation %}
{# TODO try moving these classes onto the section tag #}
-

Pages awaiting moderation

+

{% trans 'Pages awaiting moderation' %}

@@ -9,32 +10,32 @@ - - - - + + + + {% for revision in page_revisions_for_moderation %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/home/recent_edits.html b/wagtail/wagtailadmin/templates/wagtailadmin/home/recent_edits.html index 709711de5..458b58496 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/home/recent_edits.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/home/recent_edits.html @@ -1,30 +1,31 @@ +{% load i18n %} {% if last_edits %}
{# TODO try moving these classes onto the section tag #}
-

Your most recent edits

+

{% trans "Your most recent edits" %}

TitleParentDateAuthor{% trans "Title" %}{% trans "Parent" %}{% trans "Date" %}{% trans "Author" %}
-

{{ revision.page.title }}

+

{{ revision.page.title }}

{{ revision.page.get_parent.title }}
- - - + + + {% for revision in last_edits %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/home/site_summary.html b/wagtail/wagtailadmin/templates/wagtailadmin/home/site_summary.html index 3c04326ce..dcf98b6b3 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/home/site_summary.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/home/site_summary.html @@ -1,8 +1,27 @@ +{% load i18n %}
-

Site summary

+

{% trans "Site summary" %}

    -
  • {{ total_pages }} Page{{ total_pages|pluralize:"s" }}
  • -
  • {{ total_images }} Image{{ total_images|pluralize:"s" }}
  • -
  • {{ total_docs }} Document{{ total_docs|pluralize:"s" }}
  • +
  • + {% blocktrans count counter=total_pages %} + {{ total_pages }} Page + {% plural %} + {{ total_pages }} Pages + {% endblocktrans %} +
  • +
  • + {% blocktrans count counter=total_images %} + {{ total_images }} Image + {% plural %} + {{ total_images }} Images + {% endblocktrans %} +
  • +
  • + {% blocktrans count counter=total_docs %} + {{ total_docs }} Document + {% plural %} + {{ total_docs }} Documents + {% endblocktrans %} +
diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/login.html b/wagtail/wagtailadmin/templates/wagtailadmin/login.html index 40fea931f..dbb05e6ba 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/login.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/login.html @@ -1,5 +1,6 @@ {% extends "wagtailadmin/skeleton.html" %} {% load compress %} +{% load i18n %} {% block titletag %}Sign in{% endblock %} {% block bodyclass %}login{% endblock %} @@ -14,7 +15,7 @@ {% if form.errors %}
    -
  • Your username and password didn't match. Please try again.
  • +
  • {% trans "Your username and password didn't match. Please try again." %}
{% endif %} @@ -45,12 +46,12 @@ Removed until functionality exists
  • - +
  • {% endcomment %}
  • - +
  • diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/approved.html b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/approved.html index c6beb82f8..a196e2c17 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/approved.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/approved.html @@ -1,4 +1,4 @@ -The page "{{ revision.page.title|safe }}" has been approved -The page "{{ revision.page.title|safe }}" has been approved. +{% load i18n %}{% blocktrans title=revision.page.title|safe %}The page "{{ title }}" has been approved{% endblocktrans %} +{% blocktrans with title=revision.page.title|safe %}The page "{{ title }}" has been approved.{% endblocktrans %} -You can view the page here: {{ revision.page.full_url }} \ No newline at end of file +{% trans "You can view the page here:" %} {{ revision.page.full_url }} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/rejected.html b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/rejected.html index 665b8434b..34a49fae7 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/rejected.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/rejected.html @@ -1,4 +1,4 @@ -The page "{{ revision.page.title|safe }}" has been rejected -The page "{{ revision.page.title|safe }}" has been rejected. +{% load i18n %}{% blocktrans with title=revision.page.title|safe %}The page "{{ title }}" has been rejected{% endblocktrans %} +{% blocktrans with title=revision.page.title|safe %}The page "{{ title }}" has been rejected.{% endblocktrans %} -You can edit the page here: {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_edit' revision.page.id %} \ No newline at end of file +{% trans "You can edit the page here:"%} {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_edit' revision.page.id %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/submitted.html b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/submitted.html index 42199f6d5..f3a9115e0 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/notifications/submitted.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/notifications/submitted.html @@ -1,5 +1,5 @@ -The page "{{ revision.page|safe }}" has been submitted for moderation -The page "{{ revision.page|safe }}" has been submitted for moderation. +{% load i18n %}{% blocktrans with page=revision.page|safe %}The page "{{ page }}" has been submitted for moderation{% endblocktrans %} +{% blocktrans with page=revision.page|safe %}The page "{{ page }}" has been submitted for moderation.{% endblocktrans %} -You can preview the page here: {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_preview_for_moderation' revision.id %} -You can edit the page here: {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_edit' revision.page.id %} \ No newline at end of file +{% trans "You can preview the page here:" %} {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_preview_for_moderation' revision.id %} +{% trans "You can edit the page here:" %} {{ settings.BASE_URL }}{% url 'wagtailadmin_pages_edit' revision.page.id %} \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/_moderator_userbar.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/_moderator_userbar.html index 16a75e389..40e22b2ac 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/_moderator_userbar.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/_moderator_userbar.html @@ -1,17 +1,20 @@ +{% load i18n %}
    -

    Previewing '{{ revision.page.title }}', submitted by {{ revision.user.get_full_name|default:revision.user.username }} on {{ revision.created_at|date:"d M Y H:i" }}.

    +

    {% blocktrans with title=revision.page.title submitted_by=revision.user.get_full_name|default:revision.user.username submitted_on=revision.created_at|date:"d M Y H:i" %} + Previewing '{{ title }}', submitted by {{ submitted_by }} on {{ submitted_on }}. + {% endblocktrans %}

    - Edit + {% trans 'Edit' %}
    {% csrf_token %} - +
    {% csrf_token %} - +
    diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/add_subpage.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/add_subpage.html index 31ea431a9..e7c05643b 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/add_subpage.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/add_subpage.html @@ -1,14 +1,16 @@ {% extends "wagtailadmin/base.html" %} +{% load i18n %} {% load meta_description %} {% block bodyclass %}menu-explorer{% endblock %} -{% block titletag %}Create a page in {{ parent_page.title }}{% endblock %} +{% block titletag %}{% blocktrans with title=parent_page.title %}Create a page in {{ title }}{% endblocktrans %}{% endblock %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Create a page in" subtitle=parent_page.title %} + {% trans "Create a page in" as create_str %} + {% include "wagtailadmin/shared/header.html" with title=create_str subtitle=parent_page.title %}
    -

    Choose which type of page you'd like to create.

    +

    {% trans "Choose which type of page you'd like to create." %}

    {% if all_page_types %}
      diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_delete.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_delete.html index 3f25f88c6..bb0b29a6d 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_delete.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_delete.html @@ -1,18 +1,29 @@ {% extends "wagtailadmin/base.html" %} -{% block titletag %}Delete {{ page.title }}{% endblock %} +{% load i18n %} +{% block titletag %}{% blocktrans with title=page.title %}Delete {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Delete" subtitle=page.title %} + {% trans "Delete" as del_str %} + {% include "wagtailadmin/shared/header.html" with title=del_str subtitle=page.title %}
      -

      Are you sure you want to delete this page? {% if descendant_count %}This will also delete {{ descendant_count }} subpage{{ descendant_count|pluralize }}.{% endif %}

      +

      + {% trans 'Are you sure you want to delete this page?' %} + {% if descendant_count %} + {% blocktrans count counter=descendant_count %} + This will also delete one more subpage. + {% plural %} + This will also delete {{ descendant_count }} more subpages. + {% endblocktrans %} + {% endif %} +

      {% if page.live %} -

      Alternatively you can unpublish the page. This removes the page from public view and you can edit or publish it again later.

      +

      {% trans "Alternatively you can unpublish the page. This removes the page from public view and you can edit or publish it again later." %}

      {% endif %}
      {% csrf_token %} - {% if page.live %}Unpublish it{% endif %} + {% if page.live %}{% trans 'Unpublish it' %}{% endif %}
      {% endblock %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html index 32edd42c3..6ca06a48f 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html @@ -1,19 +1,21 @@ {% extends "wagtailadmin/base.html" %} -{% block titletag %}Move {{ page.title }}{% endblock %} +{% load i18n %} +{% block titletag %}{% blocktrans with title=page.title %}Move {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Move" subtitle=page_to_move.title %} + {% trans "Move" as move_str %} + {% include "wagtailadmin/shared/header.html" with title=move_str subtitle=page_to_move.title %}
      {% if page_to_move.is_leaf %} -

      Are you sure you want to move this page into '{{ destination.title }}'?

      +

      {% blocktrans %}Are you sure you want to move this page into '{{ destination.title }}'?{% endblocktrans %}

      {% else %} -

      Are you sure you want to move this page and all of its children into '{{ destination.title }}'?

      +

      {% blocktrans %}Are you sure you want to move this page and all of its children into '{{ destination.title }}'?{% endblocktrans %}

      {% endif %}
      {% csrf_token %} - +
      {% endblock %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_unpublish.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_unpublish.html index ac93f21d0..87e9fb9c1 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_unpublish.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_unpublish.html @@ -1,15 +1,16 @@ {% extends "wagtailadmin/base.html" %} -{% block titletag %}Unpublish {{ page.title }}{% endblock %} +{% load i18n %} +{% block titletag %}{% blocktrans with title=page.title%}Unpublish {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %} - - {% include "wagtailadmin/shared/header.html" with title="Unpublish" subtitle=page.title %} + {% trans "Unpublish" as unpublish_str %} + {% include "wagtailadmin/shared/header.html" with title=unpublish_str subtitle=page.title %}
      -

      Are you sure you want to unpublish this page?

      +

      {% trans "Are you sure you want to unpublish this page?" %}

      {% csrf_token %} - +
      {% endblock %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/content_type_use.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/content_type_use.html index 78e611bfb..3dcadc7e5 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/content_type_use.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/content_type_use.html @@ -1,9 +1,11 @@ {% extends "wagtailadmin/base.html" %} +{% load i18n %} {% block titletag %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %} - {% include "wagtailadmin/shared/header.html" with title="Pages using" subtitle=content_type.model_class.get_verbose_name %} + {% trans "Pages using" as pages_str %} + {% include "wagtailadmin/shared/header.html" with title=pages_str subtitle=content_type.model_class.get_verbose_name %}
      {% include "wagtailadmin/pages/list.html" with sortable=1 allow_navigation=0 sortable=0 %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/create.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/create.html index e1e332d51..8b487d8af 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/create.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/create.html @@ -1,7 +1,8 @@ {% extends "wagtailadmin/base.html" %} {% load page_permissions %} +{% load i18n %} -{% block titletag %}New {{ content_type.model_class.get_verbose_name }}{% endblock %} +{% block titletag %}{% blocktrans with page_type=content_type.model_class.get_verbose_name %}New {{ page_type }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer page-editor create{% endblock %} {% block content %} @@ -16,14 +17,14 @@
      • diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/edit.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/edit.html index 6956be060..27a8d4bb6 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/edit.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/edit.html @@ -1,17 +1,18 @@ {% extends "wagtailadmin/base.html" %} {% load page_permissions %} {% load gravatar %} -{% block titletag %}Editing {{ page.title }}{% endblock %} +{% load i18n %} +{% block titletag %}{% blocktrans with title=page.title %}Editing {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer page-editor{% endblock %} {% block content %}
        -

        Editing {{ page.title }}

        +

        {% blocktrans with title=page.title %}Editing {{ title }}{% endblocktrans %}

        - Status: {% if page.live %}{{ page.status_string }}{% else %}{{ page.status_string }}{% endif %} + {% trans "Status:" %} {% if page.live %}{{ page.status_string }}{% else %}{{ page.status_string }}{% endif %}
        @@ -29,16 +30,16 @@
      @@ -48,9 +49,9 @@
    • {% if page.get_latest_revision %} - Last modified: {{ page.get_latest_revision.created_at }} + {% blocktrans with last_mod=page.get_latest_revision.created_at %}Last modified: {{ last_mod }}{% endblocktrans %} {% if page.get_latest_revision.user %} - by {{ page.get_latest_revision.user.get_full_name|default:page.get_latest_revision.user.username }} + {% blocktrans with modified_by=page.get_latest_revision.user.get_full_name|default:page.get_latest_revision.user.username %}by {{ modified_by }}{% endblocktrans %} {% if request.user.email %} {% endif %} diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/index.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/index.html index 3d0f53cc1..a62c8887c 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/index.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/index.html @@ -1,6 +1,7 @@ {% extends "wagtailadmin/base.html" %} +{% load i18n %} {% load page_permissions %} -{% block titletag %}Exploring {{ parent_page.title }}{% endblock %} +{% block titletag %}{% blocktrans with title=parent_page.title %}Exploring {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer page-explorer {% if ordering == 'ord' %}reordering{% endif %}{% endblock %} {% block content %} @@ -11,7 +12,7 @@

    TitleDateStatus{% trans "Title" %}{% trans "Date" %}{% trans "Status" %}
    -

    {{ revision.page.title }}

    +

    {{ revision.page.title }}

    {% if orderable %} @@ -18,10 +19,10 @@ {% endif %} {% if show_parent %} - + {% endif %} - - + + {% endif %} @@ -49,25 +50,25 @@ {% endif %} {% endif %} @@ -91,14 +92,14 @@ {% if orderable %} + {% trans 'Order' %} {% else %} - Order + {% trans 'Order' %} {% endif %} {% endif %} {% endif %} {% if orderable %} - + {% endif %} {% if show_parent %} - + {% with page.get_parent as parent %} + + {% endwith %} {% endif %} {% endfor %} {% else %} - + {% url 'wagtailadmin_pages_add_subpage' parent_page.id as add_page_url%} + {% endif %}
    TitleParent{% trans 'Parent' %}TypeStatus{% trans 'Type' %}{% trans 'Status' %}
    {% if ordering == "ord" %} - Order - Title + {% trans 'Title' %} {% if sortable %} {% if ordering == "title" %} @@ -113,7 +114,7 @@ Parent - Type + {% trans 'Type' %} {% if sortable %} {% if ordering == "content_type" %} @@ -125,7 +126,7 @@ {% endif %} - Status + {% trans 'Status' %} {% if sortable %} {% if ordering == "live" %} @@ -146,7 +147,7 @@ {% page_permissions page as page_perms %}
    {% if ordering == "ord" %}
    Drag
    {% endif %}
    {% if ordering == "ord" %}
    {% trans 'Drag' %}
    {% endif %}

    @@ -164,7 +165,7 @@ {% endif %} {% else %} {% if page_perms.can_edit and 'edit' not in hide_actions|default:'' %} - {{ page.title }} + {{ page.title }} {% else %} {{ page.title }} {% endif %} @@ -173,31 +174,37 @@ {% if not moving and not choosing %} {% endif %}

    {{ page.get_parent.title }} + {% if parent %} + {{ parent.title }} + {% endif %} + {{ page.content_type.model_class.get_verbose_name }} @@ -211,17 +218,17 @@ {% if allow_navigation %} {% if moving %} {% if page.can_descend %} - Explore + {% trans 'Explore' %} {% endif %} {% elif choosing %} {% if page.can_descend %} - Explore + {% trans 'Explore' %} {% endif %} {% else %} {% if page.is_navigable %} - Explore + {% trans "Explore" %} {% elif page_perms.can_add_subpage %} - Add subpage + {% trans 'Add subpage' %} {% endif %} {% endif %} {% endif %} @@ -229,7 +236,8 @@

    No pages have been created.{% if parent_page and parent_page_perms.can_add_subpage %} Why not add one?{% endif %}

    {% trans "No pages have been created." %}{% if parent_page and parent_page_perms.can_add_subpage %} {% blocktrans %}Why not add one?{% endblocktrans %}{% endif %}

    \ No newline at end of file diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/move_choose_destination.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/move_choose_destination.html index d34c97c92..6f1f48961 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/move_choose_destination.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/move_choose_destination.html @@ -1,12 +1,13 @@ {% extends "wagtailadmin/base.html" %} -{% block titletag %}Select a new parent page for {{ page_to_move.title }}{% endblock %} +{% load i18n %} +{% block titletag %}{% blocktrans with title=page_to_move.title %}Select a new parent page for {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-explorer{% endblock %} {% block content %}
    -

    Select a new parent page for {{ page_to_move.title }}

    +

    {% blocktrans title=page_to_move.title %}Select a new parent page for {{ title }}{% endblocktrans %}