Porównaj commity

...

10 Commity

Autor SHA1 Wiadomość Data
Darrel O'Pry f50dc012cf
Merge 82f39f4aed into 252bae9129 2024-05-21 11:41:08 +00:00
Matt Westcott 252bae9129 Update latest.txt for 6.1.1 2024-05-21 12:39:42 +01:00
Matt Westcott a1b40fe4d0 Fill in release date for 6.1.1 2024-05-21 11:00:19 +01:00
Matt Westcott d3df8d9948 Fill in release date for 6.0.4 2024-05-21 10:59:53 +01:00
Matt Westcott b75c66ac42 Fetch new translations from Transifex 2024-05-21 10:55:23 +01:00
Matt Westcott c28a260a1b Release note for #11958 2024-05-21 10:24:40 +01:00
Matt Westcott 0ae74677b2 Refactor BoundWidget to accept an iterable of elements 2024-05-21 10:21:39 +01:00
Sage Abdullah 0cc274f36a Allow multiple top-level nodes when rendering StreamField blocks
But keep passing just the first element to the BoundWidget class
2024-05-21 10:21:38 +01:00
Darrel O'Pry 82f39f4aed fix: page url is None for headless sites 2023-01-29 20:47:31 -05:00
Darrel O'Pry 857b6d6519 chore: add tests for malformed urls in headless 2023-01-29 20:42:36 -05:00
1062 zmienionych plików z 3914 dodań i 2114 usunięć

Wyświetl plik

@ -20,13 +20,14 @@ Changelog
* Maintenance: Exclude the `client/scss` directory in Tailwind content config to speed up CSS compilation (Sage Abdullah)
6.1.1 (xx.xx.xxxx) - IN DEVELOPMENT
6.1.1 (21.05.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Fix form action URL in user edit and delete views for custom user models (Sage Abdullah)
* Fix: Fix snippet copy view not prefilling form data (Sage Abdullah)
* Fix: Address layout issues in the title cell of universal listings (Sage Abdullah)
* Fix: Fix incorrect rich text to HTML conversion when multiple link / embed types are present (Andy Chosak, Matt Westcott)
* Fix: Restore ability for custom widgets in StreamField blocks to have multiple top-level nodes (Sage Abdullah, Matt Westcott)
6.1 (01.05.2024)
@ -134,7 +135,7 @@ Changelog
* Maintenance: Refactor the Django port of `urlify` to use TypeScript, officially deprecate `window.URLify` global util (LB (Ben) Johnston)
6.0.4 (xx.xx.xxxx) - IN DEVELOPMENT
6.0.4 (21.05.2024)
~~~~~~~~~~~~~~~~~~
* Fix: Fix snippet copy view not prefilling form data (Sage Abdullah)

Wyświetl plik

@ -876,5 +876,5 @@
* Turkish: Saadettin Yasir Akel, Umut Bektaş, Halit Çelik, Zafer Cengiz, Cihad Gündoǧdu, Basitlik İyidir, Fatih Koç koç, José Luis, Py Data, Ahmet Sarıcan, Halim Turan, Ragıp Ünal, Suayip Uzulmez
* Turkish (Türkiye): Saadettin Yasir Akel, Basitlik İyidir, Umut Bektaş, Aydın Zafer Cengiz, lzm dgl, Cihad Gündoǧdu, Ahmet Serdar Karadeniz, Fatih Koç koç, José Luis, Py Data, Halim Turan, Ragıp Ünal
* Ukrainian: Yuri Fabirovsky, Vladislav Herasimenko, Mikolai Incognito, Anastasiia La, Sergiy Shkodenko, Viktor Shytiuk, Ivan Tyshchenko, Zoriana Zaiats, Mykola Zamkovoi
* Vietnamese: Amelia Dao, Duc Huynh, Hồng Quân Nguyễn, Luan Nguyen, Vu Pham
* Vietnamese: Amelia Dao, Duc Huynh, Hồng Quân Nguyễn, Luan Nguyen, Vu Pham, stdpi
* Welsh: Philip Crisp, Adam Hughes

Wyświetl plik

@ -3,18 +3,38 @@ import { runInlineScripts } from '../../../utils/runInlineScripts';
class BoundWidget {
constructor(
element,
elementOrNodeList,
name,
idForLabel,
initialState,
parentCapabilities,
options,
) {
// if elementOrNodeList not iterable, it must be a single element
const nodeList = elementOrNodeList.forEach
? elementOrNodeList
: [elementOrNodeList];
// look for an input element with the given name, as either a direct element of nodeList
// or a descendant
const selector = `:is(input,select,textarea,button)[name="${name}"]`;
// find, including element itself
this.input = element.matches(selector)
? element
: element.querySelector(selector);
for (let i = 0; i < nodeList.length; i += 1) {
const element = nodeList[i];
if (element.nodeType === Node.ELEMENT_NODE) {
if (element.matches(selector)) {
this.input = element;
break;
} else {
const input = element.querySelector(selector);
if (input) {
this.input = input;
break;
}
}
}
}
this.idForLabel = idForLabel;
this.setState(initialState);
this.parentCapabilities = parentCapabilities || new Map();
@ -71,27 +91,33 @@ class Widget {
const html = this.html.replace(/__NAME__/g, name).replace(/__ID__/g, id);
const idForLabel = this.idPattern.replace(/__ID__/g, id);
/* write the HTML into a temp container to parse it into an element */
/* write the HTML into a temp container to parse it into a node list */
const tempContainer = document.createElement('div');
tempContainer.innerHTML = html.trim();
const dom = tempContainer.firstChild;
const childNodes = Array.from(tempContainer.childNodes);
/* replace the placeholder with the new element */
placeholder.replaceWith(dom);
/* replace the placeholder with the new nodes */
placeholder.replaceWith(...childNodes);
/* execute any scripts in the new element */
runInlineScripts(dom);
const childElements = childNodes.filter(
(node) => node.nodeType === Node.ELEMENT_NODE,
);
// Add any extra attributes we received to the HTML of the widget
/* execute any scripts in the new element(s) */
childElements.forEach((element) => {
runInlineScripts(element);
});
// Add any extra attributes we received to the first element of the widget
if (typeof options?.attributes === 'object') {
Object.entries(options.attributes).forEach(([key, value]) => {
dom.setAttribute(key, value);
childElements[0].setAttribute(key, value);
});
}
// eslint-disable-next-line new-cap
return new this.boundWidgetClass(
dom,
childElements.length === 1 ? childElements[0] : childNodes,
name,
idForLabel,
initialState,

Wyświetl plik

@ -122,6 +122,40 @@ describe('telepath: wagtail.widgets.Widget with inline JS', () => {
});
});
describe('telepath: wagtail.widgets.Widget with multiple top-level nodes', () => {
let boundWidget;
let widgetDef;
beforeEach(() => {
// Create a placeholder to render the widget
document.body.innerHTML = '<div id="placeholder"></div>';
widgetDef = window.telepath.unpack({
_type: 'wagtail.widgets.Widget',
_args: [
'<!-- here comes a widget --><input type="text" name="__NAME__" maxlength="255" id="__ID__"><button data-button-state="idle">Click me</button><script>document.getElementById("__ID__").className = "custom-class";</script>',
'__ID__',
],
});
boundWidget = widgetDef.render(
document.getElementById('placeholder'),
'the-name',
'the-id',
'The Value',
);
});
test('it renders correctly', () => {
expect(document.body.querySelector('input').outerHTML).toBe(
'<input type="text" name="the-name" maxlength="255" id="the-id" class="custom-class">',
);
expect(document.querySelector('[data-button-state]').outerHTML).toBe(
'<button data-button-state="idle">Click me</button>',
);
expect(document.querySelector('input').value).toBe('The Value');
});
});
describe('telepath: wagtail.widgets.RadioSelect', () => {
let boundWidget;

Wyświetl plik

@ -1,20 +1,27 @@
/**
* Runs any inline scripts contained within the given DOM element or fragment.
*/
const runScript = (script: HTMLScriptElement) => {
if (!script.type || script.type === 'application/javascript') {
const newScript = document.createElement('script');
Array.from(script.attributes).forEach((key) =>
newScript.setAttribute(key.nodeName, key.nodeValue || ''),
);
newScript.text = script.text;
script.replaceWith(newScript);
}
};
const runInlineScripts = (element: HTMLElement | DocumentFragment) => {
const scripts = element.querySelectorAll(
'script:not([src])',
) as NodeListOf<HTMLScriptElement>;
scripts.forEach((script) => {
if (!script.type || script.type === 'application/javascript') {
const newScript = document.createElement('script');
Array.from(script.attributes).forEach((key) =>
newScript.setAttribute(key.nodeName, key.nodeValue || ''),
);
newScript.text = script.text;
script.replaceWith(newScript);
}
});
const selector = 'script:not([src])';
if (element instanceof HTMLElement && element.matches(selector)) {
runScript(element as HTMLScriptElement);
} else {
const scripts = element.querySelectorAll(
selector,
) as NodeListOf<HTMLScriptElement>;
scripts.forEach(runScript);
}
};
export { runInlineScripts };

Wyświetl plik

@ -1,6 +1,6 @@
# Wagtail 6.0.4 release notes - IN DEVELOPMENT
# Wagtail 6.0.4 release notes
_Unreleased_
_May 21, 2024_
```{contents}
---

Wyświetl plik

@ -1,6 +1,6 @@
# Wagtail 6.1.1 release notes - IN DEVELOPMENT
# Wagtail 6.1.1 release notes
_Unreleased_
_May 21, 2024_
```{contents}
---
@ -17,3 +17,4 @@ depth: 1
* Fix snippet copy view not prefilling form data (Sage Abdullah)
* Address layout issues in the title cell of universal listings (Sage Abdullah)
* Fix incorrect rich text to HTML conversion when multiple link / embed types are present (Andy Chosak, Matt Westcott)
* Restore ability for custom widgets in StreamField blocks to have multiple top-level nodes (Sage Abdullah, Matt Westcott)

Wyświetl plik

@ -351,7 +351,7 @@ In the new approach, we no longer need to attach an inline script but instead us
### Removal of jQuery from base client-side Widget and BoundWidget classes
The JavaScript base classes `Widget` and `BoundWidget` that provide client-side access to form widgets (see [](streamfield_widget_api)) no longer use jQuery. The `element` argument passed to the `BoundWidget` constructor, and the `input` property of `BoundWidget`, are now native DOM elements rather than jQuery collections. User code that extends these classes should be updated accordingly.
The JavaScript base classes `Widget` and `BoundWidget` that provide client-side access to form widgets (see [](streamfield_widget_api)) no longer use jQuery. The `input` property of `BoundWidget` (previously a jQuery collection) is now a native DOM element, and the `element` argument passed to the `BoundWidget` constructor (previously a jQuery collection) is now passed as a native DOM element if the HTML representation consists of a single element, and an iterable of elements (`NodeList` or array) otherwise. User code that extends these classes should be updated accordingly.
### `window.URLify` deprecated

Wyświetl plik

@ -1,6 +1,6 @@
{
"version": "6.1",
"url": "https://docs.wagtail.org/en/stable/releases/6.1.html",
"version": "6.1.1",
"url": "https://docs.wagtail.org/en/stable/releases/6.1.1.html",
"minorUrl": "https://docs.wagtail.org/en/stable/releases/6.1.html",
"lts": {
"version": "5.2.5",

Wyświetl plik

@ -215,6 +215,7 @@ André Bouatchidzé <a.anbz.net>
Antonin ENFRUN <anton.zorgameuh.org>
Aurel Pere
Aurélien Debord <contact.aureliendebord.com>
Axel H.
Axel Haustant
Benoît Vogel <contact.spicy-informatique.com>
Bertrand Bordage <bordage.bertrand.gmail.com>
@ -723,6 +724,7 @@ Hồng Quân Nguyễn <ng.hong.quan.gmail.com>
Loic Teixeira
Luan Nguyen <lihavim.gmail.com>
Vu Pham
stdpi
Welsh - cy
-----

Wyświetl plik

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Mahmoud Marayef, 2023\n"
"Language-Team: Arabic (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Mirza Iskandarov <mirza.iskandarov@gmail.com>, 2020\n"
"Language-Team: Azerbaijani (Azerbaijan) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Andrei Satsevich, 2023-2024\n"
"Language-Team: Belarusian (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Lyuboslav Petrov <petrov.lyuboslav@gmail.com>, 2014\n"
"Language-Team: Bulgarian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: MA Rahman <ugikot@gmail.com>, 2020\n"
"Language-Team: Bengali (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Roger Pons <rogerpons@gmail.com>, 2017-2018,2020-2024\n"
"Language-Team: Catalan (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: IT Management <hudan@itmanagement.cz>, 2018,2020,2023\n"
"Language-Team: Czech (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Philip Crisp, 2022\n"
"Language-Team: Welsh (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: MRostgaard <Mrostgaard@gmail.com>, 2019\n"
"Language-Team: Danish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -62,7 +62,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Stefan Hammer <stefan@hammerworxx.com>, 2021-2024\n"
"Language-Team: German (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Fauzaan Gasim, 2024\n"
"Language-Team: Divehi (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Yiannis Inglessis <negtheone@gmail.com>, 2016\n"
"Language-Team: Greek (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Matt Westcott <matthew@torchbox.com>, 2016,2024\n"
"Language-Team: Spanish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Rodrigo Yanez, 2023\n"
"Language-Team: Spanish (Latin America) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Rodrigo Yanez, 2023\n"
"Language-Team: Spanish (Venezuela) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Ragnar Rebase <rrebase@gmail.com>, 2020\n"
"Language-Team: Estonian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: 67feb0cba3962a6c9f09eb0e43697461_528661a "
"<cbde1c637170da616adcdde6daca673c_96059>, 2014\n"

Wyświetl plik

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Amir Mahmoodi, 2022-2023\n"
"Language-Team: Persian (http://app.transifex.com/torchbox/wagtail/language/"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -6,7 +6,7 @@
# Aarni Koskela, 2016
# Aarni Koskela, 2016
# Eetu Häivälä, 2016-2017
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2020-2023
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2020-2024
# Juha Yrjölä <juha.yrjola@iki.fi>, 2016
# Niklas Jerva <niklas.jerva@gmail.com>, 2016
# Rauli Laine <rauli.laine@iki.fi>, 2016
@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2020-2023\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2020-2024\n"
"Language-Team: Finnish (http://app.transifex.com/torchbox/wagtail/language/"
"fi/)\n"
"MIME-Version: 1.0\n"
@ -230,6 +230,9 @@ msgstr "Et voi kopioida sivua itsensä päälle, kun kopioit alasivuja."
msgid "Parent page"
msgstr "Isäntäsivu"
msgid "Search…"
msgstr "Haku…"
msgid "Visibility"
msgstr "Näkyvyys"
@ -249,6 +252,12 @@ msgstr "Tähän sivuun on määritetty työnkulku '%(workflow_name)s'."
msgid "You cannot assign this workflow to the same page multiple times."
msgstr "Et voi määrittää tätä työnkulkua samalle sivulle useita kertoja."
#, python-format
msgid ""
"Snippet '%(content_type)s' already has workflow '%(workflow_name)s' assigned."
msgstr ""
"Pätkään '%(content_type)s' on jo määritetty työnkulku '%(workflow_name)s'."
msgid "Give your workflow a name"
msgstr "Anna työnkululle nimi"
@ -567,6 +576,9 @@ msgstr ""
msgid "Sorry, there are no matches for \"<em>%(search_query)s</em>\""
msgstr "Ei tuloksia haulla \"<em>%(search_query)s</em>\""
msgid "There are no results."
msgstr "Ei tuloksia."
msgid "Yes, delete"
msgstr "Kyllä, poista"
@ -684,6 +696,9 @@ msgstr ""
msgid "Read the release notes."
msgstr "Lue julkaisutiedot."
msgid "Your pages and snippets in a workflow"
msgstr "Sivusi ja pätkäsi työnkulussa"
msgid "Task started"
msgstr "Tehtävä aloitettu"
@ -902,7 +917,7 @@ msgstr[0] "Siirrä 1 sivu"
msgstr[1] "Siirrä %(counter)s sivua"
msgid "Move"
msgstr "SIirrä"
msgstr "Siirrä"
msgid "Are you sure you want to move these pages?"
msgstr "Haluatko varmasti siirtää nämä sivut?"
@ -1196,9 +1211,21 @@ msgstr "Raportin hakuehtoja vastaavia sivuja ei löytynyt."
msgid "Updated"
msgstr "Päivitetty"
msgid "App"
msgstr "Sovellus"
msgid "Pages"
msgstr "Sivut"
msgid "Last edited page"
msgstr "Viimeksi muokattu sivu"
msgid "Last edit"
msgstr "Viimeisin muokkaus"
msgid "No page types found."
msgstr "Sivutyyppejä ei löytynyt."
msgid "Locking status"
msgstr "Lukitsemisen tila"
@ -1238,9 +1265,15 @@ msgstr "Muokkaa tätä"
msgid "No log entries found."
msgstr "Lokimerkintöjä ei löytynyt."
msgid "By Task"
msgstr "Tehtävän mukaan"
msgid "Workflow"
msgstr "Työnkulku"
msgid "Page/Snippet"
msgstr "Sivu/pätkä"
msgid "Requested by"
msgstr "Pyytänyt"
@ -1250,6 +1283,15 @@ msgstr "Aloitettu"
msgid "Incomplete task"
msgstr "Keskeneräinen tehtävä"
msgid "No pages/snippets have been submitted for moderation yet"
msgstr "Sivuja/pätkiä ei ole vielä lähetetty tarkastettavaksi"
msgid "By Workflow"
msgstr "Työnkulun mukaan"
msgid "Completed at"
msgstr "Valmistunut"
msgid "Clear"
msgstr "Tyhjennä"
@ -1278,12 +1320,27 @@ msgstr "Toteuta suodatukset"
msgid "Add comment"
msgstr "Lisää kommentti"
msgid "Show filters"
msgstr "Näytä suodattimet"
msgid "Filter by"
msgstr "Suodata"
msgid "Back"
msgstr "Takaisin"
msgid "History"
msgstr "Historia"
msgid "Keyboard shortcuts"
msgstr "Pikanäppäimet"
msgid "All keyboard shortcuts"
msgstr "Kaikki pikanäppäimet"
msgid "Keyboard shortcut"
msgstr "Pikanäppäin"
msgid "Current page status:"
msgstr "Sivun tila nyt:"
@ -1449,6 +1506,12 @@ msgstr "Esikatselutila"
msgid "First published"
msgstr "Ensin julkaistu"
#, python-format
msgid "This %(model_name)s is referenced %(usage_count)s time."
msgid_plural "This %(model_name)s is referenced %(usage_count)s times."
msgstr[0] "Tämä%(model_name)s on viitattu %(usage_count)s kerran"
msgstr[1] "Tämä %(model_name)s on viitattu %(usage_count)s kertaa."
msgid "Edit / Review"
msgstr "Muokkaa / tarkasta"
@ -1539,6 +1602,9 @@ msgstr "Haluatko varmasti poistaa tämän tehtävän käytöstä?"
msgid "Assign your workflow to pages"
msgstr "Määritä työnkulkun sivuihin"
msgid "Assign your workflow to snippets"
msgstr "Määritä työnkulkusi pätkiin"
msgid "Creating…"
msgstr "Luodaan…"
@ -1550,11 +1616,16 @@ msgstr ""
"Tämä työnkulku on poistettu käytöstä, joten sitä ei voi määrittää mihinkään "
"sivuun."
msgid "This workflow is disabled so it cannot be assigned to any snippets."
msgstr ""
"Tämä työnkulku on poistettu käytöstä, joten sitä ei voi määrittää mihinkään "
"pätkään."
msgid "Used on the following active workflows"
msgstr "Käytössä seuraavissa aktiivisissa työnkuluissa"
msgid "Not used"
msgstr "Ei käytössä"
msgstr "Ei käytetty"
msgid "Disabled"
msgstr "Pois käytöstä"
@ -1565,6 +1636,9 @@ msgid_plural "+%(counter)s more"
msgstr[0] "+%(counter)s lisää"
msgstr[1] "+%(counter)s lisää"
msgid "Assigned pages"
msgstr "Määritetyt sivut"
msgid "Page"
msgstr "Sivu"
@ -1581,6 +1655,12 @@ msgid_plural "%(counter)s pages"
msgstr[0] "1 sivu"
msgstr[1] "%(counter)s sivua"
#, python-format
msgid "1 snippet type"
msgid_plural "%(counter)s snippet types"
msgstr[0] "1 pätkätyyppi"
msgstr[1] "%(counter)s pätkätyyppiä"
#, python-format
msgid ""
"No workflows have been created. Why not <a href=\"%(add_url)s\">add one</a>?"
@ -1626,6 +1706,13 @@ msgid ""
msgstr ""
"Tehtäviä ei ole luotu. Haluatko <a href=\"%(add_url)s\">luoda tehtävän</a>?"
#, python-format
msgid ""
"There are no enabled tasks. Why not <a href=\"%(add_url)s\">add one</a>?"
msgstr ""
"Tehtäviä ei ole käytössä. Miksi et <a href=\"%(add_url)s\">lisäisi "
"sellaista</a>?"
#, python-format
msgid "Pages that use workflow '%(name)s'"
msgstr "Sivut jotka seuraavat työnkulkua '%(name)s'"
@ -1659,6 +1746,9 @@ msgstr "Näytä koko historia"
msgid "More"
msgstr "Lisää"
msgid "More bulk actions"
msgstr "Lisää massatoimintoja"
msgid "0 minutes"
msgstr "0 minuuttia"
@ -1672,18 +1762,54 @@ msgstr "%(time_period)s sitten"
msgid "Log out"
msgstr "Kirjaudu ulos"
msgid "Common actions"
msgstr "Yleiset toiminnot"
msgid "Cut"
msgstr "Leikkaa"
msgid "Paste"
msgstr "Liitä"
msgid "Paste and match style"
msgstr "Litää ja sovita tyyliin"
msgid "Paste without formatting"
msgstr "Liitä ilman muotoilua"
msgid "Undo"
msgstr "Kumoa"
msgid "Redo"
msgstr "Tee uudestaan"
msgid "Save changes"
msgstr "Tallenna muutokset"
msgid "Text content"
msgstr "Tekstisisältö"
msgid "Insert or edit a link"
msgstr "Lisää linkki tai muokkaa sitä"
msgid "Text formatting"
msgstr "Tekstin muotoilu"
msgid "Bold"
msgstr "Lihavoitu"
msgstr "Lihavointi"
msgid "Italic"
msgstr "Kursiivi"
msgid "Underline"
msgstr "Alleviivaus"
msgid "Monospace (code)"
msgstr "Tasalevyinen (koodi)"
msgid "Strike-through"
msgstr "Yliviivaus"
msgid "Superscript"
msgstr "Yläindeksi"
@ -1809,6 +1935,10 @@ msgstr "%(model_name)s '%(object)s' luotu ja julkaistu."
msgid "Edit '%(title)s'"
msgstr "Muokkaa sivua '%(title)s'"
#, python-format
msgid "Copy '%(title)s'"
msgstr "Kopioi '%(title)s'"
msgid "Inspect"
msgstr "Tarkastele"
@ -1816,6 +1946,10 @@ msgstr "Tarkastele"
msgid "Delete '%(title)s'"
msgstr "Poista '%(title)s'"
#, python-format
msgid "Add %(model_name)s"
msgstr "Lisää %(model_name)s"
#, python-format
msgid "New: %(model_name)s"
msgstr "Uusi: %(model_name)s"
@ -1889,6 +2023,10 @@ msgstr "1 sivu on julkaistu"
msgid "%(num_parent_objects)d pages have been published"
msgstr "%(num_parent_objects)d sivua on julkaistu"
#, python-format
msgid "Create a new %(model_name)s"
msgstr "Luo uusi %(model_name)s"
#, python-format
msgid "Page '%(page_title)s' has been converted into an ordinary page."
msgstr "Sivu '%(page_title)s' on muunnettu tavalliseksi sivuksi."
@ -1988,6 +2126,13 @@ msgstr "Sivusto"
msgid "Yes"
msgstr "Kyllä"
msgid "Page type"
msgstr "Sivutyyppi"
#, python-format
msgid "'%(page_title)s' has been moved successfully."
msgstr "'%(page_title)s' on siirretty."
#, python-format
msgid "Page '%(page_title)s' is now unlocked."
msgstr "Sivu '%(page_title)s' ei ole enää lukittu."
@ -2018,6 +2163,12 @@ msgstr "Käyttävät sivut"
msgid "The page '%(page_title)s' is not currently awaiting moderation."
msgstr "Sivu '%(page_title)s' ei odota parhaillaan tarkastusta."
msgid "Last published before"
msgstr "Viimeksi julkaistu ennen"
msgid "Aging pages"
msgstr "Ikääntyvät sivut"
msgid "Last published at"
msgstr "Viimeksi julkaistu"
@ -2036,6 +2187,9 @@ msgstr "Päivä/aika"
msgid "Locked pages"
msgstr "Lukitut sivut"
msgid "Page types usage"
msgstr "Sivutyyppien käyttö"
msgid "Show"
msgstr "Näytä"
@ -2190,6 +2344,9 @@ msgstr "Mitä uutta Wagtail %(version)s sisältää"
msgid "Editor Guide"
msgstr "Muokkausopas"
msgid "Shortcuts"
msgstr "Pikanäppäimet"
msgid "Help"
msgstr "Tuki"
@ -2205,6 +2362,13 @@ msgstr "Poista valinta"
msgid "Choose another page"
msgstr "Valitse toinen sivu"
msgid ""
"Multi-word tags with spaces will automatically be enclosed in double quotes "
"(\")."
msgstr ""
"Monisanaiset tunnisteet välilyönneillä suljetaan automaattisesti "
"lainausmerkkeihin (\")."
msgid "Tags can only consist of a single word, no spaces allowed."
msgstr ""
"Tunnisteet voivat koostua vain yhdestä sanasta, välilyönnit eivät ole "

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -3,11 +3,11 @@
# Aarni Koskela, 2022
# Valter Maasalo <vmaasalo@gmail.com>, 2022
# Loic Teixeira, 2022
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2023
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2024
#
msgid ""
msgstr ""
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2023\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2024\n"
"Language-Team: Finnish (https://app.transifex.com/torchbox/teams/8009/fi/)\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Language: fi\n"
@ -114,7 +114,7 @@ msgid "Main menu"
msgstr "Päävalikko"
msgid "Missing document"
msgstr "Puuttuva asiakirja"
msgstr "Puuttuva dokumentti"
msgid "More actions"
msgstr "Lisää toimintoja"

Wyświetl plik

@ -9,7 +9,7 @@
# Aurélien Debord <contact@aureliendebord.com>, 2017
# Aurel Pere, 2024
# Axel Haustant, 2016
# Axel Haustant, 2016
# Axel H., 2016
# Benoît Vogel <contact@spicy-informatique.com>, 2016,2019
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2015-2018,2023-2024
# Fabien Le Frapper <contact@fabienlefrapper.me>, 2020
@ -35,7 +35,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Aurel Pere, 2024\n"
"Language-Team: French (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: X Bello <xbello@gmail.com>, 2022-2024\n"
"Language-Team: Galician (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: lior abazon <abazon@v15.org.il>, 2015\n"
"Language-Team: Hebrew (Israel) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Matt Westcott <matthew@torchbox.com>, 2021\n"
"Language-Team: Croatian (Croatia) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Haitian (Haitian Creole) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Istvan Farkas <istvan.farkas@gmail.com>, 2019-2024\n"
"Language-Team: Hungarian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: atmosuwiryo <suwiryo.atmo@gmail.com>, 2019\n"
"Language-Team: Indonesian (Indonesia) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: saevarom <saevar@saevar.is>, 2015,2017-2023\n"
"Language-Team: Icelandic (Iceland) (http://app.transifex.com/torchbox/"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Marco Badan <marco.badan@gmail.com>, 2021-2024\n"
"Language-Team: Italian (http://app.transifex.com/torchbox/wagtail/language/"
@ -1514,6 +1514,25 @@ msgstr[2] ""
"traduzioni e le relative %(translation_descendant_count)s pagine figlie "
"tradotte."
#, python-format
msgid ""
"Deleting this page will also delete %(translation_count)s translation of "
"this page."
msgid_plural ""
"This will also delete %(descendant_count)s more child pages. Deleting this "
"page will also delete %(translation_count)s translations of this page."
msgstr[0] ""
"Eliminando questa pagina verranno eliminate anche le %(translation_count)s "
"traduzioni di questa pagina."
msgstr[1] ""
"Questo eliminerà anche %(descendant_count)s pagine figlio. Eliminando questa "
"pagina verranno eliminate anche le %(translation_count)s traduzioni di "
"questa pagina."
msgstr[2] ""
"Questo eliminerà anche %(descendant_count)s pagine figlio. Eliminando questa "
"pagina verranno eliminate anche le %(translation_count)s traduzioni di "
"questa pagina."
#, python-format
msgid "This action will delete total <b>%(total_pages)s</b> pages."
msgstr "Questa azione eliminerà un totale di <b>%(total_pages)s</b> pagine."
@ -1680,6 +1699,10 @@ msgstr "Aggiungi pagina figlio a '%(title)s'"
msgid "Drag"
msgstr "Trascina"
#, python-format
msgid "Item %(index)s of %(total)s"
msgstr "Elemento %(index)s di %(total)s"
msgid "Disable ordering of child pages"
msgstr "Disabilita ordine delle pagine figlio"
@ -1689,10 +1712,25 @@ msgstr "Ordinamento"
msgid "Enable ordering of child pages"
msgstr "Attiva ordine di pagine figlio"
#, python-format
msgid "%(start_index)s-%(end_index)s of %(items_count)s across entire site."
msgstr "%(start_index)s-%(end_index)s di %(items_count)s in tutto il sito."
msgid "No results across entire site."
msgstr "Nessun risultato in tutto il sito."
#, python-format
msgid "Search in '<span class=\"w-title-ellipsis\">%(title)s</span>'"
msgstr "cerca in '<span class=\"w-title-ellipsis\">%(title)s</span>'"
#, python-format
msgid ""
"%(start_index)s-%(end_index)s of %(items_count)s in '<span class=\"w-title-"
"ellipsis\">%(title)s</span>'."
msgstr ""
"%(start_index)s-%(end_index)s di %(items_count)s in '<span class=\"w-title-"
"ellipsis\">%(title)s</span>'."
#, python-format
msgid "No results in '<span class=\"w-title-ellipsis\">%(title)s</span>'."
msgstr ""
@ -2710,6 +2748,10 @@ msgstr "Copia '%(title)s'"
msgid "Inspect"
msgstr "Controlla"
#, python-format
msgid "Inspect '%(title)s'"
msgstr "Ispeziona '%(title)s'"
#, python-format
msgid "Delete '%(title)s'"
msgstr "Elimina '%(title)s'"
@ -2718,6 +2760,14 @@ msgstr "Elimina '%(title)s'"
msgid "More options for '%(title)s'"
msgstr "Più opzioni per '%(title)s'"
#, python-format
msgid "Add %(model_name)s"
msgstr "Aggiungi %(model_name)s"
#, python-format
msgid "The %(model_name)s could not be created due to errors."
msgstr "%(model_name)snon può essere creato a causa di errori."
#, python-format
msgid "New: %(model_name)s"
msgstr "Nuovo: %(model_name)s"
@ -2725,10 +2775,18 @@ msgstr "Nuovo: %(model_name)s"
msgid "Editing"
msgstr "Modifica"
#, python-format
msgid "The %(model_name)s could not be saved due to errors."
msgstr "Impossibile salvare %(model_name)s a causa di errori."
#, python-format
msgid "%(model_name)s '%(object)s' deleted."
msgstr "%(model_name)s '%(object)s' eliminato."
#, python-format
msgid "Are you sure you want to delete this %(model_name)s?"
msgstr "Sei sicuro di voler eliminare %(model_name)s?"
msgid "Inspecting"
msgstr "Controllo in corso"
@ -2738,6 +2796,10 @@ msgstr "Precedenti"
msgid "Latest"
msgstr "Ultimi"
#, python-format
msgid "'%(object)s' unpublished."
msgstr "'%(object)s' sbubblicato."
msgid "If you confirm deletion"
msgstr "Se confermi l'eliminazione"
@ -2880,6 +2942,13 @@ msgstr[2] ""
"Per %(num_parent_objects)d pagine %(num_child_objects)d pagine figlio è "
"stata annullata la pubblicazione"
msgid "Choose parent"
msgstr "Scegli un genitore"
#, python-format
msgid "Create a new %(model_name)s"
msgstr "Crea un nuovo %(model_name)s"
#, python-format
msgid "Page '%(page_title)s' has been converted into an ordinary page."
msgstr "La pagina '%(page_title)s' è stata convertita in una pagina ordinaria."
@ -2984,6 +3053,9 @@ msgstr "La pagina non può esser salvata perché è bloccata"
msgid "The page could not be saved due to validation errors"
msgstr "La pagina non può esser salvata a causa di errori di validazione"
msgid "Date updated"
msgstr "Data aggiornamento"
msgid "Owner"
msgstr "Proprietario"
@ -2993,6 +3065,9 @@ msgstr "Modificata da"
msgid "Site"
msgstr "Sito"
msgid "Has child pages"
msgstr "Ha pagine figlio"
msgid "Any"
msgstr "Qualsiasi"
@ -3002,6 +3077,10 @@ msgstr "Sì"
msgid "Page type"
msgstr "Tipologia pagina"
#, python-format
msgid "'%(page_title)s' has been moved successfully."
msgstr "'%(page_title)s' è stata spostata con successo."
#, python-format
msgid "Page '%(page_title)s' is now unlocked."
msgstr "Pagina '%(page_title)s' sbloccata."
@ -3191,6 +3270,31 @@ msgstr "Disabilita attività"
msgid "Task '%(object)s' disabled."
msgstr "Attività '%(object)s' disabilitata."
#, python-format
msgid ""
"This task is in progress on %(states_in_progress)d page/snippet. Disabling "
"this task will cause it to be skipped in the moderation workflow and not be "
"listed for selection when editing a workflow."
msgid_plural ""
"This task is in progress on %(states_in_progress)d pages/snippets. Disabling "
"this task will cause it to be skipped in the moderation workflow and not be "
"listed for selection when editing a workflow."
msgstr[0] ""
"Questa attività è in corso su %(states_in_progress)d pagina/snippet. La "
"disattivazione di questa attività farà sì che venga saltata nel flusso di "
"lavoro di moderazione e non sarà elencata per la selezione durante la "
"modifica di un flusso di lavoro."
msgstr[1] ""
"Questa attività è in corso su %(states_in_progress)d pagine/snippet. La "
"disattivazione di questa attività farà sì che venga saltata nel flusso di "
"lavoro di moderazione e non sarà elencata per la selezione durante la "
"modifica di un flusso di lavoro."
msgstr[2] ""
"Questa attività è in corso su %(states_in_progress)d pagine/snippet. La "
"disattivazione di questa attività farà sì che venga saltata nel flusso di "
"lavoro di moderazione e non sarà elencata per la selezione durante la "
"modifica di un flusso di lavoro."
#, python-format
msgid "Task '%(task_name)s' enabled."
msgstr "Attività '%(task_name)s' abilitata."
@ -3283,6 +3387,9 @@ msgstr "Azzera scelta"
msgid "Choose another page"
msgstr "Scegli un'altra pagina"
msgid "Tags can only consist of a single word, no spaces allowed."
msgstr "Le tag sono formate da una singola parola, non sono ammessi spazi."
msgid "Choose another task"
msgstr "Scegli un'altra attività"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -18,6 +18,9 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
"1 : 2;\n"
msgid "(New)"
msgstr "(Nuova)"
msgid "%(num)s error"
msgid_plural "%(num)s errors"
msgstr[0] "%(num)s errore"
@ -81,6 +84,9 @@ msgstr "Modifica '%(title)s'"
msgid "Enter your comments..."
msgstr "Inserisci i tuoi commenti..."
msgid "Expand all"
msgstr "Espandi tutto"
msgid "Focus comment"
msgstr "Evidenzia commento"
@ -117,6 +123,9 @@ msgstr "Esplora pagine"
msgid "Pages"
msgstr "Pagine"
msgid "Pin toolbar"
msgstr "Blocca toolbar"
msgid "Reload saved content"
msgstr "Ricarica il contenuto salvato"
@ -160,6 +169,9 @@ msgstr "Salvataggio in corso..."
msgid "Search"
msgstr "Cerca"
msgid "Search options…"
msgstr "Opzioni di ricerca..."
msgid "See all"
msgstr "Vedi tutto"
@ -193,5 +205,11 @@ msgstr "Attiva/disattiva barra laterale"
msgid "Unfocus comment"
msgstr "Deseleziona commento"
msgid "Unpin toolbar"
msgstr "Sblocca toolbar"
msgid "View child pages of '%(title)s'"
msgstr "Mostra sotto-pagine di '%(title)s'"
msgid "Write something or type / to insert a block"
msgstr "Scrivi qualcosa o digita '/' per inserire un blocco"

Wyświetl plik

@ -26,7 +26,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: okosama star, 2023\n"
"Language-Team: Japanese (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: André Bouatchidzé <a@anbz.net>, 2015\n"
"Language-Team: Georgian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: mirusu400, 2024\n"
"Language-Team: Korean (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Naglis Jonaitis, 2020-2023\n"
"Language-Team: Lithuanian (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Joren Štekeļs, 2024\n"
"Language-Team: Latvian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Matt Westcott <matthew@torchbox.com>, 2021\n"
"Language-Team: Maori (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: visual, 2022\n"
"Language-Team: Mongolian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Burmese (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Jonathan D, 2023\n"
"Language-Team: Norwegian Bokmål (http://app.transifex.com/torchbox/wagtail/"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Storm Heg <storm@stormbase.digital>, 2021-2024\n"
"Language-Team: Dutch (http://app.transifex.com/torchbox/wagtail/language/"
@ -107,6 +107,9 @@ msgstr "Collectie"
msgid "Tag"
msgstr "Tag"
msgid "Filter by up to ten most popular tags."
msgstr "Filter op maximaal tien meest populaire tags."
msgid "Preferred language"
msgstr "Voorkeurstaal"
@ -277,6 +280,20 @@ msgstr "Kies een nieuwe bovenliggende pagina"
msgid "Parent page"
msgstr "Bovenliggende pagina"
msgid "The new page will be a child of this given parent page."
msgstr "De nieuwe pagina zal onder deze bovenliggende pagina geplaatst worden."
#, python-format
msgid "You do not have permission to create a page under \"%(page_title)s\"."
msgstr "Je hebt geen rechten om een pagina te maken onder \"%(page_title)s\"."
#, python-format
msgid ""
"You cannot create a page of type \"%(page_type)s\" under \"%(page_title)s\"."
msgstr ""
"Je kunt geen pagina van het type \"%(page_type)s\" maken onder "
"\"%(page_title)s\"."
msgid "Search…"
msgstr "Zoeken…"
@ -1974,6 +1991,18 @@ msgstr "Terug"
msgid "History"
msgstr "Geschiedenis"
msgid "Keyboard shortcuts"
msgstr "Sneltoetsen"
msgid "All keyboard shortcuts"
msgstr "Alle sneltoetsen"
msgid "Section"
msgstr "Sectie"
msgid "Keyboard shortcut"
msgstr "Sneltoets"
msgid "Current page status:"
msgstr "Huidige paginastatus:"
@ -2495,18 +2524,54 @@ msgstr "Verstuurd naar %(task_name)s %(started_at)s"
msgid "%(status_display)s %(task_name)s %(started_at)s"
msgstr "%(status_display)s%(task_name)s%(started_at)s"
msgid "Common actions"
msgstr "Veel gebruikte acties"
msgid "Cut"
msgstr "Knippen"
msgid "Paste"
msgstr "Plakken"
msgid "Paste and match style"
msgstr "Plakken en opmaak overnemen"
msgid "Paste without formatting"
msgstr "Plakken zonder opmaak"
msgid "Undo"
msgstr "Ongedaan maken"
msgid "Redo"
msgstr "Opnieuw doen"
msgid "Save changes"
msgstr "Wijzigingen opslaan"
msgid "Text content"
msgstr "Binnen een tekstvak"
msgid "Insert or edit a link"
msgstr "Link invoegen of wijzigen"
msgid "Text formatting"
msgstr "Tekst opmaken"
msgid "Bold"
msgstr "Bold"
msgid "Italic"
msgstr "Italic"
msgid "Underline"
msgstr "Onderstrepen"
msgid "Monospace (code)"
msgstr "Monospace (code)"
msgid "Strike-through"
msgstr "Doorstrepen"
msgid "Superscript"
msgstr "Superscript"
@ -2761,6 +2826,10 @@ msgstr ""
"Versie van %(timestamp)s van %(model_name)s '%(object)s' is gepland voor "
"publicatie."
#, python-format
msgid "%(related_model_name)s %(field_label)s"
msgstr "%(related_model_name)s%(field_label)s"
#, python-format
msgid "Edit '%(title)s'"
msgstr "Wijzig '%(title)s'"
@ -2972,6 +3041,13 @@ msgstr[1] ""
"Publicatie van %(num_parent_objects)d pagina's en %(num_child_objects)d "
"onderliggende pagina's ongedaan gemaakt"
msgid "Choose parent"
msgstr "Kies bovenliggende pagina"
#, python-format
msgid "Create a new %(model_name)s"
msgstr "%(model_name)s aanmaken"
#, python-format
msgid "Page '%(page_title)s' has been converted into an ordinary page."
msgstr "Pagina '%(page_title)s' is naar een normale pagina geconverteerd."
@ -3076,6 +3152,9 @@ msgstr "De pagina kan niet worden opgeslagen omdat deze is vergrendeld."
msgid "The page could not be saved due to validation errors"
msgstr "Deze pagina kon niet opgeslagen worden vanwege validatiefouten."
msgid "Is commenting action"
msgstr "Actie is commentaar"
msgid "Date updated"
msgstr "Datum bijgewerkt"
@ -3215,6 +3294,9 @@ msgstr "Workflow taken"
msgid "Requested By"
msgstr "Aangevraagd door"
msgid "Show disabled"
msgstr "Toon ook uitgeschakelde"
msgid "Add a workflow"
msgstr "Voeg een workflow toe"
@ -3390,6 +3472,9 @@ msgstr "Wat is er nieuw in Wagtail %(version)s"
msgid "Editor Guide"
msgstr "Editor Guide"
msgid "Shortcuts"
msgstr "Sneltoetsen"
msgid "Help"
msgstr "Help"

Wyświetl plik

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Krzysztof Jeziorny <github@jeziorny.net>, 2022-2023\n"
"Language-Team: Polish (http://app.transifex.com/torchbox/wagtail/language/"

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -6,15 +6,15 @@
# Éder Brito <britoederr@gmail.com>, 2022
# Gladson <gladsonbrito@gmail.com>, 2022
# Iuri L. Machado, 2022
# Luiz Boaretto <lboaretto@gmail.com>, 2022
# Loic Teixeira, 2022
# LB (Ben Johnston) <mail@lb.ee>, 2023
# A M, 2023
# Felipe Lobato, 2023
# Luiz Boaretto <lboaretto@gmail.com>, 2024
#
msgid ""
msgstr ""
"Last-Translator: Felipe Lobato, 2023\n"
"Last-Translator: Luiz Boaretto <lboaretto@gmail.com>, 2024\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/torchbox/"
"teams/8009/pt_BR/)\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -31,6 +31,18 @@ msgstr "(1 novo item neste menu)"
msgid "(New)"
msgstr "(Novo)"
msgid "%(num)s error"
msgid_plural "%(num)s errors"
msgstr[0] "%(num)s erro"
msgstr[1] "%(num)s erros"
msgstr[2] "%(num)s erros"
msgid "%(num)s pixel"
msgid_plural "%(num)s pixels"
msgstr[0] "%(num)s pixel"
msgstr[1] "%(num)s pixels"
msgstr[2] "%(num)s pixels"
msgid "Add a comment"
msgstr "Adicionar um comentário"

Wyświetl plik

@ -25,7 +25,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Daniel Freira, 2024\n"
"Language-Team: Portuguese (Portugal) (http://app.transifex.com/torchbox/"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -6,15 +6,15 @@
# Alex Morega, 2023-2024
# Bogdan Mateescu, 2019
# Bogdan Mateescu, 2019
# Dan Braghis, 2014-2023
# Dan Braghis, 2014-2024
# Julian C <jcuotpc@gmail.com>, 2021
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Alex Morega, 2023-2024\n"
"Last-Translator: Dan Braghis, 2014-2024\n"
"Language-Team: Romanian (http://app.transifex.com/torchbox/wagtail/language/"
"ro/)\n"
"MIME-Version: 1.0\n"
@ -87,6 +87,9 @@ msgstr "Colecție"
msgid "Tag"
msgstr "Adaugă etichetă"
msgid "Filter by up to ten most popular tags."
msgstr "Filtrați până la zece cele mai populare etichete."
msgid "Preferred language"
msgstr "Limba preferată"
@ -256,6 +259,16 @@ msgstr "Alege o pagină de bază nouă pentru această pagină."
msgid "Parent page"
msgstr "Pagină părinte"
msgid "The new page will be a child of this given parent page."
msgstr "Pagina nouă va fi descendentă a acestei pagini."
#, python-format
msgid "You do not have permission to create a page under \"%(page_title)s\"."
msgstr "Nu aveți permisiunea de a crea o pagină sub \"%(page_title)s\""
msgid "Search…"
msgstr "Caută…"
#, python-format
msgid "Tag(s) %(value_too_long)s are over %(max_tag_length)d characters"
msgstr "Etichetele %(value_too_long)s au peste %(max_tag_length)d caractere"
@ -1812,6 +1825,9 @@ msgstr "Nici o pagină nu corespunde criteriilor acestui raport."
msgid "Updated"
msgstr "Actualizată"
msgid "App"
msgstr "Aplicație"
msgid "Pages"
msgstr "Pagini"
@ -1912,12 +1928,27 @@ msgstr "Aplică filtre"
msgid "Add comment"
msgstr "Adaugă comentariu"
msgid "Filter by"
msgstr "Filtrează după"
msgid "Back"
msgstr "Înapoi"
msgid "History"
msgstr "Istorie"
msgid "Keyboard shortcuts"
msgstr "Comenzi rapide de la tastatură"
msgid "All keyboard shortcuts"
msgstr "Toate comenzile rapide de la tastatură"
msgid "Section"
msgstr "Secțiune"
msgid "Keyboard shortcut"
msgstr "Comandă rapidă de la tastatură"
msgid "Current page status:"
msgstr "Starea paginii curente:"
@ -2449,18 +2480,54 @@ msgstr "Trimis în %(task_name)s la %(started_at)s"
msgid "%(status_display)s %(task_name)s %(started_at)s"
msgstr "%(status_display)s%(task_name)s%(started_at)s"
msgid "Common actions"
msgstr "Acțiuni comune"
msgid "Cut"
msgstr "Taie"
msgid "Paste"
msgstr "Lipește"
msgid "Paste and match style"
msgstr "Lipește și potrivește stilul"
msgid "Paste without formatting"
msgstr "Lipește fără formatare"
msgid "Undo"
msgstr "Anulare"
msgid "Redo"
msgstr "Refacere"
msgid "Save changes"
msgstr "Salvează modificările"
msgid "Text content"
msgstr "Conținut text"
msgid "Insert or edit a link"
msgstr "Inserează sau editează un link"
msgid "Text formatting"
msgstr "Formatare text"
msgid "Bold"
msgstr "Caractere aldine"
msgid "Italic"
msgstr "Cursiv"
msgid "Underline"
msgstr "Subliniere"
msgid "Monospace (code)"
msgstr "Monospațiu (cod)"
msgid "Strike-through"
msgstr "Baraj"
msgid "Superscript"
msgstr "Superscript"
@ -2483,6 +2550,12 @@ msgstr "Comută comentarii"
msgid "Comments"
msgstr "Comentarii"
msgid "Toggle checks"
msgstr "Comută verificări"
msgid "Checks"
msgstr "Verificări"
msgid "Toggle preview"
msgstr "Comută previzualizarea"
@ -2716,6 +2789,10 @@ msgstr ""
msgid "Edit '%(title)s'"
msgstr "Editează '%(title)s'"
#, python-format
msgid "Copy '%(title)s'"
msgstr "Copie '%(title)s'"
msgid "Inspect"
msgstr "Examinează"
@ -2731,6 +2808,10 @@ msgstr "Șterge '%(title)s'"
msgid "More options for '%(title)s'"
msgstr "Mai multe opțiuni pentru '%(title)s'"
#, python-format
msgid "Add %(model_name)s"
msgstr "Adaugă %(model_name)s"
#, python-format
msgid "New: %(model_name)s"
msgstr "Nou: %(model_name)s"
@ -2922,6 +3003,9 @@ msgstr[2] ""
"Publicarea la %(num_parent_objects)d pagini și %(num_child_objects)d de "
"pagini descendente a fost anulată"
msgid "Choose parent"
msgstr "Alege părinte"
#, python-format
msgid "Page '%(page_title)s' has been converted into an ordinary page."
msgstr "Pagina '%(page_title)s' a fost convertită în pagină obișnuită."
@ -3027,15 +3111,36 @@ msgstr "Pagina nu a fost salvată pentru că este blocată"
msgid "The page could not be saved due to validation errors"
msgstr "Pagina nu a fost salvată din cauza erorilor de validare."
msgid "Is commenting action"
msgstr "Este acțiune de comentare"
msgid "Date updated"
msgstr "Data actualizării"
msgid "Owner"
msgstr "Proprietar"
msgid "Edited by"
msgstr "Editat de"
msgid "Site"
msgstr "Sit"
msgid "Has child pages"
msgstr "Are pagini descendente"
msgid "Any"
msgstr "Oricare"
msgid "Yes"
msgstr "Da"
msgid "Page type"
msgstr "Tip pagină"
msgid "Exploring"
msgstr "Explorează"
#, python-format
msgid "Page '%(page_title)s' is now unlocked."
msgstr "Pagina '%(page_title)s' is fost deblocată."
@ -3318,6 +3423,9 @@ msgstr "Ce e nou în Wagtail %(version)s"
msgid "Editor Guide"
msgstr "Ghid editor"
msgid "Shortcuts"
msgstr "Comezi rapide"
msgid "Help"
msgstr "Ajutor"

Wyświetl plik

@ -44,7 +44,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Andrei Satsevich, 2023-2024\n"
"Language-Team: Russian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Stevo Backor, 2016\n"
"Language-Team: Slovak (Slovakia) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Andrej Marsetič, 2022-2024\n"
"Language-Team: Slovenian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Martin Sandström <martin@marteinn.se>, 2020-2024\n"
"Language-Team: Swedish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Peter Coward <peter@catalpa.io>, 2019\n"
"Language-Team: Tetum (Tetun) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Siramol Khunchai, 2024\n"
"Language-Team: Thai (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Halit Çelik, 2023\n"
"Language-Team: Turkish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Umut Bektaş <info@umutbektas.com>, 2019\n"
"Language-Team: Turkish (Turkey) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Vladyslav Herasymenko <drimacus182@gmail.com>, "
"2020,2022-2024\n"

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -5,14 +5,15 @@
# Translators:
# Hồng Quân Nguyễn <ng.hong.quan@gmail.com>, 2017-2018
# Hồng Quân Nguyễn <ng.hong.quan@gmail.com>, 2017
# stdpi, 2024
# Vu Pham, 2021-2022
msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Hồng Quân Nguyễn <ng.hong.quan@gmail.com>, 2017-2018\n"
"Last-Translator: stdpi, 2024\n"
"Language-Team: Vietnamese (http://app.transifex.com/torchbox/wagtail/"
"language/vi/)\n"
"MIME-Version: 1.0\n"
@ -24,8 +25,22 @@ msgstr ""
msgid "Publish"
msgstr "Xuất bản"
msgid "Submit for moderation"
msgstr "Yêu cầu xem xét"
#, python-format
msgid "Resubmit to %(task_name)s"
msgstr "Thực hiện lại%(task_name)s"
#, python-format
msgid "Submit to %(workflow_name)s"
msgstr "Thực hiện %(workflow_name)s"
msgid "Restart workflow "
msgstr "Khởi động lại luồng công việc"
msgstr "Tiếp tục quy trình"
msgid "Cancel workflow "
msgstr "Ngừng quy trình"
msgid "Unpublish"
msgstr "Thu hồi xuất bản"
@ -33,6 +48,9 @@ msgstr "Thu hồi xuất bản"
msgid "Save Draft"
msgstr "Lưu bản nháp"
msgid "Page locked"
msgstr "Trang bị khoá"
#, python-format
msgid "%(label)s and Publish"
msgstr "%(label)svà Xuất bản"
@ -40,18 +58,39 @@ msgstr "%(label)svà Xuất bản"
msgid "Wagtail admin"
msgstr "Quản trị viên Wagtail"
msgid "Sorry, you do not have permission to access this area."
msgstr "Bạn không có quyền truy cập vào khu vực này."
msgid "You do not have permission to access the admin"
msgstr "Bạn không có quyền truy cập trang quản trị"
msgid "None"
msgstr "Không có"
msgid "Date from"
msgstr "Từ ngày"
msgid "Date to"
msgstr "Đến ngày"
msgid "Locale"
msgstr "Vùng miền"
msgid "All"
msgstr "Tất cả"
msgid "Collection"
msgstr "Bộ sưu tập"
msgid "Tag"
msgstr "Thẻ"
msgid "Filter by up to ten most popular tags."
msgstr "Lọc theo 10 thẻ phổ biến nhất."
msgid "Preferred language"
msgstr "Ngôn ngữ ưu tiên"
msgid "Current time zone"
msgstr "Múi giờ hiện tại"
@ -64,9 +103,16 @@ msgstr "Họ"
msgid "Email"
msgstr "Email"
msgid "Upload a profile picture"
msgstr "Đăng hình đại diện"
msgid "Enter password"
msgstr "Nhập mật khẩu"
#, python-format
msgid "Your %(username_field)s and password didn't match. Please try again."
msgstr "Tên người dùng %(username_field)skhông trùng với mật khẩu."
#, python-format
msgid "Enter your %(username_field_name)s"
msgstr "Nhập %(username_field_name)scủa bạn"
@ -77,27 +123,151 @@ msgstr "Nhập địa chỉ email của bạn để thiết lập lại mật kh
msgid "URL"
msgstr "URL"
msgid "Search term"
msgstr "Từ khoá"
msgid "Search"
msgstr "Tìm kiếm"
msgid "All collections"
msgstr "Các mục"
msgid "Parent"
msgstr "Tập"
msgid ""
"Select hierarchical position. Note: a collection cannot become a child of "
"itself or one of its descendants."
msgstr ""
"Chọn vị trí chỉ định. Tập này không thể nằm trong các tập của nó và chính nó."
msgid "Please select another parent"
msgstr "Hãy chọn tập khác"
msgid "You cannot have multiple permission records for the same collection."
msgstr "Không thể có nhiều mục quyền hạn trong cùng một tập."
msgid "Add"
msgstr "Thêm"
msgid "Add collections"
msgstr "Thêm mục"
msgid "Edit"
msgstr "Biên tập"
msgid "Edit collections"
msgstr "Sửa mục"
msgid "Delete"
msgstr "Xoá"
msgid "Delete collections"
msgstr "Xoá mục"
msgid "You cannot edit another user's comment."
msgstr "Không thể sửa bình luận người khác"
msgid "Go live date/time must be before expiry date/time"
msgstr "Thời hạn đăng phải trước thời điểm hết hạn"
msgid "Expiry date/time must be in the future"
msgstr "Thời điểm hết hạn phải ở tương lai"
msgid "New title"
msgstr "Tiêu đề mới"
msgid "New slug"
msgstr "Đường dẫn mới"
msgid "New parent page"
msgstr "Thêm một trang cha"
msgid "This copy will be a child of this given parent page."
msgstr "Nhân bản này sẽ có cùng vị trí."
msgid "Copy subpages"
msgstr "Sao chép trang con"
#, python-format
msgid "This will copy %(count)s subpage."
msgid_plural "This will copy %(count)s subpages."
msgstr[0] "Tiếp tục sẽ sao chép %(count)s trang."
msgid "Publish copied page"
msgstr "Đăng các trang đã sao chép"
msgid "This page is live. Would you like to publish its copy as well?"
msgstr "Trang này đã được đăng. Bạn có muốn đang các bản sao của nó?"
msgid "Publish copies"
msgstr "Đăng các trang đã sao chép"
#, python-format
msgid ""
"%(count)s of the pages being copied is live. Would you like to publish its "
"copy?"
msgid_plural ""
"%(count)s of the pages being copied are live. Would you like to publish "
"their copies?"
msgstr[0] "%(count)s trang được sao chép đã được đăng. Bạn có muốn đăng?"
msgid "Alias"
msgstr "Tên khác"
msgid "Keep the new pages updated with future changes"
msgstr "Giữ bản sao luôn được đồng bộ"
#, python-format
msgid "You do not have permission to copy to page \"%(page_title)s\""
msgstr "Bạn không có quyền sao chép trang \"%(page_title)s\""
#, python-format
msgid ""
"This slug is already in use within the context of its parent page "
"\"%(parent_page_title)s\""
msgstr "Đường dẫn đã được sử dụng ở trang cha \"%(parent_page_title)s\""
msgid "You cannot copy a page into itself when copying subpages"
msgstr ""
"Bạn không thể sao chép một trang vào chính trang đó khi sao chép các trang "
"con"
#, python-format
msgid "The slug '%(page_slug)s' is already in use within the parent page"
msgstr "Đường dẫn \"%(page_slug)s\" đã được sử dụng bởi trang cha"
msgid "Select a new parent for this page."
msgstr "Chọn trang cha mới."
msgid "Parent page"
msgstr "Trang cha"
msgid "The new page will be a child of this given parent page."
msgstr "Trang mới sẽ thuộc trang cha này."
#, python-format
msgid "You do not have permission to create a page under \"%(page_title)s\"."
msgstr "Bạn không có quyền tạo trang trong \"%(page_title)s\""
msgid "Please select at least one group."
msgstr "Hãy lựa chọn ít nhất một nhóm."
#, python-format
msgid "This page already has workflow '%(workflow_name)s' assigned."
msgstr "Trang này đã áp dụng quy trình '%(workflow_name)s'."
msgid "You cannot assign this workflow to the same page multiple times."
msgstr "Không thể áp dụng quy trình nhiều lần."
#, python-format
msgid ""
"Snippet '%(content_type)s' already has workflow '%(workflow_name)s' assigned."
msgstr "Khối `%(content_type)s` đã có quy trình `%(workflow_name)s`."
msgid "Give your workflow a name"
msgstr "Đặt tên quy trình"
msgid "1 page selected"
msgstr "1 trang được chọn"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Orangle Liu <orangleliu@gmail.com>, 2017\n"
"Language-Team: Chinese (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -30,7 +30,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: 蚂蚁先生 <pzf_karl@hotmail.com>, 2023\n"
"Language-Team: Chinese (China) (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-02-21 15:50+0000\n"
"Last-Translator: Yunchi Pang <yunchipang@gmail.com>, 2024\n"
"Language-Team: Chinese Traditional (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Afrikaans (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Younes Oumakhou, 2022\n"
"Language-Team: Arabic (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Azerbaijani (Azerbaijan) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Tatsiana Tsygan <art.tatsiana@gmail.com>, 2020\n"
"Language-Team: Belarusian (http://app.transifex.com/torchbox/wagtail/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Roger Pons <rogerpons@gmail.com>, 2016-2017,2020,2023\n"
"Language-Team: Catalan (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -4,7 +4,7 @@
#
# Translators:
# IT Management <hudan@itmanagement.cz>, 2018
# IT Management <hudan@itmanagement.cz>, 2018,2020
# IT Management <hudan@itmanagement.cz>, 2018,2020,2024
# IT Management <hudan@itmanagement.cz>, 2020
# Ivan Pomykacz <mist@alastify.cz>, 2015
# Ivan Pomykacz <mist@alastify.cz>, 2015
@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Mirek Zvolský <zvolsky@seznam.cz>, 2020\n"
"Last-Translator: IT Management <hudan@itmanagement.cz>, 2018,2020,2024\n"
"Language-Team: Czech (http://app.transifex.com/torchbox/wagtail/language/"
"cs/)\n"
"MIME-Version: 1.0\n"
@ -57,10 +57,10 @@ msgid "URL"
msgstr "URL"
msgid "Checkbox"
msgstr "Zaškrtávací pole"
msgstr "Zaškrtávací políčko"
msgid "Checkboxes"
msgstr "Zaškrtávací pole"
msgstr "Zaškrtávací políčka"
msgid "Drop down"
msgstr "Rozbalovací seznam"
@ -93,7 +93,7 @@ msgid "name"
msgstr "jméno"
msgid "Safe name of the form field, the label converted to ascii_snake_case"
msgstr "slug (jméno pole v ascii_snake_case verzi)"
msgstr "Slug (jméno pole v ascii_snake_case verzi)"
msgid "label"
msgstr "popisek"
@ -110,9 +110,22 @@ msgstr "vyžadováno"
msgid "choices"
msgstr "volby"
msgid ""
"Comma or new line separated list of choices. Only applicable in checkboxes, "
"radio and dropdown."
msgstr ""
"Seznam možností oddělený čárkou nebo novým řádkem. Použitelné pouze u "
"zaškrtávacích políček, přepínacích tlačítek a rozbalovacích seznamů."
msgid "default value"
msgstr "výchozí hodnota"
msgid ""
"Default value. Comma or new line separated values supported for checkboxes."
msgstr ""
"Výchozí hodnota. Pro zaškrtávací políčka jsou podporovány hodnoty oddělené "
"čárkou nebo novými řádky."
msgid "help text"
msgstr "nápověda"
@ -123,7 +136,7 @@ msgid "Form"
msgstr "Formulář"
msgid "Landing page"
msgstr "Úvodní stránka"
msgstr "Potvrzovací stránka"
msgid "to address"
msgstr "příjemce"
@ -152,6 +165,13 @@ msgstr "Smazat formulářová data %(title)s"
msgid "Delete form data"
msgstr "Smazat formulářová data"
msgid "Are you sure you want to delete this form submission?"
msgid_plural "Are you sure you want to delete these form submissions?"
msgstr[0] "Opravdu chcete smazat tento odeslaný formulář?"
msgstr[1] "Opravdu chcete smazat tyto odeslané formuláře?"
msgstr[2] "Opravdu chcete smazat tyto odeslané formuláře?"
msgstr[3] "Opravdu chcete smazat tyto odeslané formuláře?"
msgid "Delete"
msgstr "Smazat"
@ -179,7 +199,7 @@ msgid "Title"
msgstr "Název"
msgid "Origin"
msgstr "Původ"
msgstr "Původ"
msgid "Pages"
msgstr "Stránky"
@ -187,7 +207,10 @@ msgstr "Stránky"
#, python-format
msgid "One submission has been deleted."
msgid_plural "%(count)d submissions have been deleted."
msgstr[0] "Jedno odeslání bylo smazáno."
msgstr[0] "Odeslání bylo smazáno."
msgstr[1] "%(count)d odeslání byla smazána."
msgstr[2] "%(count)d odeslání bylo smazáno."
msgstr[3] "%(count)d odeslání bylo smazáno."
msgid "Form data"
msgstr "Formulářová data"

Wyświetl plik

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Philip Crisp, 2022\n"
"Language-Team: Welsh (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Danish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Tammo van Lessen <tvanlessen@gmail.com>, 2015\n"
"Language-Team: German (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Fauzaan Gasim, 2024\n"
"Language-Team: Divehi (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: 79353a696ad19dc202b261b3067b7640_bec941e, 2015\n"
"Language-Team: Greek (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: X Bello <xbello@gmail.com>, 2022\n"
"Language-Team: Spanish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Spanish (Latin America) (http://app.transifex.com/torchbox/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Erlend Eelmets <debcf78e@opayq.com>, 2020\n"
"Language-Team: Estonian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Basque (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: pyzenberg <pyzenberg@gmail.com>, 2017\n"
"Language-Team: Persian (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Valter Maasalo <vmaasalo@gmail.com>, 2020\n"
"Language-Team: Finnish (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -5,7 +5,7 @@
# Translators:
# Adrien <laadrien@gmail.com>, 2014
# Axel Haustant, 2016
# Axel Haustant, 2016
# Axel H., 2016
# Benoît Vogel <contact@spicy-informatique.com>, 2016-2017
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2015,2017-2018
# incognitae <pierre@onoffdesign.com>, 2016
@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: Tom Dyson <tom@torchbox.com>, 2015\n"
"Language-Team: French (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: X Bello <xbello@gmail.com>, 2022\n"
"Language-Team: Galician (http://app.transifex.com/torchbox/wagtail/language/"

Wyświetl plik

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Wagtail\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-18 17:28+0100\n"
"POT-Creation-Date: 2024-05-02 10:04+0100\n"
"PO-Revision-Date: 2014-09-11 15:42+0000\n"
"Last-Translator: lior abazon <abazon@v15.org.il>, 2015\n"
"Language-Team: Hebrew (Israel) (http://app.transifex.com/torchbox/wagtail/"

Some files were not shown because too many files have changed in this diff Show More