Upgrade to Chyrp Lite "Boreal"
This commit is contained in:
parent
26f946d430
commit
1dd6e5eb98
|
@ -22,7 +22,8 @@ $(function() {
|
|||
Settings.init();
|
||||
});
|
||||
// Adds a master toggle to forms that have multiple checkboxes.
|
||||
function toggle_all() {
|
||||
function toggle_all(
|
||||
) {
|
||||
$("form[data-toggler]").each(
|
||||
function() {
|
||||
var all_on = true;
|
||||
|
@ -69,7 +70,8 @@ function toggle_all() {
|
|||
);
|
||||
}
|
||||
// Validates slug fields.
|
||||
function validate_slug() {
|
||||
function validate_slug(
|
||||
) {
|
||||
$("input[pattern='^[a-z0-9\\\\-]*$']").keyup(
|
||||
function(e) {
|
||||
var slug = $(this).val();
|
||||
|
@ -82,7 +84,8 @@ function validate_slug() {
|
|||
);
|
||||
}
|
||||
// Validates email fields.
|
||||
function validate_email() {
|
||||
function validate_email(
|
||||
) {
|
||||
$("input[type='email']").keyup(
|
||||
function(e) {
|
||||
var text = $(this).val();
|
||||
|
@ -95,7 +98,8 @@ function validate_email() {
|
|||
);
|
||||
}
|
||||
// Validates URL fields.
|
||||
function validate_url() {
|
||||
function validate_url(
|
||||
) {
|
||||
$("input[type='url']").keyup(
|
||||
function(e) {
|
||||
var text = $(this).val();
|
||||
|
@ -118,7 +122,8 @@ function validate_url() {
|
|||
);
|
||||
}
|
||||
// Tests the strength of #password1 and compares #password1 to #password2.
|
||||
function validate_passwords() {
|
||||
function validate_passwords(
|
||||
) {
|
||||
var passwords = $("input[type='password']").filter(
|
||||
function(index) {
|
||||
var id = $(this).attr("id");
|
||||
|
@ -163,7 +168,8 @@ function validate_passwords() {
|
|||
);
|
||||
}
|
||||
// Asks the user to confirm form submission.
|
||||
function confirm_submit() {
|
||||
function confirm_submit(
|
||||
) {
|
||||
$("form[data-confirm]").on(
|
||||
"submit.confirm",
|
||||
function(e) {
|
||||
|
@ -187,7 +193,8 @@ function confirm_submit() {
|
|||
);
|
||||
}
|
||||
// Prevents forms being submitted multiple times in a short interval.
|
||||
function solo_submit() {
|
||||
function solo_submit(
|
||||
) {
|
||||
$("form").on(
|
||||
"submit.solo",
|
||||
function(e) {
|
||||
|
@ -203,7 +210,8 @@ function solo_submit() {
|
|||
}
|
||||
);
|
||||
}
|
||||
function test_uploads() {
|
||||
function test_uploads(
|
||||
) {
|
||||
$("input[type='file']:not(.toolbar)").on(
|
||||
"change.uploads",
|
||||
function(e) {
|
||||
|
@ -247,7 +255,12 @@ var Uploads = {
|
|||
size_err: '<?php esce(_f("Maximum file size: %d Megabytes!", $config->uploads_limit, "admin")); ?>'
|
||||
},
|
||||
active: 0,
|
||||
send: function(file, doneCallback, failCallback, alwaysCallback) {
|
||||
send: function(
|
||||
file,
|
||||
doneCallback,
|
||||
failCallback,
|
||||
alwaysCallback
|
||||
) {
|
||||
Uploads.active++;
|
||||
var form = new FormData();
|
||||
|
||||
|
@ -278,7 +291,13 @@ var Uploads = {
|
|||
}
|
||||
);
|
||||
},
|
||||
show: function(search, filter, clickCallback, failCallback, alwaysCallback) {
|
||||
show: function(
|
||||
search,
|
||||
filter,
|
||||
clickCallback,
|
||||
failCallback,
|
||||
alwaysCallback
|
||||
) {
|
||||
if (Uploads.active)
|
||||
return;
|
||||
|
||||
|
@ -342,13 +361,7 @@ var Uploads = {
|
|||
$(this).parent().remove();
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/close.svg',
|
||||
"alt": '<?php esce(__("close", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("close.svg")); ?>'
|
||||
)
|
||||
]
|
||||
).click(
|
||||
|
@ -373,7 +386,8 @@ var Uploads = {
|
|||
}
|
||||
}
|
||||
var Help = {
|
||||
init: function() {
|
||||
init: function(
|
||||
) {
|
||||
$(".help").on(
|
||||
"click",
|
||||
function(e) {
|
||||
|
@ -382,7 +396,9 @@ var Help = {
|
|||
}
|
||||
);
|
||||
},
|
||||
show: function(href) {
|
||||
show: function(
|
||||
href
|
||||
) {
|
||||
$("<div>", {
|
||||
"role": "dialog",
|
||||
"aria-label": '<?php esce(__("Modal window", "admin")); ?>'
|
||||
|
@ -421,13 +437,7 @@ var Help = {
|
|||
$(this).parent().remove();
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/close.svg',
|
||||
"alt": '<?php esce(__("close", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("close.svg")); ?>'
|
||||
)
|
||||
]
|
||||
).click(
|
||||
|
@ -439,7 +449,8 @@ var Help = {
|
|||
}
|
||||
}
|
||||
var Write = {
|
||||
init: function() {
|
||||
init: function(
|
||||
) {
|
||||
// Insert toolbar buttons for text formatting.
|
||||
$("#write_form .options_toolbar, #edit_form .options_toolbar").each(
|
||||
function() {
|
||||
|
@ -462,13 +473,7 @@ var Write = {
|
|||
Write.formatting(target, "h3");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/heading.svg',
|
||||
"alt": '<?php esce(__("heading", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("heading.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -487,13 +492,7 @@ var Write = {
|
|||
Write.formatting(target, "strong");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/bold.svg',
|
||||
"alt": '<?php esce(__("strong", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("bold.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -512,13 +511,7 @@ var Write = {
|
|||
Write.formatting(target, "em");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/italic.svg',
|
||||
"alt": '<?php esce(__("emphasis", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("italic.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -537,13 +530,7 @@ var Write = {
|
|||
Write.formatting(target, "del");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/strikethrough.svg',
|
||||
"alt": '<?php esce(__("strikethrough", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("Strikethrough.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -562,13 +549,7 @@ var Write = {
|
|||
Write.formatting(target, "mark");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/highlight.svg',
|
||||
"alt": '<?php esce(__("highlight", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("highlight.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -587,13 +568,7 @@ var Write = {
|
|||
Write.formatting(target, "code");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/code.svg',
|
||||
"alt": '<?php esce(__("code", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("code.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -612,13 +587,7 @@ var Write = {
|
|||
Write.formatting(target, "hyperlink");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/link.svg',
|
||||
"alt": '<?php esce(__("hyperlink", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("link.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -637,13 +606,7 @@ var Write = {
|
|||
Write.formatting(target, "img");
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/image.svg',
|
||||
"alt": '<?php esce(__("image", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("image.svg")); ?>'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -709,13 +672,7 @@ var Write = {
|
|||
}
|
||||
}
|
||||
),
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/upload.svg',
|
||||
"alt": '<?php esce(__("image", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
$('<?php esce(icon_svg("upload.svg")); ?>')
|
||||
]
|
||||
).appendTo(toolbar);
|
||||
|
||||
|
@ -753,11 +710,8 @@ var Write = {
|
|||
);
|
||||
}
|
||||
).append(
|
||||
$("<img>", {
|
||||
"src": Site.chyrp_url + '/admin/images/icons/storage.svg',
|
||||
"alt": '<?php esce(__("insert", "admin")); ?>'
|
||||
})
|
||||
)
|
||||
'<?php esce(icon_svg("storage.svg")); ?>'
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -796,13 +750,7 @@ var Write = {
|
|||
target.focus();
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/view.svg',
|
||||
"alt": '<?php esce(__("preview", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("view.svg")); ?>'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -909,16 +857,24 @@ var Write = {
|
|||
);
|
||||
}
|
||||
},
|
||||
dragenter: function(e) {
|
||||
dragenter: function(
|
||||
e
|
||||
) {
|
||||
$(e.target).addClass("drag_highlight");
|
||||
},
|
||||
dragleave: function(e) {
|
||||
dragleave: function(
|
||||
e
|
||||
) {
|
||||
$(e.target).removeClass("drag_highlight");
|
||||
},
|
||||
dragover: function(e) {
|
||||
dragover: function(
|
||||
e
|
||||
) {
|
||||
e.preventDefault();
|
||||
},
|
||||
drop: function(e) {
|
||||
drop: function(
|
||||
e
|
||||
) {
|
||||
// Process drag-and-drop image file uploads.
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
|
@ -959,7 +915,11 @@ var Write = {
|
|||
);
|
||||
}
|
||||
},
|
||||
formatting: function(target, effect, fragment = "") {
|
||||
formatting: function(
|
||||
target,
|
||||
effect,
|
||||
fragment = ""
|
||||
) {
|
||||
var markdown = <?php esce($config->enable_markdown); ?>;
|
||||
var opening = "";
|
||||
var closing = "";
|
||||
|
@ -1119,7 +1079,12 @@ var Write = {
|
|||
target[0].setRangeText(text);
|
||||
$(target).focus().trigger("input").trigger("change");
|
||||
},
|
||||
show: function(action, safename, field, content) {
|
||||
show: function(
|
||||
action,
|
||||
safename,
|
||||
field,
|
||||
content
|
||||
) {
|
||||
var uid = Date.now().toString(16);
|
||||
|
||||
// Build a form targeting a named iframe.
|
||||
|
@ -1201,8 +1166,12 @@ var Write = {
|
|||
).loader().on(
|
||||
"load",
|
||||
function() {
|
||||
if (!!this.contentWindow.location && this.contentWindow.location != "about:blank")
|
||||
if (
|
||||
!!this.contentWindow.location
|
||||
&& this.contentWindow.location != "about:blank"
|
||||
) {
|
||||
$(this).loader(true);
|
||||
}
|
||||
}
|
||||
),
|
||||
$(
|
||||
|
@ -1221,13 +1190,7 @@ var Write = {
|
|||
$(this).parent().remove();
|
||||
}
|
||||
).append(
|
||||
$(
|
||||
"<img>",
|
||||
{
|
||||
"src": Site.chyrp_url + '/admin/images/icons/close.svg',
|
||||
"alt": '<?php esce(__("close", "admin")); ?>'
|
||||
}
|
||||
)
|
||||
'<?php esce(icon_svg("close.svg")); ?>'
|
||||
)
|
||||
]
|
||||
).click(
|
||||
|
@ -1242,15 +1205,16 @@ var Write = {
|
|||
}
|
||||
}
|
||||
var Settings = {
|
||||
init: function() {
|
||||
$("#email_correspondence").click(
|
||||
init: function(
|
||||
) {
|
||||
$("input#email_correspondence").click(
|
||||
function() {
|
||||
if ($(this).prop("checked") == false)
|
||||
$("#email_activation").prop("checked", false);
|
||||
}
|
||||
);
|
||||
|
||||
$("#email_activation").click(
|
||||
$("input#email_activation").click(
|
||||
function() {
|
||||
if ($(this).prop("checked") == true)
|
||||
$("#email_correspondence").prop("checked", true);
|
||||
|
@ -1263,7 +1227,10 @@ var Settings = {
|
|||
$("form#route_settings code.syntax").each(
|
||||
function() {
|
||||
var syntax = $(this).html();
|
||||
var regexp = new RegExp("(/?|^)" + escapeRegExp(syntax) + "(/?|$)", "g");
|
||||
|
||||
var regexp = new RegExp(
|
||||
"(/?|^)" + escapeRegExp(syntax) + "(/?|$)", "g"
|
||||
);
|
||||
|
||||
if ($(e.target).val().match(regexp))
|
||||
$(this).addClass("tag_added");
|
||||
|
|
|
@ -80,19 +80,52 @@ table {
|
|||
border-collapse: collapse;
|
||||
border-spacing: 0em;
|
||||
}
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
--chyrp-pure-white: #ffffff;
|
||||
--chyrp-pure-black: #000000;
|
||||
--chyrp-inky-black: #1f1f23;
|
||||
--chyrp-summer-grey: #fbfbfb;
|
||||
--chyrp-english-grey: #efefef;
|
||||
--chyrp-welsh-grey: #dfdfdf;
|
||||
--chyrp-irish-grey: #cfcfcf;
|
||||
--chyrp-scottish-grey: #afafaf;
|
||||
--chyrp-winter-grey: #656565;
|
||||
--chyrp-strong-yellow: #ffdd00;
|
||||
--chyrp-strong-orange: #ff7f00;
|
||||
--chyrp-strong-red: #c11600;
|
||||
--chyrp-strong-green: #108600;
|
||||
--chyrp-strong-blue: #1e57ba;
|
||||
--chyrp-strong-purple: #ba1eba;
|
||||
--chyrp-light-yellow: #fffde6;
|
||||
--chyrp-light-red: #faebe4;
|
||||
--chyrp-light-green: #ebfae4;
|
||||
--chyrp-light-blue: #f2fbff;
|
||||
--chyrp-light-purple: #fae4fa;
|
||||
--chyrp-medium-yellow: #fffbcc;
|
||||
--chyrp-medium-red: #fcddcf;
|
||||
--chyrp-medium-green: #daf1d0;
|
||||
--chyrp-medium-blue: #e1f2fa;
|
||||
--chyrp-medium-purple: #f6d5f6;
|
||||
--chyrp-border-yellow: #e5d7a1;
|
||||
--chyrp-border-red: #d6bdb5;
|
||||
--chyrp-border-green: #bdd6b5;
|
||||
--chyrp-border-blue: #b8cdd9;
|
||||
--chyrp-border-purple: #d6b5d6;
|
||||
}
|
||||
*::selection {
|
||||
color: #1f1f23;
|
||||
background-color: #ffdd00;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-strong-yellow);
|
||||
}
|
||||
body {
|
||||
font-family: "Open Sans webfont", sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
tab-size: 4;
|
||||
margin: 2rem;
|
||||
max-width: 1024px;
|
||||
background-color: #ffffff;
|
||||
background-color: var(--chyrp-pure-white);
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: bold;
|
||||
|
@ -110,6 +143,7 @@ h2 {
|
|||
h3, h4, h5, h6 {
|
||||
font-size: 1em;
|
||||
font-weight: 600;
|
||||
border-bottom: 1px solid var(--chyrp-irish-grey);
|
||||
}
|
||||
sup, sub {
|
||||
line-height: 1;
|
||||
|
@ -145,8 +179,8 @@ small {
|
|||
font-size: 0.75em;
|
||||
}
|
||||
mark {
|
||||
color: #1f1f23;
|
||||
background-color: #ffdd00;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-strong-yellow);
|
||||
}
|
||||
del {
|
||||
font: inherit;
|
||||
|
@ -154,8 +188,8 @@ del {
|
|||
}
|
||||
ins {
|
||||
font: inherit;
|
||||
color: #1f1f23;
|
||||
background-color: #daf1d0;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-medium-green);
|
||||
}
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
|
@ -190,20 +224,21 @@ dl dd {
|
|||
hr {
|
||||
border: none;
|
||||
clear: both;
|
||||
border-top: 1px solid #dddddd;
|
||||
border-top: 1px solid var(--chyrp-irish-grey);
|
||||
margin: 2rem 0rem;
|
||||
}
|
||||
aside {
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 1rem;
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #e5d7a1;
|
||||
padding: 0.5rem;
|
||||
border: 1px solid var(--chyrp-border-yellow);
|
||||
border-radius: 0.25em;
|
||||
background-color: #fffde6;
|
||||
background-color: var(--chyrp-light-yellow);
|
||||
}
|
||||
pre {
|
||||
font-family: "Cousine webfont", monospace;
|
||||
font-size: 0.85em;
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
margin: 1rem 0rem;
|
||||
padding: 1rem;
|
||||
overflow-x: auto;
|
||||
|
@ -212,9 +247,9 @@ pre {
|
|||
code {
|
||||
font-family: "Cousine webfont", monospace;
|
||||
font-size: 0.85em;
|
||||
background-color: #efefef;
|
||||
padding: 0px 2px;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
padding: 2px 4px 0px 4px;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
vertical-align: bottom;
|
||||
white-space: break-spaces;
|
||||
}
|
||||
|
@ -234,22 +269,22 @@ table {
|
|||
overflow-x: scroll;
|
||||
}
|
||||
table th {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
padding: 0.5rem;
|
||||
font: inherit;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
border: 1px solid #afafaf;
|
||||
border: 1px solid var(--chyrp-scottish-grey);
|
||||
}
|
||||
table td {
|
||||
padding: 0.5rem;
|
||||
font: inherit;
|
||||
vertical-align: middle;
|
||||
border: 1px solid #cfcfcf;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
}
|
||||
table tbody tr:nth-child(even) td {
|
||||
background-color: #fbfbfb;
|
||||
background-color: var(--chyrp-summer-grey);
|
||||
}
|
||||
table tbody tr td.emblem {
|
||||
text-align: center;
|
||||
|
@ -262,18 +297,18 @@ td > *:last-child {
|
|||
}
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 0.125em;
|
||||
}
|
||||
a:focus {
|
||||
outline: #ff7f00 dashed 2px;
|
||||
outline-offset: 1px;
|
||||
outline: var(--chyrp-strong-orange) dashed 2px;
|
||||
outline-offset: 0px;
|
||||
}
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
color: #1e57ba;
|
||||
color: var(--chyrp-strong-blue);
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 0.125em;
|
||||
}
|
||||
|
@ -291,26 +326,29 @@ a.emblem > img {
|
|||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
}
|
||||
h3, h4, h5, h6 {
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
hr {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
aside {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
pre {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
}
|
||||
code {
|
||||
background-color: #dfdfdf;
|
||||
border-color: #afafaf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
table tbody tr td {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
table tbody tr:nth-child(even) td {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: admin/help/canonical_url.twig:3 admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr "Kanonische URL"
|
||||
|
||||
|
@ -94,8 +94,8 @@ msgstr ""
|
|||
"und dann in aufsteigender Reihenfolge der Blogpost-ID sortieren."
|
||||
|
||||
#: admin/help/markdown.twig:3 admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13 admin/partials/post_fields.twig:52
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14 admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr "Markdown"
|
||||
|
||||
|
@ -116,7 +116,7 @@ msgid "## Heading"
|
|||
msgstr "## Kopf"
|
||||
|
||||
#: admin/help/markdown.twig:20 admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455 admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466 admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr "Kopf"
|
||||
|
||||
|
@ -128,8 +128,8 @@ msgstr "### Kopf"
|
|||
msgid "**Strong**"
|
||||
msgstr "**Stark**"
|
||||
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr "Stark"
|
||||
|
||||
|
@ -137,8 +137,8 @@ msgstr "Stark"
|
|||
msgid "*Emphasis*"
|
||||
msgstr "*Schwerpunkt*"
|
||||
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
msgid "Emphasis"
|
||||
msgstr "Schwerpunkt"
|
||||
|
||||
|
@ -154,8 +154,8 @@ msgstr "Zitat"
|
|||
msgid "~~Strikethrough~~"
|
||||
msgstr "~~Durchgestrichen~~"
|
||||
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr "Durchgestrichen"
|
||||
|
||||
|
@ -163,8 +163,8 @@ msgstr "Durchgestrichen"
|
|||
msgid "`Code`"
|
||||
msgstr "`Code`"
|
||||
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
|
@ -172,8 +172,8 @@ msgstr "Code"
|
|||
msgid "==Highlight=="
|
||||
msgstr "==Markieren=="
|
||||
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr "Markieren"
|
||||
|
||||
|
@ -205,8 +205,8 @@ msgstr "Neuer Absatz"
|
|||
msgid "[title](URL)"
|
||||
msgstr "[title](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr "Hyperlink"
|
||||
|
||||
|
@ -214,8 +214,8 @@ msgstr "Hyperlink"
|
|||
msgid "![description](URL)"
|
||||
msgstr "![description](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
|
@ -301,7 +301,7 @@ msgstr ""
|
|||
"(“-”) enthalten."
|
||||
|
||||
#: admin/help/unicode_emoticons.twig:3 admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr "Unicode-Emoticons"
|
||||
|
||||
|
@ -324,112 +324,67 @@ msgstr "Emoticon"
|
|||
msgid "Emoji"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: admin/javascripts/admin.js.php:55 admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56 admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr "Alle umschalten"
|
||||
|
||||
#: admin/javascripts/admin.js.php:171 admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177 admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr "Sind Sie sicher, dass Sie fortfahren möchten?"
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr "Hochladen..."
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr "Datei-Upload fehlgeschlagen!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr "Dateityp wird nicht unterstützt!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr "Maximale Dateigröße: %d Megabyte!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:300 admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319 admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr "Modales Fenster"
|
||||
|
||||
#: admin/javascripts/admin.js.php:309 admin/pages/manage_uploads.twig:18
|
||||
#: admin/javascripts/admin.js.php:328 admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr "Hochladungen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:335 admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354 admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:349 admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr "schliessen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr "Hilfe inhalte"
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr "kopf"
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr "stark"
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr "schwerpunkt"
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr "durchgestrichen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr "markieren"
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr "code"
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr "hyperlink"
|
||||
|
||||
#: admin/javascripts/admin.js.php:644 admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr "bild"
|
||||
|
||||
#: admin/javascripts/admin.js.php:659 admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622 admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:729 admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686 admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr "Einfügen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr "einfügen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:777 admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731 admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr "vorschau"
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr "Wörter:"
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr "Vorschau inhalt"
|
||||
|
||||
|
@ -457,13 +412,21 @@ msgstr "Beiträge im Feed"
|
|||
|
||||
#: admin/pages/content_settings.twig:20
|
||||
msgid "Items Per Admin Page"
|
||||
msgstr "Beiträge pro Blog-Seite"
|
||||
msgstr "Beiträge pro Admin-Seite"
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Default Post Status"
|
||||
msgstr "Standard Blogpoststatus"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "Default Page Status"
|
||||
msgstr "Standard Seitestatus"
|
||||
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr "Pfad für hochladen"
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid ""
|
||||
"The directory to which files are uploaded, relative to your installation "
|
||||
"directory."
|
||||
|
@ -471,56 +434,56 @@ msgstr ""
|
|||
"Das Verzeichnis, in das die Dateien hochgeladen werden, relativ zu Ihrem "
|
||||
"Installationsverzeichnis."
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Grössenbeschränkung für hochladen"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr "(Megabytes)"
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Feed Format"
|
||||
msgstr "Feed Format"
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
#: admin/pages/content_settings.twig:73
|
||||
msgid "Search Pages"
|
||||
msgstr "Seiten suchen"
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr "Aufnahme von Seiten in die Suchergebnisse."
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr "Webmentions"
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr "Senden und empfangen Sie Benachrichtigungen, wenn URLs erwähnt werden."
|
||||
|
||||
#: admin/pages/content_settings.twig:73 admin/pages/content_settings.twig:86
|
||||
#: admin/pages/content_settings.twig:95 admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21 admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57 admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/general_settings.twig:38 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11 admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
msgstr "hilfe"
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr "Zeige Emoticons als Unicode-Emoji an."
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr "Verfassen Sie Blog-Inhalte mithilfe der Markdown-Textformatierung."
|
||||
|
||||
#: admin/pages/content_settings.twig:97 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95 admin/pages/user_settings.twig:57
|
||||
#: admin/pages/content_settings.twig:119 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96 admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
|
@ -554,8 +517,8 @@ msgstr "Löschen!"
|
|||
|
||||
#: admin/pages/delete_group.twig:56 admin/pages/delete_page.twig:24
|
||||
#: admin/pages/delete_post.twig:17 admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr "Annulieren"
|
||||
|
||||
|
@ -684,7 +647,7 @@ msgstr "Vollständiger Name"
|
|||
#: admin/pages/edit_user.twig:43 admin/pages/edit_user.twig:51
|
||||
#: admin/pages/export.twig:19 admin/pages/export.twig:37
|
||||
#: admin/pages/export.twig:55 admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:33
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37 admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
msgid "(optional)"
|
||||
|
@ -764,25 +727,25 @@ msgstr "Feathers"
|
|||
msgid "Enabled"
|
||||
msgstr "Ermöglicht"
|
||||
|
||||
#: admin/pages/feathers.twig:15 admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15 admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
msgstr "info"
|
||||
#: admin/pages/feathers.twig:16 admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16 admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:28 admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30 admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr "Deinstallieren"
|
||||
|
||||
#: admin/pages/feathers.twig:32 admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34 admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivieren"
|
||||
|
||||
#: admin/pages/feathers.twig:41 admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43 admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
||||
#: admin/pages/feathers.twig:60 admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64 admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr "Aktivieren"
|
||||
|
||||
|
@ -802,37 +765,41 @@ msgstr "Beschreibung"
|
|||
msgid "Chyrp URL"
|
||||
msgstr "Chyrp URL"
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr "Die Basis-URL für Ihre Website."
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr ""
|
||||
"Lassen Sie die URLs Ihrer Website auf eine andere Stelle als Ihr "
|
||||
"Installationsverzeichnis verweisen."
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr "Kontakt Email Adresse"
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr "Zeitzone"
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr "Monospace-Schriftart"
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr "Schreiben Sie mit einer Monospace-Schriftart."
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr "Auf Updates prüfen"
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr "Aktuelle Version: %s."
|
||||
|
@ -920,29 +887,29 @@ msgstr "Kontroll"
|
|||
#: admin/pages/manage_groups.twig:41 admin/pages/manage_groups.twig:46
|
||||
#: admin/pages/manage_pages.twig:55 admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: admin/pages/manage_groups.twig:51 admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52 admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
msgstr "ändern"
|
||||
#: admin/pages/manage_posts.twig:56 admin/pages/manage_users.twig:63
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: admin/pages/manage_groups.twig:54 admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_posts.twig:59 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgstr "löschen"
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: admin/pages/manage_groups.twig:60 admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62 admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72 admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61 admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66 admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73 admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr "Keine Ergebnisse"
|
||||
|
||||
#: admin/pages/manage_groups.twig:68 admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70 admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69 admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74 admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr "Seite %d von %s"
|
||||
|
@ -1001,11 +968,15 @@ msgstr "Neuer Blogpost"
|
|||
msgid "Posted"
|
||||
msgstr "Publiziert"
|
||||
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: admin/pages/manage_posts.twig:48 admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr "[Keine]"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr "Hochladungen steuern"
|
||||
|
@ -1027,14 +998,14 @@ msgid "Type"
|
|||
msgstr "Typ"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgstr "herunterladen"
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr "Sortieren Sie die Ergebnisse nach:"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr "Sortiere Ergebnisse"
|
||||
|
||||
|
@ -1058,11 +1029,11 @@ msgstr "Angemeldet"
|
|||
msgid "Modules"
|
||||
msgstr "Modul"
|
||||
|
||||
#: admin/pages/modules.twig:23 admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24 admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr "Dieses Modul steht im Konflikt mit den folgenden Modulen:"
|
||||
|
||||
#: admin/pages/modules.twig:33 admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34 admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr "Für dieses Modul müssen die folgenden Modulen aktiviert sein:"
|
||||
|
||||
|
@ -1090,120 +1061,120 @@ msgstr "Clean URLs"
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr "Verleiht Ihrer Website pretty URLs."
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
msgstr "Erfordert Unterstützung für das Umschreiben von URLs."
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr "Laden Sie die URL-Rewrite-Dateien herunter."
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr "Startseite"
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr ""
|
||||
"Machen Sie die Standardroute zu einer Homepage anstelle des Blog-Index."
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr "Blogpost-ansichts URL"
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr "(braucht clean URLs)"
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr "Syntax:"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr "Erstellt im Jahre"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr "(z.B. 2021)"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr "Erstellt im Monate"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr "(z.B. 12)"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr "Tag erstellt"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr "(z.B. 25)"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr "Stunde erstellt"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr "(z.B. 03)"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr "Minute erstellt"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr "(z.B. 59)"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr "Sekunde erstellt"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr "(z.B. 30)"
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr "Blogpost ID"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr "Blogpostautor (Benutzername)"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr "(z.B. Jürgen)"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr "Die nicht-einzigartige slug"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr "(z.B. das_hier_ist_einzigartig)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr "Die einzigartige Form von (clean)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr "(z.B.: das_hier_ist_vergeben_2)"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr "Die Blogposts` feather"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr "(z.B. Text)"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr "Die Pluralform der Blogpostfeather"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr "(z.B. Links)"
|
||||
|
||||
|
@ -1215,7 +1186,7 @@ msgstr "Themen"
|
|||
msgid "Blog Themes"
|
||||
msgstr "Blog Themen"
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr "Selektieren"
|
||||
|
||||
|
@ -1268,58 +1239,54 @@ msgstr "Schreib"
|
|||
msgid "Body"
|
||||
msgstr "Body"
|
||||
|
||||
#: admin/partials/page_fields.twig:23 admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25 admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr "Öffentlich und in der Seitenliste sichtbar"
|
||||
|
||||
#: admin/partials/page_fields.twig:36 admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38 admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr "Öffentlich"
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr "Privat und in der Seitenliste sichtbar"
|
||||
|
||||
#: admin/partials/page_fields.twig:40 admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42 admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr "Privat"
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr "Priorität in der Seitenliste"
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr "Hoch"
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr "Medium"
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr "Untere"
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr "Elter"
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr "[Keine]"
|
||||
|
||||
#: admin/partials/page_fields.twig:74 admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76 admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr "Publizieren"
|
||||
|
||||
#: admin/partials/page_fields.twig:77 admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187 admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79 admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189 admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
|
@ -1330,30 +1297,30 @@ msgid_plural "%d files previously uploaded with this post."
|
|||
msgstr[0] "%d Datei wurde zuvor mit diesem Beitrag hochgeladen."
|
||||
msgstr[1] "%d Dateien wurden zuvor mit diesem Beitrag hochgeladen."
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr "Geplant"
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr "Nur für diese Gruppe von Benutzern sichtbar:"
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr "Alle registrierten Benutzer"
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr "Angepinnter Beitrag?"
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr "(zeigt diesen Beitrag vor allen anderen)"
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr "Zeitstempel"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#: admin/help/canonical_url.twig:3
|
||||
#: admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr ""
|
||||
|
||||
|
@ -42,9 +42,9 @@ msgstr ""
|
|||
#: admin/help/markdown.twig:3
|
||||
#: admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13
|
||||
#: admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13
|
||||
#: admin/partials/post_fields.twig:52
|
||||
#: admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14
|
||||
#: admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr ""
|
||||
|
||||
|
@ -62,8 +62,8 @@ msgstr ""
|
|||
|
||||
#: admin/help/markdown.twig:20
|
||||
#: admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455
|
||||
#: admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466
|
||||
#: admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
|
@ -76,8 +76,8 @@ msgid "**Strong**"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:28
|
||||
#: admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr ""
|
||||
|
||||
|
@ -86,8 +86,8 @@ msgid "*Emphasis*"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:32
|
||||
#: admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
msgid "Emphasis"
|
||||
msgstr ""
|
||||
|
||||
|
@ -104,8 +104,8 @@ msgid "~~Strikethrough~~"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:40
|
||||
#: admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr ""
|
||||
|
||||
|
@ -114,8 +114,8 @@ msgid "`Code`"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:44
|
||||
#: admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
|
@ -124,8 +124,8 @@ msgid "==Highlight=="
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:48
|
||||
#: admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr ""
|
||||
|
||||
|
@ -158,8 +158,8 @@ msgid "[title](URL)"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:65
|
||||
#: admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr ""
|
||||
|
||||
|
@ -168,8 +168,8 @@ msgid "![description](URL)"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:69
|
||||
#: admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
|
@ -249,7 +249,7 @@ msgstr ""
|
|||
|
||||
#: admin/help/unicode_emoticons.twig:3
|
||||
#: admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr ""
|
||||
|
||||
|
@ -265,122 +265,75 @@ msgstr ""
|
|||
msgid "Emoji"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:55
|
||||
#: admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56
|
||||
#: admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:171
|
||||
#: admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177
|
||||
#: admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:300
|
||||
#: admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319
|
||||
#: admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:309
|
||||
#: admin/javascripts/admin.js.php:328
|
||||
#: admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:335
|
||||
#: admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354
|
||||
#: admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:349
|
||||
#: admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:644
|
||||
#: admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:659
|
||||
#: admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622
|
||||
#: admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:729
|
||||
#: admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686
|
||||
#: admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:777
|
||||
#: admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731
|
||||
#: admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr ""
|
||||
|
||||
|
@ -412,72 +365,80 @@ msgid "Items Per Admin Page"
|
|||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Uploads Path"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
msgid "The directory to which files are uploaded, relative to your installation directory."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
msgid "Upload Size Limit"
|
||||
msgid "Default Post Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "(Megabytes)"
|
||||
msgid "Default Page Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
msgid "Feed Format"
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid "Search Pages"
|
||||
msgid "The directory to which files are uploaded, relative to your installation directory."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
msgid "Include pages in search results."
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Webmentions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgid "Feed Format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:73
|
||||
#: admin/pages/content_settings.twig:86
|
||||
msgid "Search Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:95
|
||||
#: admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21
|
||||
#: admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57
|
||||
#: admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35
|
||||
#: admin/pages/general_settings.twig:38
|
||||
#: admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11
|
||||
#: admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13
|
||||
#: admin/partials/page_fields.twig:25
|
||||
#: admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32
|
||||
#: admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
#: admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:97
|
||||
#: admin/pages/content_settings.twig:119
|
||||
#: admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66
|
||||
#: admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95
|
||||
#: admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96
|
||||
#: admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
@ -520,8 +481,8 @@ msgstr ""
|
|||
#: admin/pages/delete_post.twig:17
|
||||
#: admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50
|
||||
#: admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,7 +629,7 @@ msgstr ""
|
|||
#: admin/pages/export.twig:55
|
||||
#: admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94
|
||||
#: admin/pages/general_settings.twig:33
|
||||
#: admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37
|
||||
#: admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
|
@ -754,31 +715,31 @@ msgstr ""
|
|||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:15
|
||||
#: admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15
|
||||
#: admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
#: admin/pages/feathers.twig:16
|
||||
#: admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16
|
||||
#: admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:28
|
||||
#: admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30
|
||||
#: admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:32
|
||||
#: admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34
|
||||
#: admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:41
|
||||
#: admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43
|
||||
#: admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:60
|
||||
#: admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64
|
||||
#: admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
|
@ -799,35 +760,39 @@ msgstr ""
|
|||
msgid "Chyrp URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr ""
|
||||
|
@ -925,38 +890,38 @@ msgstr ""
|
|||
#: admin/pages/manage_pages.twig:55
|
||||
#: admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_groups.twig:51
|
||||
#: admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52
|
||||
#: admin/pages/manage_posts.twig:56
|
||||
#: admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_groups.twig:54
|
||||
#: admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55
|
||||
#: admin/pages/manage_posts.twig:59
|
||||
#: admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_groups.twig:60
|
||||
#: admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62
|
||||
#: admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72
|
||||
#: admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61
|
||||
#: admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66
|
||||
#: admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73
|
||||
#: admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_groups.twig:68
|
||||
#: admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70
|
||||
#: admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69
|
||||
#: admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74
|
||||
#: admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr ""
|
||||
|
@ -1020,11 +985,16 @@ msgid "Posted"
|
|||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_posts.twig:29
|
||||
#: admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_posts.twig:48
|
||||
#: admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr ""
|
||||
|
@ -1046,14 +1016,14 @@ msgid "Type"
|
|||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1079,13 +1049,13 @@ msgstr ""
|
|||
msgid "Modules"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/modules.twig:23
|
||||
#: admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24
|
||||
#: admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/modules.twig:33
|
||||
#: admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34
|
||||
#: admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1115,119 +1085,119 @@ msgstr ""
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1239,7 +1209,7 @@ msgstr ""
|
|||
msgid "Blog Themes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1292,64 +1262,60 @@ msgstr ""
|
|||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:23
|
||||
#: admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:36
|
||||
#: admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:40
|
||||
#: admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42
|
||||
#: admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:74
|
||||
#: admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76
|
||||
#: admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:77
|
||||
#: admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187
|
||||
#: admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79
|
||||
#: admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189
|
||||
#: admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1360,31 +1326,31 @@ msgid_plural "%d files previously uploaded with this post."
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: admin/help/canonical_url.twig:3 admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr "URL canonique"
|
||||
|
||||
|
@ -92,8 +92,8 @@ msgstr ""
|
|||
"filtrer dans l'ordre croissant des index des articles."
|
||||
|
||||
#: admin/help/markdown.twig:3 admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13 admin/partials/post_fields.twig:52
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14 admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr "Mardown"
|
||||
|
||||
|
@ -114,7 +114,7 @@ msgid "## Heading"
|
|||
msgstr "## Titre"
|
||||
|
||||
#: admin/help/markdown.twig:20 admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455 admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466 admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr "Titre"
|
||||
|
||||
|
@ -126,8 +126,8 @@ msgstr "### Titre"
|
|||
msgid "**Strong**"
|
||||
msgstr "**Gras**"
|
||||
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr "Gras"
|
||||
|
||||
|
@ -135,8 +135,8 @@ msgstr "Gras"
|
|||
msgid "*Emphasis*"
|
||||
msgstr "*Emphase*"
|
||||
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
msgid "Emphasis"
|
||||
msgstr "Emphase"
|
||||
|
||||
|
@ -152,8 +152,8 @@ msgstr "Citation"
|
|||
msgid "~~Strikethrough~~"
|
||||
msgstr "~~Barré~~"
|
||||
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr "Barré"
|
||||
|
||||
|
@ -161,8 +161,8 @@ msgstr "Barré"
|
|||
msgid "`Code`"
|
||||
msgstr "`Code`"
|
||||
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
|
@ -170,8 +170,8 @@ msgstr "Code"
|
|||
msgid "==Highlight=="
|
||||
msgstr "==Surligné=="
|
||||
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr "Surligné"
|
||||
|
||||
|
@ -203,8 +203,8 @@ msgstr "Nouveau paragraphe"
|
|||
msgid "[title](URL)"
|
||||
msgstr "[titre](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr "Lien hypertexte"
|
||||
|
||||
|
@ -212,8 +212,8 @@ msgstr "Lien hypertexte"
|
|||
msgid "![description](URL)"
|
||||
msgstr "![description](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
|
@ -295,7 +295,7 @@ msgstr ""
|
|||
"Un Slug est une URL pratique permettant de nommer un article ou une page."
|
||||
|
||||
#: admin/help/unicode_emoticons.twig:3 admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr "Émoticônes unicode"
|
||||
|
||||
|
@ -318,112 +318,67 @@ msgstr "Émoticône"
|
|||
msgid "Emoji"
|
||||
msgstr "Émoji"
|
||||
|
||||
#: admin/javascripts/admin.js.php:55 admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56 admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr "Tout basculer"
|
||||
|
||||
#: admin/javascripts/admin.js.php:171 admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177 admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr "Êtes-vous sûr de vouloir continuer ?"
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr "Téléchargement..."
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr "Le téléchargement du fichier a échoué !"
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr "Le type de fichier n’est pas pris en charge !"
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr "Taille maximale du fichier : %d mégaoctets !"
|
||||
|
||||
#: admin/javascripts/admin.js.php:300 admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319 admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr "Fenêtre modale"
|
||||
|
||||
#: admin/javascripts/admin.js.php:309 admin/pages/manage_uploads.twig:18
|
||||
#: admin/javascripts/admin.js.php:328 admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr "Téléchargements"
|
||||
|
||||
#: admin/javascripts/admin.js.php:335 admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354 admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: admin/javascripts/admin.js.php:349 admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr "fermer"
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr "Contenu de l’aide"
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr "titre"
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr "gras"
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr "italique"
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr "barré"
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr "surligné"
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr "code"
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr "lien hypertexte"
|
||||
|
||||
#: admin/javascripts/admin.js.php:644 admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr "image"
|
||||
|
||||
#: admin/javascripts/admin.js.php:659 admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622 admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr "Téléchargement"
|
||||
|
||||
#: admin/javascripts/admin.js.php:729 admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686 admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr "Insérer"
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr "insérer"
|
||||
|
||||
#: admin/javascripts/admin.js.php:777 admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731 admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr "Prévisualisation"
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr "prévisualisation"
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr "Mots :"
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr "Contenu du prévisualisation"
|
||||
|
||||
|
@ -454,10 +409,18 @@ msgid "Items Per Admin Page"
|
|||
msgstr "Items par page d'administration"
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Default Post Status"
|
||||
msgstr "État de la publication par défaut"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "Default Page Status"
|
||||
msgstr "Statut de la page par défaut"
|
||||
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr "Chemin du téléchargement"
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid ""
|
||||
"The directory to which files are uploaded, relative to your installation "
|
||||
"directory."
|
||||
|
@ -465,57 +428,57 @@ msgstr ""
|
|||
"Le dossier dans lequel les fichiers sont téléchargés, relativement à votre "
|
||||
"dossier d'installation."
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Taille limite de téléchargement"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr "(Megabytes)"
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Feed Format"
|
||||
msgstr "Format du flux"
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
#: admin/pages/content_settings.twig:73
|
||||
msgid "Search Pages"
|
||||
msgstr "Pages de recherche"
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr "Pages incluses dans les résultats de recherche."
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr "Webmentions"
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr "Envoyer et recevoir des notifications quand les URL sont mentionnées."
|
||||
|
||||
#: admin/pages/content_settings.twig:73 admin/pages/content_settings.twig:86
|
||||
#: admin/pages/content_settings.twig:95 admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21 admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57 admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/general_settings.twig:38 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11 admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
msgstr "aide"
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr "Aider"
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr "Afficher les émoticônes comme des emoji Unicode."
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr ""
|
||||
"Écrire le contenu du blog en utilisant le Markdown comme format de texte."
|
||||
|
||||
#: admin/pages/content_settings.twig:97 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95 admin/pages/user_settings.twig:57
|
||||
#: admin/pages/content_settings.twig:119 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96 admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr "Mise à jour"
|
||||
|
||||
|
@ -549,8 +512,8 @@ msgstr "Supprimé !"
|
|||
|
||||
#: admin/pages/delete_group.twig:56 admin/pages/delete_page.twig:24
|
||||
#: admin/pages/delete_post.twig:17 admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
|
@ -677,7 +640,7 @@ msgstr "Nom complet"
|
|||
#: admin/pages/edit_user.twig:43 admin/pages/edit_user.twig:51
|
||||
#: admin/pages/export.twig:19 admin/pages/export.twig:37
|
||||
#: admin/pages/export.twig:55 admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:33
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37 admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
msgid "(optional)"
|
||||
|
@ -757,25 +720,25 @@ msgstr "Plumes"
|
|||
msgid "Enabled"
|
||||
msgstr "Activé"
|
||||
|
||||
#: admin/pages/feathers.twig:15 admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15 admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
msgstr "info"
|
||||
#: admin/pages/feathers.twig:16 admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16 admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:28 admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30 admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr "Désinstaller"
|
||||
|
||||
#: admin/pages/feathers.twig:32 admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34 admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#: admin/pages/feathers.twig:41 admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43 admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr "Désactivé"
|
||||
|
||||
#: admin/pages/feathers.twig:60 admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64 admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
|
||||
|
@ -795,37 +758,41 @@ msgstr "Description"
|
|||
msgid "Chyrp URL"
|
||||
msgstr "URL de Chyrp"
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr "L’URL de base de votre site."
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr ""
|
||||
"Faites en sorte que l'URL de votre site pointe vers un autre emplacement que "
|
||||
"votre dossier d'installation."
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr "Courriel de contact"
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr "Time Zone"
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr "Fonte Monospace"
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr "Écrire avec une fonte monospace."
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr "Vérification des téléchargements"
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr "Version en cours : %s."
|
||||
|
@ -913,29 +880,29 @@ msgstr "Contrôles"
|
|||
#: admin/pages/manage_groups.twig:41 admin/pages/manage_groups.twig:46
|
||||
#: admin/pages/manage_pages.twig:55 admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: admin/pages/manage_groups.twig:51 admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52 admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
msgstr "modifier"
|
||||
#: admin/pages/manage_posts.twig:56 admin/pages/manage_users.twig:63
|
||||
msgid "Edit"
|
||||
msgstr "Modifier"
|
||||
|
||||
#: admin/pages/manage_groups.twig:54 admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_posts.twig:59 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgstr "supprimer"
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: admin/pages/manage_groups.twig:60 admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62 admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72 admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61 admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66 admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73 admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr "Aucun résultat"
|
||||
|
||||
#: admin/pages/manage_groups.twig:68 admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70 admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69 admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74 admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr "Page %d sur %s"
|
||||
|
@ -994,11 +961,15 @@ msgstr "Nouvel article"
|
|||
msgid "Posted"
|
||||
msgstr "Posté"
|
||||
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#: admin/pages/manage_posts.twig:48 admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr "[Aucun]"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr "Gérer les téléchargements"
|
||||
|
@ -1020,14 +991,14 @@ msgid "Type"
|
|||
msgstr "Type"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgstr "télécharger"
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr "Trier les résultats par:"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr "Trier les résultats"
|
||||
|
||||
|
@ -1051,11 +1022,11 @@ msgstr "Rejoint"
|
|||
msgid "Modules"
|
||||
msgstr "Modules"
|
||||
|
||||
#: admin/pages/modules.twig:23 admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24 admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr "Ce module est en conflit avec les modules suivants :"
|
||||
|
||||
#: admin/pages/modules.twig:33 admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34 admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr "Ce module nécessite les modules suivants pour fonctionner :"
|
||||
|
||||
|
@ -1083,119 +1054,119 @@ msgstr "Nettoyer les URLs"
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr "Donnez à votre site des URLs plus jolies."
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
msgstr "Nécessite la possibilité de réécrire les URLs."
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr "Téléchargez les fichiers de réécriture d’URL."
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr "Accueil"
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr "Faire de l'accueil la route par défaut à la place de l'index du blog."
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr "URL de visualisation de l'article"
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr "(nécessite un nettoyage des URLs)"
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr "Syntaxe :"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr "Année d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr "(exemple : 2007)"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr "Mois d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr "(exemple : 12)"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr "Jour d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr "(exemple : 25)"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr "Heure d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr "(exemple : 03)"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr "Minute d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr "(exemple : 59)"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr "Seconde d'envoi"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr "(exemple : 30)"
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr "Index de l'article"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr "Auteur de l'article (nom d'utilisateur)"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr "(exemple : Alex)"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr "Adresse non unique"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr "(exemple : ceci_est_propre)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr "L'unique formulaire de (propre)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr "(exemple : celui_ci_en_a_pris_2)"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr "La plume d'article"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr "(exemple : texte)"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr "La forme plurielle de la plume d'article"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr "(exemple : liens)"
|
||||
|
||||
|
@ -1207,7 +1178,7 @@ msgstr "Thèmes"
|
|||
msgid "Blog Themes"
|
||||
msgstr "Thèmes de blog"
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr "Choisir"
|
||||
|
||||
|
@ -1261,58 +1232,54 @@ msgstr "Écrire"
|
|||
msgid "Body"
|
||||
msgstr "Écrire"
|
||||
|
||||
#: admin/partials/page_fields.twig:23 admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25 admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr "Liste des pages publiques et visibles"
|
||||
|
||||
#: admin/partials/page_fields.twig:36 admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38 admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr "Public"
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr "Liste des pages visibles et privées"
|
||||
|
||||
#: admin/partials/page_fields.twig:40 admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42 admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr "Privée"
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr "Priorité dans la liste des pages"
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr "Haut"
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr "Moyen"
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr "Bas"
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr "Parent"
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr "[Aucun]"
|
||||
|
||||
#: admin/partials/page_fields.twig:74 admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76 admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr "Publier"
|
||||
|
||||
#: admin/partials/page_fields.twig:77 admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187 admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79 admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189 admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr "Sauvegarder"
|
||||
|
||||
|
@ -1323,30 +1290,30 @@ msgid_plural "%d files previously uploaded with this post."
|
|||
msgstr[0] "%d fichier précédemment téléchargé avec cet article."
|
||||
msgstr[1] "%d fichiers précédemment téléchargés avec cet article."
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr "Programmé"
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr "Visible seulement par un groupe d'utilisateurs :"
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr "Tous les utilisateurs enregistrés"
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr "Épingler ?"
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr "(montrer cet article au-dessus de tous les autres)"
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr "Timestamp"
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: admin/help/canonical_url.twig:3 admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr "URL canonico"
|
||||
|
||||
|
@ -92,8 +92,8 @@ msgstr ""
|
|||
"crescente di ID post."
|
||||
|
||||
#: admin/help/markdown.twig:3 admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13 admin/partials/post_fields.twig:52
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14 admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr "Markdown"
|
||||
|
||||
|
@ -114,7 +114,7 @@ msgid "## Heading"
|
|||
msgstr "## Intestazione"
|
||||
|
||||
#: admin/help/markdown.twig:20 admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455 admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466 admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr "Intestazione"
|
||||
|
||||
|
@ -126,8 +126,8 @@ msgstr "### Intestazione"
|
|||
msgid "**Strong**"
|
||||
msgstr "**Forte**"
|
||||
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr "Forte"
|
||||
|
||||
|
@ -135,8 +135,8 @@ msgstr "Forte"
|
|||
msgid "*Emphasis*"
|
||||
msgstr "*Enfasi*"
|
||||
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
msgid "Emphasis"
|
||||
msgstr "Enfasi"
|
||||
|
||||
|
@ -152,8 +152,8 @@ msgstr "Citazione"
|
|||
msgid "~~Strikethrough~~"
|
||||
msgstr "~~Barrato~~"
|
||||
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr "Barrato"
|
||||
|
||||
|
@ -161,8 +161,8 @@ msgstr "Barrato"
|
|||
msgid "`Code`"
|
||||
msgstr "`Codice`"
|
||||
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
|
@ -170,8 +170,8 @@ msgstr "Codice"
|
|||
msgid "==Highlight=="
|
||||
msgstr "==Evidenziare=="
|
||||
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr "Evidenziare"
|
||||
|
||||
|
@ -203,8 +203,8 @@ msgstr "Nuovo paragrafo"
|
|||
msgid "[title](URL)"
|
||||
msgstr "[titolo](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr "Collegamento ipertestuale"
|
||||
|
||||
|
@ -212,8 +212,8 @@ msgstr "Collegamento ipertestuale"
|
|||
msgid "![description](URL)"
|
||||
msgstr "![descrizione](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr "Immagine"
|
||||
|
||||
|
@ -298,7 +298,7 @@ msgstr ""
|
|||
"numeri 0-9 e trattino-meno (“-”)."
|
||||
|
||||
#: admin/help/unicode_emoticons.twig:3 admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr "Emoticon Unicode"
|
||||
|
||||
|
@ -321,112 +321,67 @@ msgstr "Emoticon"
|
|||
msgid "Emoji"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: admin/javascripts/admin.js.php:55 admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56 admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr "Spunta tutto"
|
||||
|
||||
#: admin/javascripts/admin.js.php:171 admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177 admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr "Sei sicuro di volere procedere?"
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr "Caricamento in corso…."
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr "Caricamento file fallito!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr "Tipo di file non supportato!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr "Dimensione massima del file: %d Megabyte!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:300 admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319 admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr "Finestra modale"
|
||||
|
||||
#: admin/javascripts/admin.js.php:309 admin/pages/manage_uploads.twig:18
|
||||
#: admin/javascripts/admin.js.php:328 admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr "Caricamenti"
|
||||
|
||||
#: admin/javascripts/admin.js.php:335 admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354 admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#: admin/javascripts/admin.js.php:349 admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr "chiudi"
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr "Contenuto di aiuto"
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr "intestazione"
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr "forte"
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr "enfasi"
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr "barrato"
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr "evidenza"
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr "codice"
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr "collegamento ipertestuale"
|
||||
|
||||
#: admin/javascripts/admin.js.php:644 admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr "immagine"
|
||||
|
||||
#: admin/javascripts/admin.js.php:659 admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622 admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr "Carica"
|
||||
|
||||
#: admin/javascripts/admin.js.php:729 admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686 admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr "Inserisci"
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr "inserisci"
|
||||
|
||||
#: admin/javascripts/admin.js.php:777 admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731 admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr "anteprima"
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr "Parole:"
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr "Contenuto di anteprima"
|
||||
|
||||
|
@ -457,10 +412,18 @@ msgid "Items Per Admin Page"
|
|||
msgstr "Elementi per pagina nella are di amministrazione"
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Default Post Status"
|
||||
msgstr "Stato Post predefinito"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "Default Page Status"
|
||||
msgstr "Stato pagina predefinito"
|
||||
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr "Percorso per i caricamenti dati"
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid ""
|
||||
"The directory to which files are uploaded, relative to your installation "
|
||||
"directory."
|
||||
|
@ -468,58 +431,58 @@ msgstr ""
|
|||
"La directory in cui vengono caricati i file relativi alla directory di "
|
||||
"installazione."
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Limite delle dimensioni per il caricamento dati"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr "(Megabyte)"
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Feed Format"
|
||||
msgstr "Formato feed"
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
#: admin/pages/content_settings.twig:73
|
||||
msgid "Search Pages"
|
||||
msgstr "Cerca Pagine"
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr "Includi pagine nei risultati della ricerca."
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr "Webmention"
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr "Invia e ricevi notifiche quando vengono menzionati gli URL."
|
||||
|
||||
#: admin/pages/content_settings.twig:73 admin/pages/content_settings.twig:86
|
||||
#: admin/pages/content_settings.twig:95 admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21 admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57 admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/general_settings.twig:38 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11 admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
msgstr "aiuto"
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr "Aiuto"
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr "Visualizza emoticon come emoji Unicode."
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr ""
|
||||
"Comporre il contenuto del blog utilizzando la formattazione del testo "
|
||||
"tramite Markdown."
|
||||
|
||||
#: admin/pages/content_settings.twig:97 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95 admin/pages/user_settings.twig:57
|
||||
#: admin/pages/content_settings.twig:119 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96 admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
|
@ -553,8 +516,8 @@ msgstr "Elimina!"
|
|||
|
||||
#: admin/pages/delete_group.twig:56 admin/pages/delete_page.twig:24
|
||||
#: admin/pages/delete_post.twig:17 admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
|
@ -681,7 +644,7 @@ msgstr "Nome completo"
|
|||
#: admin/pages/edit_user.twig:43 admin/pages/edit_user.twig:51
|
||||
#: admin/pages/export.twig:19 admin/pages/export.twig:37
|
||||
#: admin/pages/export.twig:55 admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:33
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37 admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
msgid "(optional)"
|
||||
|
@ -761,25 +724,25 @@ msgstr "Feather"
|
|||
msgid "Enabled"
|
||||
msgstr "Abilitato"
|
||||
|
||||
#: admin/pages/feathers.twig:15 admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15 admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
msgstr "info"
|
||||
#: admin/pages/feathers.twig:16 admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16 admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:28 admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30 admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr "Disinstalla"
|
||||
|
||||
#: admin/pages/feathers.twig:32 admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34 admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr "Disabilita"
|
||||
|
||||
#: admin/pages/feathers.twig:41 admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43 admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr "Disabilitato"
|
||||
|
||||
#: admin/pages/feathers.twig:60 admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64 admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr "Abilita"
|
||||
|
||||
|
@ -799,37 +762,41 @@ msgstr "Descrizione"
|
|||
msgid "Chyrp URL"
|
||||
msgstr "URL Chyrp"
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr "L'URL di base del sito."
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr ""
|
||||
"Gli URL del tuo sito sono indirizzati in una directory diversa da quella di "
|
||||
"installazione."
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr "Contatto di Indirizzo email"
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr "Fuso orario"
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr "Carattere a spaziatura fissa"
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr "Scrivi con un carattere a spaziatura fissa."
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr "Verificare la disponibilità di aggiornamenti"
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr "Versione corrente: %s."
|
||||
|
@ -917,29 +884,29 @@ msgstr "Controlli"
|
|||
#: admin/pages/manage_groups.twig:41 admin/pages/manage_groups.twig:46
|
||||
#: admin/pages/manage_pages.twig:55 admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgstr "sì"
|
||||
msgid "Yes"
|
||||
msgstr "Sì"
|
||||
|
||||
#: admin/pages/manage_groups.twig:51 admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52 admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
msgstr "modifica"
|
||||
#: admin/pages/manage_posts.twig:56 admin/pages/manage_users.twig:63
|
||||
msgid "Edit"
|
||||
msgstr "Modifica"
|
||||
|
||||
#: admin/pages/manage_groups.twig:54 admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_posts.twig:59 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgstr "elimina"
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: admin/pages/manage_groups.twig:60 admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62 admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72 admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61 admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66 admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73 admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr "Nessun risultato"
|
||||
|
||||
#: admin/pages/manage_groups.twig:68 admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70 admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69 admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74 admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr "Pagina %d di %s"
|
||||
|
@ -998,11 +965,15 @@ msgstr "Nuovo post"
|
|||
msgid "Posted"
|
||||
msgstr "Pubblicato"
|
||||
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
#: admin/pages/manage_posts.twig:48 admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr "[Nessuno]"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr "Gestire i caricamenti"
|
||||
|
@ -1024,14 +995,14 @@ msgid "Type"
|
|||
msgstr "Tipo"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgstr "scaricare"
|
||||
msgid "Download"
|
||||
msgstr "Scaricamento"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr "Ordina i risultati per:"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr "Ordina risultati"
|
||||
|
||||
|
@ -1055,11 +1026,11 @@ msgstr "Iscritto"
|
|||
msgid "Modules"
|
||||
msgstr "Moduli"
|
||||
|
||||
#: admin/pages/modules.twig:23 admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24 admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr "Questo modulo è in conflitto con i seguenti moduli:"
|
||||
|
||||
#: admin/pages/modules.twig:33 admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34 admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr "Questo modulo richiede che i seguenti moduli siano abilitati:"
|
||||
|
||||
|
@ -1087,119 +1058,119 @@ msgstr "URL conformati"
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr "Fornisce il sito di URL piú ordinati e migliori."
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
msgstr "Richiede il supporto URL Rewrite."
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr "Scarica i file di riscrittura dell'URL."
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr "Homepage"
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr "Rendi il percorso predefinito una homepage anziché l'indice del blog."
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr "URL di visualizzazione post"
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr "(richiede URL conformati)"
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr "Sintassi:"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr "Anno di creazione"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr "(es. 2007)"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr "Mese di crezione"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr "(es. 12)"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr "Giorno di creazione"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr "(es. 25)"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr "Ora di creazione"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr "(es. 03)"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr "Minuto di creazione"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr "(es. 59)"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr "Secondo di creazione"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr "(es. 30)"
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr "Post ID"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr "Autore del post (nome utente)"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr "(es. Alex)"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr "Slug non unico"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr "(es. this_is_clean)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr "La forma unica (clean)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr "(es. this_one_is_taken_2)"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr "Feather del post"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr "(es. testo)"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr "La forma plurale della Feather del post"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr "(es. collegamenti)"
|
||||
|
||||
|
@ -1211,7 +1182,7 @@ msgstr "Temi"
|
|||
msgid "Blog Themes"
|
||||
msgstr "Temi del blog"
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr "Seleziona"
|
||||
|
||||
|
@ -1263,58 +1234,54 @@ msgstr "Scrivi"
|
|||
msgid "Body"
|
||||
msgstr "Testo"
|
||||
|
||||
#: admin/partials/page_fields.twig:23 admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25 admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr "Pubblico e visibile nell'elenco delle pagine"
|
||||
|
||||
#: admin/partials/page_fields.twig:36 admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38 admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr "Pubblico"
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr "Privato e visibile nell'elenco delle pagine"
|
||||
|
||||
#: admin/partials/page_fields.twig:40 admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42 admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr "Privato"
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr "Priorità nell'elenco delle pagine"
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr "Alta"
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr "Medio"
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr "Bassa"
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr "Principale"
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr "[Nessuno]"
|
||||
|
||||
#: admin/partials/page_fields.twig:74 admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76 admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr "Pubblica"
|
||||
|
||||
#: admin/partials/page_fields.twig:77 admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187 admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79 admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189 admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
|
@ -1325,30 +1292,30 @@ msgid_plural "%d files previously uploaded with this post."
|
|||
msgstr[0] "%d file precedentemente caricato con questo post."
|
||||
msgstr[1] "%d file precedentemente caricato con questo post."
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr "Bozza"
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr "Programmato"
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr "Visibile solo per un gruppo di utenti:"
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr "Tutti gli utenti registrati"
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr "Pinned?"
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr "(mostra questo post sopra tutti gli altri)"
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr "Date e ora"
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: admin/help/canonical_url.twig:3 admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr "Kanonieke URL"
|
||||
|
||||
|
@ -90,8 +90,8 @@ msgstr ""
|
|||
"ID en vervolgens in oplopende volgorde van bericht-ID."
|
||||
|
||||
#: admin/help/markdown.twig:3 admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13 admin/partials/post_fields.twig:52
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14 admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr "Markdown"
|
||||
|
||||
|
@ -112,7 +112,7 @@ msgid "## Heading"
|
|||
msgstr "## Kop"
|
||||
|
||||
#: admin/help/markdown.twig:20 admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455 admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466 admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr "Kop"
|
||||
|
||||
|
@ -124,8 +124,8 @@ msgstr "### Kop"
|
|||
msgid "**Strong**"
|
||||
msgstr "**Sterk**"
|
||||
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr "Sterk"
|
||||
|
||||
|
@ -133,8 +133,8 @@ msgstr "Sterk"
|
|||
msgid "*Emphasis*"
|
||||
msgstr "*Vet*"
|
||||
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
msgid "Emphasis"
|
||||
msgstr "Vet"
|
||||
|
||||
|
@ -150,8 +150,8 @@ msgstr "Citaat"
|
|||
msgid "~~Strikethrough~~"
|
||||
msgstr "~~Doorhalen~~"
|
||||
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr "Doorhalen"
|
||||
|
||||
|
@ -159,8 +159,8 @@ msgstr "Doorhalen"
|
|||
msgid "`Code`"
|
||||
msgstr "`Code`"
|
||||
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
|
@ -168,8 +168,8 @@ msgstr "Code"
|
|||
msgid "==Highlight=="
|
||||
msgstr "==Markeren=="
|
||||
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr "Markeren"
|
||||
|
||||
|
@ -201,8 +201,8 @@ msgstr "Nieuwe paragraaf"
|
|||
msgid "[title](URL)"
|
||||
msgstr "[titel](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr "Hyperlink"
|
||||
|
||||
|
@ -210,8 +210,8 @@ msgstr "Hyperlink"
|
|||
msgid "![description](URL)"
|
||||
msgstr "![beschrijving](URL)"
|
||||
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr "Afbeelding"
|
||||
|
||||
|
@ -296,7 +296,7 @@ msgstr ""
|
|||
"0-9, en een liggend-streepje (“-”)."
|
||||
|
||||
#: admin/help/unicode_emoticons.twig:3 admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr "Unicode Emoticons"
|
||||
|
||||
|
@ -319,112 +319,67 @@ msgstr "Emoticon"
|
|||
msgid "Emoji"
|
||||
msgstr "Emoji"
|
||||
|
||||
#: admin/javascripts/admin.js.php:55 admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56 admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr "Alles selecteren"
|
||||
|
||||
#: admin/javascripts/admin.js.php:171 admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177 admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr "Weet je zeker dat je wilt doorgaan?"
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr "Aan het uploaden..."
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr "Het uploaden van bestanden is mislukt!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr "Bestandstype wordt niet ondersteund!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr "Maximale bestandsgrootte: %d Megabytes!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:300 admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319 admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr "Voorscherm"
|
||||
|
||||
#: admin/javascripts/admin.js.php:309 admin/pages/manage_uploads.twig:18
|
||||
#: admin/javascripts/admin.js.php:328 admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr "Uploads"
|
||||
|
||||
#: admin/javascripts/admin.js.php:335 admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354 admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr "Sluit"
|
||||
|
||||
#: admin/javascripts/admin.js.php:349 admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr "sluit"
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr "Help inhoud"
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr "kop"
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr "sterk"
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr "vet"
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr "doorhalen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr "markeren"
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr "code"
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr "hyperlink"
|
||||
|
||||
#: admin/javascripts/admin.js.php:644 admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr "afbeelding"
|
||||
|
||||
#: admin/javascripts/admin.js.php:659 admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622 admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: admin/javascripts/admin.js.php:729 admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686 admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr "Invoegen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr "invoegen"
|
||||
|
||||
#: admin/javascripts/admin.js.php:777 admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731 admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr "Vooruitblik"
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr "vooruitblik"
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr "Woorden:"
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr "Vooruitblik inhoud"
|
||||
|
||||
|
@ -455,66 +410,74 @@ msgid "Items Per Admin Page"
|
|||
msgstr "Onderdelen per beheerpagina"
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Default Post Status"
|
||||
msgstr "Standaardblogpoststatus"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "Default Page Status"
|
||||
msgstr "Standaard paginastatus"
|
||||
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr "Pad voor uploads"
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid ""
|
||||
"The directory to which files are uploaded, relative to your installation "
|
||||
"directory."
|
||||
msgstr ""
|
||||
"De map waarnaar bestanden worden geupload, relatief t.o.v. je installatiemap."
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "Upload grootte limiet"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr "(Megabytes)"
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Feed Format"
|
||||
msgstr "Feed formaat"
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
#: admin/pages/content_settings.twig:73
|
||||
msgid "Search Pages"
|
||||
msgstr "Zoek pagina's"
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr "Zoekresultaten inclusief pagina's."
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr "Webmentions"
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr "Verzend en ontvang meldingen wanneer URL's worden genoemd."
|
||||
|
||||
#: admin/pages/content_settings.twig:73 admin/pages/content_settings.twig:86
|
||||
#: admin/pages/content_settings.twig:95 admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21 admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57 admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/general_settings.twig:38 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11 admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
msgstr "hulp"
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr "Geef emoticons weer als Unicode emojis."
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr "Stel een blogpost samen, gebruik makende van markup syntax."
|
||||
|
||||
#: admin/pages/content_settings.twig:97 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95 admin/pages/user_settings.twig:57
|
||||
#: admin/pages/content_settings.twig:119 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96 admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr "Update"
|
||||
|
||||
|
@ -548,8 +511,8 @@ msgstr "Verwijder!"
|
|||
|
||||
#: admin/pages/delete_group.twig:56 admin/pages/delete_page.twig:24
|
||||
#: admin/pages/delete_post.twig:17 admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleer"
|
||||
|
||||
|
@ -677,7 +640,7 @@ msgstr "Volledige naam"
|
|||
#: admin/pages/edit_user.twig:43 admin/pages/edit_user.twig:51
|
||||
#: admin/pages/export.twig:19 admin/pages/export.twig:37
|
||||
#: admin/pages/export.twig:55 admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:33
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37 admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
msgid "(optional)"
|
||||
|
@ -757,25 +720,25 @@ msgstr "Feathers"
|
|||
msgid "Enabled"
|
||||
msgstr "Geactiveerd"
|
||||
|
||||
#: admin/pages/feathers.twig:15 admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15 admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
msgstr "info"
|
||||
#: admin/pages/feathers.twig:16 admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16 admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/feathers.twig:28 admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30 admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr "Deïnstalleer"
|
||||
|
||||
#: admin/pages/feathers.twig:32 admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34 admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr "De-activeer"
|
||||
|
||||
#: admin/pages/feathers.twig:41 admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43 admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr "Gedeactiveerd"
|
||||
|
||||
#: admin/pages/feathers.twig:60 admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64 admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr "Activeer"
|
||||
|
||||
|
@ -795,37 +758,41 @@ msgstr "Beschrijving"
|
|||
msgid "Chyrp URL"
|
||||
msgstr "Chyrp URL"
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr "De basis-URL voor uw site."
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr ""
|
||||
"Laat de URLs van je website ergens anders naar verwijzen dan naar de "
|
||||
"installatiemap."
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr "Contact Emailadres"
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr "Tijdzone"
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr "Monospace-lettertype"
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr "Schrijf met een monospace-lettertype."
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr "Controleer op updates"
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr "Huidige versie: %s."
|
||||
|
@ -913,29 +880,29 @@ msgstr "Beheer"
|
|||
#: admin/pages/manage_groups.twig:41 admin/pages/manage_groups.twig:46
|
||||
#: admin/pages/manage_pages.twig:55 admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: admin/pages/manage_groups.twig:51 admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52 admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
msgstr "wijzig"
|
||||
#: admin/pages/manage_posts.twig:56 admin/pages/manage_users.twig:63
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
#: admin/pages/manage_groups.twig:54 admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_posts.twig:59 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgstr "verwijder"
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: admin/pages/manage_groups.twig:60 admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62 admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72 admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61 admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66 admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73 admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr "Geen resultaten"
|
||||
|
||||
#: admin/pages/manage_groups.twig:68 admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70 admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69 admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74 admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr "%de pagina van %s"
|
||||
|
@ -994,11 +961,15 @@ msgstr "Nieuwe Blogpost"
|
|||
msgid "Posted"
|
||||
msgstr "Geplaatst"
|
||||
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: admin/pages/manage_posts.twig:48 admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr "[Geen]"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr "Beheer Uploads"
|
||||
|
@ -1020,14 +991,14 @@ msgid "Type"
|
|||
msgstr "Type"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgstr "download"
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr "Sorteer resultaten op:"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr "Sorteer resultaten"
|
||||
|
||||
|
@ -1051,11 +1022,11 @@ msgstr "Toegevoegd"
|
|||
msgid "Modules"
|
||||
msgstr "Modules"
|
||||
|
||||
#: admin/pages/modules.twig:23 admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24 admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr "Deze module veroorzaakt een conflict met de volgende modules:"
|
||||
|
||||
#: admin/pages/modules.twig:33 admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34 admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr "Voor deze module moeten de volgende modules worden gedeactiveerd:"
|
||||
|
||||
|
@ -1083,120 +1054,120 @@ msgstr "Schone URLs"
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr "Geef je website mooiere URLs."
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
msgstr "Vereist URL rewrite ondersteuning"
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr "Download de URL-herschrijfbestanden."
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr "Homepagina"
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr ""
|
||||
"Maak de standaard route een statische pagina in plaats van de blogindex."
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr "Blogpost Bekijk URL"
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr "(vereist schone URLs)"
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr "Syntax:"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr "Jaar geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr "(bijv. 2021)"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr "Maand geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr "(bijv. 12)"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr "Dag geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr "(bijv. 25)"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr "Uur geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr "(bijv. 03)"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr "Minuut geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr "(bijv. 59)"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr "Seconde geplaatst"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr "(bijv. 30)"
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr "Blogpost ID"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr "Blogpost schrijver (gebruikersnaam)"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr "(bijv. Alex)"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr "De niet-unieke slug"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr "(bijv. dit-is-schoon)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr "De unieke vorm van (schoon)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr "(bijv. deze-is-reeds-bezet-2)"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr "De Blogposts' feather"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr "(bijv. tekst)"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr "De meervoudsvorm van de blogposts' feather"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr "(bijv. links)"
|
||||
|
||||
|
@ -1208,7 +1179,7 @@ msgstr "Thema's"
|
|||
msgid "Blog Themes"
|
||||
msgstr "Blogpost thema's"
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr "Selecteer"
|
||||
|
||||
|
@ -1261,58 +1232,54 @@ msgstr "Schrijf"
|
|||
msgid "Body"
|
||||
msgstr "Body"
|
||||
|
||||
#: admin/partials/page_fields.twig:23 admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25 admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr "Openbaar en zichtbaar in pagina-lijst"
|
||||
|
||||
#: admin/partials/page_fields.twig:36 admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38 admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr "Openbaar"
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr "Privé en zichtbaar in pagina-lijst"
|
||||
|
||||
#: admin/partials/page_fields.twig:40 admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42 admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr "Privé"
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr "Rangorde in pagina-lijst"
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr "Hoog"
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr "Gemiddeld"
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr "Laag"
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr "Bovenliggend"
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr "[Geen]"
|
||||
|
||||
#: admin/partials/page_fields.twig:74 admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76 admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr "Publiceer"
|
||||
|
||||
#: admin/partials/page_fields.twig:77 admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187 admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79 admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189 admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr "Opslaan"
|
||||
|
||||
|
@ -1323,30 +1290,30 @@ msgid_plural "%d files previously uploaded with this post."
|
|||
msgstr[0] "%d bestand eerder al met deze blogpost geupload."
|
||||
msgstr[1] "%d bestanden eerder al met deze blogpost geupload."
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr "Geagendeerd"
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr "Alleen zichtbaar voor een bepaalde groep gebruikers:"
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr "Alle geregistreerde gebruikers"
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr "Vastgezet?"
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr "(toon deze blogpost helemaal bovenaan)"
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr "Tijdstempel"
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: admin/help/canonical_url.twig:3 admin/help/canonical_url.twig:6
|
||||
#: admin/pages/general_settings.twig:32
|
||||
#: admin/pages/general_settings.twig:35
|
||||
msgid "Canonical URL"
|
||||
msgstr "规范URL"
|
||||
|
||||
|
@ -80,8 +80,8 @@ msgstr ""
|
|||
"将按用户 ID 降序对帖子表进行排序,然后按帖子 ID 升序排序。"
|
||||
|
||||
#: admin/help/markdown.twig:3 admin/help/markdown.twig:6
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:84
|
||||
#: admin/partials/page_fields.twig:13 admin/partials/post_fields.twig:52
|
||||
#: admin/help/markdown.twig:13 admin/pages/content_settings.twig:106
|
||||
#: admin/partials/page_fields.twig:14 admin/partials/post_fields.twig:53
|
||||
msgid "Markdown"
|
||||
msgstr "Markdown"
|
||||
|
||||
|
@ -100,7 +100,7 @@ msgid "## Heading"
|
|||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:20 admin/help/markdown.twig:24
|
||||
#: admin/javascripts/admin.js.php:455 admin/javascripts/admin.js.php:456
|
||||
#: admin/javascripts/admin.js.php:466 admin/javascripts/admin.js.php:467
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
|
@ -112,8 +112,8 @@ msgstr ""
|
|||
msgid "**Strong**"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:480
|
||||
#: admin/javascripts/admin.js.php:481
|
||||
#: admin/help/markdown.twig:28 admin/javascripts/admin.js.php:485
|
||||
#: admin/javascripts/admin.js.php:486
|
||||
msgid "Strong"
|
||||
msgstr ""
|
||||
|
||||
|
@ -121,8 +121,8 @@ msgstr ""
|
|||
msgid "*Emphasis*"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:505
|
||||
#: admin/javascripts/admin.js.php:506
|
||||
#: admin/help/markdown.twig:32 admin/javascripts/admin.js.php:504
|
||||
#: admin/javascripts/admin.js.php:505
|
||||
msgid "Emphasis"
|
||||
msgstr ""
|
||||
|
||||
|
@ -138,8 +138,8 @@ msgstr ""
|
|||
msgid "~~Strikethrough~~"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:530
|
||||
#: admin/javascripts/admin.js.php:531
|
||||
#: admin/help/markdown.twig:40 admin/javascripts/admin.js.php:523
|
||||
#: admin/javascripts/admin.js.php:524
|
||||
msgid "Strikethrough"
|
||||
msgstr ""
|
||||
|
||||
|
@ -147,8 +147,8 @@ msgstr ""
|
|||
msgid "`Code`"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
#: admin/help/markdown.twig:44 admin/javascripts/admin.js.php:561
|
||||
#: admin/javascripts/admin.js.php:562
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,8 +156,8 @@ msgstr ""
|
|||
msgid "==Highlight=="
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:555
|
||||
#: admin/javascripts/admin.js.php:556
|
||||
#: admin/help/markdown.twig:48 admin/javascripts/admin.js.php:542
|
||||
#: admin/javascripts/admin.js.php:543
|
||||
msgid "Highlight"
|
||||
msgstr ""
|
||||
|
||||
|
@ -189,8 +189,8 @@ msgstr "新行"
|
|||
msgid "[title](URL)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:605
|
||||
#: admin/javascripts/admin.js.php:606
|
||||
#: admin/help/markdown.twig:65 admin/javascripts/admin.js.php:580
|
||||
#: admin/javascripts/admin.js.php:581
|
||||
msgid "Hyperlink"
|
||||
msgstr ""
|
||||
|
||||
|
@ -198,8 +198,8 @@ msgstr ""
|
|||
msgid "![description](URL)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:630
|
||||
#: admin/javascripts/admin.js.php:631
|
||||
#: admin/help/markdown.twig:69 admin/javascripts/admin.js.php:599
|
||||
#: admin/javascripts/admin.js.php:600
|
||||
msgid "Image"
|
||||
msgstr "图像"
|
||||
|
||||
|
@ -282,7 +282,7 @@ msgstr ""
|
|||
"时自动生成。 一个slug 只能包含字母a-z,数字0-9和连字符减号(“ - ”)。"
|
||||
|
||||
#: admin/help/unicode_emoticons.twig:3 admin/help/unicode_emoticons.twig:6
|
||||
#: admin/pages/content_settings.twig:71
|
||||
#: admin/pages/content_settings.twig:93
|
||||
msgid "Unicode Emoticons"
|
||||
msgstr "Unicode表情符号"
|
||||
|
||||
|
@ -303,112 +303,67 @@ msgstr "表情"
|
|||
msgid "Emoji"
|
||||
msgstr "表情符号"
|
||||
|
||||
#: admin/javascripts/admin.js.php:55 admin/javascripts/admin.js.php:61
|
||||
#: admin/javascripts/admin.js.php:56 admin/javascripts/admin.js.php:62
|
||||
msgid "Toggle All"
|
||||
msgstr "全部切换"
|
||||
|
||||
#: admin/javascripts/admin.js.php:171 admin/javascripts/admin.js.php:182
|
||||
#: admin/javascripts/admin.js.php:177 admin/javascripts/admin.js.php:188
|
||||
msgid "Are you sure you want to proceed?"
|
||||
msgstr "确定继续?"
|
||||
|
||||
#: admin/javascripts/admin.js.php:244
|
||||
#: admin/javascripts/admin.js.php:252
|
||||
msgid "Uploading..."
|
||||
msgstr "上传中..."
|
||||
|
||||
#: admin/javascripts/admin.js.php:245
|
||||
#: admin/javascripts/admin.js.php:253
|
||||
msgid "File upload failed!"
|
||||
msgstr "文件上传失败!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:246
|
||||
#: admin/javascripts/admin.js.php:254
|
||||
msgid "File type not supported!"
|
||||
msgstr "不支持文件类型!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:247
|
||||
#: admin/javascripts/admin.js.php:255
|
||||
#, php-format
|
||||
msgid "Maximum file size: %d Megabytes!"
|
||||
msgstr "最大文件大小:%d兆字节!"
|
||||
|
||||
#: admin/javascripts/admin.js.php:300 admin/javascripts/admin.js.php:388
|
||||
#: admin/javascripts/admin.js.php:1186
|
||||
#: admin/javascripts/admin.js.php:319 admin/javascripts/admin.js.php:404
|
||||
#: admin/javascripts/admin.js.php:1151
|
||||
msgid "Modal window"
|
||||
msgstr "模态窗口"
|
||||
|
||||
#: admin/javascripts/admin.js.php:309 admin/pages/manage_uploads.twig:18
|
||||
#: admin/javascripts/admin.js.php:328 admin/pages/manage_uploads.twig:18
|
||||
msgid "Uploads"
|
||||
msgstr "上传"
|
||||
|
||||
#: admin/javascripts/admin.js.php:335 admin/javascripts/admin.js.php:414
|
||||
#: admin/javascripts/admin.js.php:1214
|
||||
#: admin/javascripts/admin.js.php:354 admin/javascripts/admin.js.php:430
|
||||
#: admin/javascripts/admin.js.php:1183
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: admin/javascripts/admin.js.php:349 admin/javascripts/admin.js.php:428
|
||||
#: admin/javascripts/admin.js.php:1228
|
||||
msgid "close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: admin/javascripts/admin.js.php:397
|
||||
#: admin/javascripts/admin.js.php:413
|
||||
msgid "Help content"
|
||||
msgstr "帮助内容"
|
||||
|
||||
#: admin/javascripts/admin.js.php:469
|
||||
msgid "heading"
|
||||
msgstr "标题"
|
||||
|
||||
#: admin/javascripts/admin.js.php:494
|
||||
msgid "strong"
|
||||
msgstr "强"
|
||||
|
||||
#: admin/javascripts/admin.js.php:519
|
||||
msgid "emphasis"
|
||||
msgstr "重点"
|
||||
|
||||
#: admin/javascripts/admin.js.php:544
|
||||
msgid "strikethrough"
|
||||
msgstr "穿越"
|
||||
|
||||
#: admin/javascripts/admin.js.php:569
|
||||
msgid "highlight"
|
||||
msgstr "突出"
|
||||
|
||||
#: admin/javascripts/admin.js.php:594
|
||||
msgid "code"
|
||||
msgstr "代码"
|
||||
|
||||
#: admin/javascripts/admin.js.php:619
|
||||
msgid "hyperlink"
|
||||
msgstr "链接"
|
||||
|
||||
#: admin/javascripts/admin.js.php:644 admin/javascripts/admin.js.php:716
|
||||
msgid "image"
|
||||
msgstr "图像"
|
||||
|
||||
#: admin/javascripts/admin.js.php:659 admin/javascripts/admin.js.php:660
|
||||
#: admin/javascripts/admin.js.php:622 admin/javascripts/admin.js.php:623
|
||||
msgid "Upload"
|
||||
msgstr "上传"
|
||||
|
||||
#: admin/javascripts/admin.js.php:729 admin/javascripts/admin.js.php:730
|
||||
#: admin/javascripts/admin.js.php:686 admin/javascripts/admin.js.php:687
|
||||
msgid "Insert"
|
||||
msgstr "插入"
|
||||
|
||||
#: admin/javascripts/admin.js.php:758
|
||||
msgid "insert"
|
||||
msgstr "插入"
|
||||
|
||||
#: admin/javascripts/admin.js.php:777 admin/javascripts/admin.js.php:778
|
||||
#: admin/pages/themes.twig:24
|
||||
#: admin/javascripts/admin.js.php:731 admin/javascripts/admin.js.php:732
|
||||
#: admin/pages/themes.twig:25
|
||||
msgid "Preview"
|
||||
msgstr "预览"
|
||||
|
||||
#: admin/javascripts/admin.js.php:803
|
||||
msgid "preview"
|
||||
msgstr "预览"
|
||||
|
||||
#: admin/javascripts/admin.js.php:835
|
||||
#: admin/javascripts/admin.js.php:783
|
||||
msgid "Words:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/javascripts/admin.js.php:1196
|
||||
#: admin/javascripts/admin.js.php:1161
|
||||
msgid "Preview content"
|
||||
msgstr "预览内容"
|
||||
|
||||
|
@ -439,65 +394,73 @@ msgid "Items Per Admin Page"
|
|||
msgstr "每个管理员的页面"
|
||||
|
||||
#: admin/pages/content_settings.twig:25
|
||||
msgid "Default Post Status"
|
||||
msgstr "默认帖子状态"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
msgid "Default Page Status"
|
||||
msgstr "默认页面状态"
|
||||
|
||||
#: admin/pages/content_settings.twig:47
|
||||
msgid "Uploads Path"
|
||||
msgstr "上传路径"
|
||||
|
||||
#: admin/pages/content_settings.twig:29
|
||||
#: admin/pages/content_settings.twig:51
|
||||
msgid ""
|
||||
"The directory to which files are uploaded, relative to your installation "
|
||||
"directory."
|
||||
msgstr "相对于您安装目录的上传文件的目录。"
|
||||
|
||||
#: admin/pages/content_settings.twig:33
|
||||
#: admin/pages/content_settings.twig:55
|
||||
msgid "Upload Size Limit"
|
||||
msgstr "上传大小限制"
|
||||
|
||||
#: admin/pages/content_settings.twig:36
|
||||
#: admin/pages/content_settings.twig:58
|
||||
msgid "(Megabytes)"
|
||||
msgstr "(M)"
|
||||
|
||||
#: admin/pages/content_settings.twig:39
|
||||
#: admin/pages/content_settings.twig:61
|
||||
msgid "Feed Format"
|
||||
msgstr "Feed格式"
|
||||
|
||||
#: admin/pages/content_settings.twig:51
|
||||
#: admin/pages/content_settings.twig:73
|
||||
msgid "Search Pages"
|
||||
msgstr "搜索页面"
|
||||
|
||||
#: admin/pages/content_settings.twig:56
|
||||
#: admin/pages/content_settings.twig:78
|
||||
msgid "Include pages in search results."
|
||||
msgstr "在搜索结果中包括页面。"
|
||||
|
||||
#: admin/pages/content_settings.twig:61
|
||||
#: admin/pages/content_settings.twig:83
|
||||
msgid "Webmentions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/content_settings.twig:66
|
||||
#: admin/pages/content_settings.twig:88
|
||||
msgid "Send and receive notifications when URLs are mentioned."
|
||||
msgstr "在提及 URL 时发送和接收通知。"
|
||||
|
||||
#: admin/pages/content_settings.twig:73 admin/pages/content_settings.twig:86
|
||||
#: admin/pages/content_settings.twig:95 admin/pages/content_settings.twig:108
|
||||
#: admin/pages/export.twig:21 admin/pages/export.twig:39
|
||||
#: admin/pages/export.twig:57 admin/pages/export.twig:75
|
||||
#: admin/pages/general_settings.twig:35 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/general_settings.twig:38 admin/pages/manage_pages.twig:11
|
||||
#: admin/pages/manage_posts.twig:11 admin/pages/manage_users.twig:11
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:25
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:124
|
||||
#: admin/partials/post_fields.twig:148
|
||||
msgid "help"
|
||||
#: admin/pages/route_settings.twig:13 admin/partials/page_fields.twig:27
|
||||
#: admin/partials/post_fields.twig:32 admin/partials/post_fields.twig:126
|
||||
#: admin/partials/post_fields.twig:150
|
||||
msgid "Help"
|
||||
msgstr "帮助"
|
||||
|
||||
#: admin/pages/content_settings.twig:79
|
||||
#: admin/pages/content_settings.twig:101
|
||||
msgid "Display emoticons as Unicode emoji."
|
||||
msgstr "将表情符号显示为Unicode表情符号。"
|
||||
|
||||
#: admin/pages/content_settings.twig:92
|
||||
#: admin/pages/content_settings.twig:114
|
||||
msgid "Compose blog content using Markdown text formatting."
|
||||
msgstr "使用Markdown语法撰写博客内容。"
|
||||
|
||||
#: admin/pages/content_settings.twig:97 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:99
|
||||
#: admin/pages/route_settings.twig:95 admin/pages/user_settings.twig:57
|
||||
#: admin/pages/content_settings.twig:119 admin/pages/edit_group.twig:27
|
||||
#: admin/pages/edit_user.twig:66 admin/pages/general_settings.twig:102
|
||||
#: admin/pages/route_settings.twig:96 admin/pages/user_settings.twig:57
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
||||
|
@ -531,8 +494,8 @@ msgstr "删除!"
|
|||
|
||||
#: admin/pages/delete_group.twig:56 admin/pages/delete_page.twig:24
|
||||
#: admin/pages/delete_post.twig:17 admin/pages/delete_upload.twig:17
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:84
|
||||
#: admin/partials/post_fields.twig:194
|
||||
#: admin/pages/delete_user.twig:50 admin/partials/page_fields.twig:86
|
||||
#: admin/partials/post_fields.twig:196
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
|
@ -659,7 +622,7 @@ msgstr "全名"
|
|||
#: admin/pages/edit_user.twig:43 admin/pages/edit_user.twig:51
|
||||
#: admin/pages/export.twig:19 admin/pages/export.twig:37
|
||||
#: admin/pages/export.twig:55 admin/pages/export.twig:73
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:33
|
||||
#: admin/pages/export.twig:94 admin/pages/general_settings.twig:36
|
||||
#: admin/pages/import.twig:37 admin/pages/new_user.twig:46
|
||||
#: admin/pages/new_user.twig:54
|
||||
msgid "(optional)"
|
||||
|
@ -737,25 +700,25 @@ msgstr "羽毛"
|
|||
msgid "Enabled"
|
||||
msgstr "已启用"
|
||||
|
||||
#: admin/pages/feathers.twig:15 admin/pages/feathers.twig:48
|
||||
#: admin/pages/modules.twig:15 admin/pages/modules.twig:68
|
||||
#: admin/pages/themes.twig:13
|
||||
msgid "info"
|
||||
#: admin/pages/feathers.twig:16 admin/pages/feathers.twig:51
|
||||
#: admin/pages/modules.twig:16 admin/pages/modules.twig:70
|
||||
#: admin/pages/themes.twig:14
|
||||
msgid "Info"
|
||||
msgstr "信息"
|
||||
|
||||
#: admin/pages/feathers.twig:28 admin/pages/modules.twig:48
|
||||
#: admin/pages/feathers.twig:30 admin/pages/modules.twig:49
|
||||
msgid "Uninstall"
|
||||
msgstr "卸载"
|
||||
|
||||
#: admin/pages/feathers.twig:32 admin/pages/modules.twig:52
|
||||
#: admin/pages/feathers.twig:34 admin/pages/modules.twig:53
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
#: admin/pages/feathers.twig:41 admin/pages/modules.twig:61
|
||||
#: admin/pages/feathers.twig:43 admin/pages/modules.twig:62
|
||||
msgid "Disabled"
|
||||
msgstr "已禁用"
|
||||
|
||||
#: admin/pages/feathers.twig:60 admin/pages/modules.twig:101
|
||||
#: admin/pages/feathers.twig:64 admin/pages/modules.twig:103
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
|
@ -775,35 +738,39 @@ msgstr "描述"
|
|||
msgid "Chyrp URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/pages/general_settings.twig:41
|
||||
#: admin/pages/general_settings.twig:30
|
||||
msgid "The base URL for your site."
|
||||
msgstr "您网站的基 URL。"
|
||||
|
||||
#: admin/pages/general_settings.twig:44
|
||||
msgid "Have your site URLs point someplace other than your install directory."
|
||||
msgstr "让您的网站网址指向安装目录以外的其他位置。"
|
||||
|
||||
#: admin/pages/general_settings.twig:46
|
||||
#: admin/pages/general_settings.twig:49
|
||||
msgid "Contact Email Address"
|
||||
msgstr "联系的邮件地址"
|
||||
|
||||
#: admin/pages/general_settings.twig:53
|
||||
#: admin/pages/general_settings.twig:56
|
||||
msgid "Time Zone"
|
||||
msgstr "时区"
|
||||
|
||||
#: admin/pages/general_settings.twig:66
|
||||
#: admin/pages/general_settings.twig:69
|
||||
msgid "Language"
|
||||
msgstr "语言"
|
||||
|
||||
#: admin/pages/general_settings.twig:79
|
||||
#: admin/pages/general_settings.twig:82
|
||||
msgid "Monospace Font"
|
||||
msgstr "等宽字体"
|
||||
|
||||
#: admin/pages/general_settings.twig:84
|
||||
#: admin/pages/general_settings.twig:87
|
||||
msgid "Write with a monospace font."
|
||||
msgstr "使用等宽字体书写。"
|
||||
|
||||
#: admin/pages/general_settings.twig:89
|
||||
#: admin/pages/general_settings.twig:92
|
||||
msgid "Check for Updates"
|
||||
msgstr "检查更新"
|
||||
|
||||
#: admin/pages/general_settings.twig:94
|
||||
#: admin/pages/general_settings.twig:97
|
||||
#, php-format
|
||||
msgid "Current version: %s."
|
||||
msgstr "当前版本: %s。"
|
||||
|
@ -891,29 +858,29 @@ msgstr "操作"
|
|||
#: admin/pages/manage_groups.twig:41 admin/pages/manage_groups.twig:46
|
||||
#: admin/pages/manage_pages.twig:55 admin/pages/manage_pages.twig:60
|
||||
#: admin/pages/manage_users.twig:57
|
||||
msgid "yes"
|
||||
msgid "Yes"
|
||||
msgstr "是"
|
||||
|
||||
#: admin/pages/manage_groups.twig:51 admin/pages/manage_pages.twig:68
|
||||
#: admin/pages/manage_posts.twig:52 admin/pages/manage_users.twig:63
|
||||
msgid "edit"
|
||||
#: admin/pages/manage_posts.twig:56 admin/pages/manage_users.twig:63
|
||||
msgid "Edit"
|
||||
msgstr "编辑"
|
||||
|
||||
#: admin/pages/manage_groups.twig:54 admin/pages/manage_pages.twig:71
|
||||
#: admin/pages/manage_posts.twig:55 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_posts.twig:59 admin/pages/manage_uploads.twig:66
|
||||
#: admin/pages/manage_users.twig:66
|
||||
msgid "delete"
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: admin/pages/manage_groups.twig:60 admin/pages/manage_pages.twig:77
|
||||
#: admin/pages/manage_posts.twig:62 admin/pages/manage_uploads.twig:73
|
||||
#: admin/pages/manage_users.twig:72 admin/partials/uploads_modal.twig:33
|
||||
#: admin/pages/manage_groups.twig:61 admin/pages/manage_pages.twig:78
|
||||
#: admin/pages/manage_posts.twig:66 admin/pages/manage_uploads.twig:74
|
||||
#: admin/pages/manage_users.twig:73 admin/partials/uploads_modal.twig:34
|
||||
msgid "No results"
|
||||
msgstr "没有结果"
|
||||
|
||||
#: admin/pages/manage_groups.twig:68 admin/pages/manage_pages.twig:85
|
||||
#: admin/pages/manage_posts.twig:70 admin/pages/manage_uploads.twig:94
|
||||
#: admin/pages/manage_users.twig:80
|
||||
#: admin/pages/manage_groups.twig:69 admin/pages/manage_pages.twig:86
|
||||
#: admin/pages/manage_posts.twig:74 admin/pages/manage_uploads.twig:95
|
||||
#: admin/pages/manage_users.twig:81
|
||||
#, php-format
|
||||
msgid "Page %d of %s"
|
||||
msgstr "%d of %s 的页面"
|
||||
|
@ -972,11 +939,15 @@ msgstr "新加帖子"
|
|||
msgid "Posted"
|
||||
msgstr "已发布的"
|
||||
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:31
|
||||
#: admin/partials/post_fields.twig:78
|
||||
#: admin/pages/manage_posts.twig:29 admin/partials/page_fields.twig:33
|
||||
#: admin/partials/post_fields.twig:80
|
||||
msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#: admin/pages/manage_posts.twig:48 admin/partials/page_fields.twig:59
|
||||
msgid "[None]"
|
||||
msgstr "[空]"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:3
|
||||
msgid "Manage Uploads"
|
||||
msgstr "管理上传"
|
||||
|
@ -998,14 +969,14 @@ msgid "Type"
|
|||
msgstr "类型"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:61
|
||||
msgid "download"
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:81
|
||||
#: admin/pages/manage_uploads.twig:82
|
||||
msgid "Sort results by:"
|
||||
msgstr "结果排序依据:"
|
||||
|
||||
#: admin/pages/manage_uploads.twig:89
|
||||
#: admin/pages/manage_uploads.twig:90
|
||||
msgid "Sort Results"
|
||||
msgstr "对结果进行排序"
|
||||
|
||||
|
@ -1029,11 +1000,11 @@ msgstr "加入时间"
|
|||
msgid "Modules"
|
||||
msgstr "模块"
|
||||
|
||||
#: admin/pages/modules.twig:23 admin/pages/modules.twig:76
|
||||
#: admin/pages/modules.twig:24 admin/pages/modules.twig:78
|
||||
msgid "This module conflicts with the following modules:"
|
||||
msgstr "该模块与以下模块冲突:"
|
||||
|
||||
#: admin/pages/modules.twig:33 admin/pages/modules.twig:86
|
||||
#: admin/pages/modules.twig:34 admin/pages/modules.twig:88
|
||||
msgid "This module requires the following modules to be enabled:"
|
||||
msgstr "这个模块需要以下模块启用:"
|
||||
|
||||
|
@ -1061,119 +1032,119 @@ msgstr "优雅链接"
|
|||
msgid "Gives your site prettier URLs."
|
||||
msgstr "为您的网站提供更漂亮的URL。"
|
||||
|
||||
#: admin/pages/route_settings.twig:19
|
||||
msgid "Requires URL rewrite support."
|
||||
msgstr "需要 URL rewrite 支持。"
|
||||
#: admin/pages/route_settings.twig:20
|
||||
msgid "Download the URL rewrite files."
|
||||
msgstr "下载 URL 重写文件。"
|
||||
|
||||
#: admin/pages/route_settings.twig:24
|
||||
#: admin/pages/route_settings.twig:25
|
||||
msgid "Homepage"
|
||||
msgstr "主页"
|
||||
|
||||
#: admin/pages/route_settings.twig:29
|
||||
#: admin/pages/route_settings.twig:30
|
||||
msgid "Make the default route a homepage instead of the blog index."
|
||||
msgstr "使默认路由成为主页而不是博客索引。"
|
||||
|
||||
#: admin/pages/route_settings.twig:34
|
||||
#: admin/pages/route_settings.twig:35
|
||||
msgid "Post View URL"
|
||||
msgstr "帖子查看链接"
|
||||
|
||||
#: admin/pages/route_settings.twig:35
|
||||
#: admin/pages/route_settings.twig:36
|
||||
msgid "(requires clean URLs)"
|
||||
msgstr "(需要优雅链接)"
|
||||
|
||||
#: admin/pages/route_settings.twig:40
|
||||
#: admin/pages/route_settings.twig:41
|
||||
msgid "Syntax:"
|
||||
msgstr "符号:"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "Year submitted"
|
||||
msgstr "提交的年份"
|
||||
|
||||
#: admin/pages/route_settings.twig:45
|
||||
#: admin/pages/route_settings.twig:46
|
||||
msgid "(e.g. 2007)"
|
||||
msgstr "(例如:2007)"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "Month submitted"
|
||||
msgstr "提交的月份"
|
||||
|
||||
#: admin/pages/route_settings.twig:49
|
||||
#: admin/pages/route_settings.twig:50
|
||||
msgid "(e.g. 12)"
|
||||
msgstr "(例如 12)"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "Day submitted"
|
||||
msgstr "提交的天"
|
||||
|
||||
#: admin/pages/route_settings.twig:53
|
||||
#: admin/pages/route_settings.twig:54
|
||||
msgid "(e.g. 25)"
|
||||
msgstr "(例如 25)"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "Hour submitted"
|
||||
msgstr "提交的小时"
|
||||
|
||||
#: admin/pages/route_settings.twig:57
|
||||
#: admin/pages/route_settings.twig:58
|
||||
msgid "(e.g. 03)"
|
||||
msgstr "(例如 03)"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "Minute submitted"
|
||||
msgstr "提交的分"
|
||||
|
||||
#: admin/pages/route_settings.twig:61
|
||||
#: admin/pages/route_settings.twig:62
|
||||
msgid "(e.g. 59)"
|
||||
msgstr "(例如 59)"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "Second submitted"
|
||||
msgstr "提交的秒"
|
||||
|
||||
#: admin/pages/route_settings.twig:65
|
||||
#: admin/pages/route_settings.twig:66
|
||||
msgid "(e.g. 30)"
|
||||
msgstr "(例如 30)"
|
||||
|
||||
#: admin/pages/route_settings.twig:69
|
||||
#: admin/pages/route_settings.twig:70
|
||||
msgid "Post ID"
|
||||
msgstr "帖子ID"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "Post author (username)"
|
||||
msgstr "帖子作者(用户名)"
|
||||
|
||||
#: admin/pages/route_settings.twig:73
|
||||
#: admin/pages/route_settings.twig:74
|
||||
msgid "(e.g. Alex)"
|
||||
msgstr "(例如 Alex)"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "The non-unique slug"
|
||||
msgstr "非独特 slug"
|
||||
|
||||
#: admin/pages/route_settings.twig:77
|
||||
#: admin/pages/route_settings.twig:78
|
||||
msgid "(e.g. this_is_clean)"
|
||||
msgstr "(例如 this_is_clean)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "The unique form of (clean)"
|
||||
msgstr "独特的(优雅)"
|
||||
|
||||
#: admin/pages/route_settings.twig:81
|
||||
#: admin/pages/route_settings.twig:82
|
||||
msgid "(e.g. this_one_is_taken_2)"
|
||||
msgstr "(例如 this_one_is_taken_2)"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "The post's feather"
|
||||
msgstr "帖子的羽毛"
|
||||
|
||||
#: admin/pages/route_settings.twig:85
|
||||
#: admin/pages/route_settings.twig:86
|
||||
msgid "(e.g. text)"
|
||||
msgstr "(例如 text)"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "The plural form of the post's feather"
|
||||
msgstr "帖子羽毛的复数形式"
|
||||
|
||||
#: admin/pages/route_settings.twig:89
|
||||
#: admin/pages/route_settings.twig:90
|
||||
msgid "(e.g. links)"
|
||||
msgstr "(例如 links)"
|
||||
|
||||
|
@ -1185,7 +1156,7 @@ msgstr "主题"
|
|||
msgid "Blog Themes"
|
||||
msgstr "博客主题"
|
||||
|
||||
#: admin/pages/themes.twig:27
|
||||
#: admin/pages/themes.twig:28
|
||||
msgid "Select"
|
||||
msgstr "选择"
|
||||
|
||||
|
@ -1237,58 +1208,54 @@ msgstr "写作"
|
|||
msgid "Body"
|
||||
msgstr "正文"
|
||||
|
||||
#: admin/partials/page_fields.twig:23 admin/partials/post_fields.twig:122
|
||||
#: admin/partials/page_fields.twig:25 admin/partials/post_fields.twig:124
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/page_fields.twig:34
|
||||
#: admin/partials/page_fields.twig:36
|
||||
msgid "Public and visible in pages list"
|
||||
msgstr "公开并在页面列表中显示"
|
||||
msgstr "公共并在页面列表中显示"
|
||||
|
||||
#: admin/partials/page_fields.twig:36 admin/partials/post_fields.twig:86
|
||||
#: admin/partials/page_fields.twig:38 admin/partials/post_fields.twig:88
|
||||
msgid "Public"
|
||||
msgstr "公开"
|
||||
msgstr "公共"
|
||||
|
||||
#: admin/partials/page_fields.twig:38
|
||||
#: admin/partials/page_fields.twig:40
|
||||
msgid "Private and visible in pages list"
|
||||
msgstr "隐藏并在页面列表中显示"
|
||||
|
||||
#: admin/partials/page_fields.twig:40 admin/partials/post_fields.twig:90
|
||||
#: admin/partials/page_fields.twig:42 admin/partials/post_fields.twig:92
|
||||
msgid "Private"
|
||||
msgstr "隐藏"
|
||||
|
||||
#: admin/partials/page_fields.twig:44
|
||||
#: admin/partials/page_fields.twig:46
|
||||
msgid "Priority in pages list"
|
||||
msgstr "页面列表中的优先级"
|
||||
|
||||
#: admin/partials/page_fields.twig:47
|
||||
#: admin/partials/page_fields.twig:49
|
||||
msgid "High"
|
||||
msgstr "高"
|
||||
|
||||
#: admin/partials/page_fields.twig:49
|
||||
#: admin/partials/page_fields.twig:51
|
||||
msgid "Medium"
|
||||
msgstr "中"
|
||||
|
||||
#: admin/partials/page_fields.twig:51
|
||||
#: admin/partials/page_fields.twig:53
|
||||
msgid "Low"
|
||||
msgstr "低"
|
||||
|
||||
#: admin/partials/page_fields.twig:55
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "Parent"
|
||||
msgstr "父级"
|
||||
|
||||
#: admin/partials/page_fields.twig:57
|
||||
msgid "[None]"
|
||||
msgstr "[空]"
|
||||
|
||||
#: admin/partials/page_fields.twig:74 admin/partials/post_fields.twig:184
|
||||
#: admin/partials/post_fields.twig:200
|
||||
#: admin/partials/page_fields.twig:76 admin/partials/post_fields.twig:186
|
||||
#: admin/partials/post_fields.twig:202
|
||||
msgid "Publish"
|
||||
msgstr "公开"
|
||||
msgstr "发布"
|
||||
|
||||
#: admin/partials/page_fields.twig:77 admin/partials/page_fields.twig:81
|
||||
#: admin/partials/post_fields.twig:187 admin/partials/post_fields.twig:191
|
||||
#: admin/partials/post_fields.twig:204
|
||||
#: admin/partials/page_fields.twig:79 admin/partials/page_fields.twig:83
|
||||
#: admin/partials/post_fields.twig:189 admin/partials/post_fields.twig:193
|
||||
#: admin/partials/post_fields.twig:206
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
|
@ -1298,30 +1265,30 @@ msgid "%d file previously uploaded with this post."
|
|||
msgid_plural "%d files previously uploaded with this post."
|
||||
msgstr[0] "%d之前随此帖子上传的文件。"
|
||||
|
||||
#: admin/partials/post_fields.twig:82
|
||||
#: admin/partials/post_fields.twig:84
|
||||
msgid "Draft"
|
||||
msgstr "草稿"
|
||||
|
||||
#: admin/partials/post_fields.twig:94
|
||||
#: admin/partials/post_fields.twig:96
|
||||
msgid "Scheduled"
|
||||
msgstr "定时发布"
|
||||
|
||||
#: admin/partials/post_fields.twig:96
|
||||
#: admin/partials/post_fields.twig:98
|
||||
msgid "Visible only to a group of users:"
|
||||
msgstr "仅可见于一组用户:"
|
||||
|
||||
#: admin/partials/post_fields.twig:99
|
||||
#: admin/partials/post_fields.twig:101
|
||||
msgid "All registered users"
|
||||
msgstr "所有注册的用户"
|
||||
|
||||
#: admin/partials/post_fields.twig:115
|
||||
#: admin/partials/post_fields.twig:117
|
||||
msgid "Pinned?"
|
||||
msgstr "置顶?"
|
||||
|
||||
#: admin/partials/post_fields.twig:116
|
||||
#: admin/partials/post_fields.twig:118
|
||||
msgid "(shows this post above all others)"
|
||||
msgstr "(置顶显示)"
|
||||
|
||||
#: admin/partials/post_fields.twig:130
|
||||
#: admin/partials/post_fields.twig:132
|
||||
msgid "Timestamp"
|
||||
msgstr "时间戳"
|
||||
|
|
|
@ -22,6 +22,28 @@
|
|||
<input class="text digits" type="number" min="1" name="admin_per_page" value="{{ site.admin_per_page | fix(true) }}" size="2" id="admin_per_page">
|
||||
</p>
|
||||
<p>
|
||||
<label for="default_post_status">{{ "Default Post Status" | translate }}</label>
|
||||
{#- -#}
|
||||
<select name="default_post_status" id="default_post_status">
|
||||
{% for post_status in post_statuses %}
|
||||
<option value="{{ post_status.id }}"{{ post_status.id | selected(site.default_post_status) }}>
|
||||
{{ post_status.name }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<label for="default_page_status">{{ "Default Page Status" | translate }}</label>
|
||||
{#- -#}
|
||||
<select name="default_page_status" id="default_page_status">
|
||||
{% for page_status in page_statuses %}
|
||||
<option value="{{ page_status.id }}"{{ page_status.id | selected(site.default_page_status) }}>
|
||||
{{ page_status.name }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<label for="uploads_path">{{ "Uploads Path" | translate }}</label>
|
||||
{#- -#}
|
||||
<input class="text" type="text" name="uploads_path" value="{{ site.uploads_path | fix(true, true) }}" id="uploads_path">
|
||||
|
@ -70,7 +92,7 @@
|
|||
<label for="enable_emoji">
|
||||
{{ "Unicode Emoticons" | translate }}
|
||||
<a href="{{ url('help/id/unicode_emoticons') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
@ -83,7 +105,7 @@
|
|||
<label for="enable_markdown">
|
||||
{{ "Markdown" | translate }}
|
||||
<a href="{{ url('help/id/markdown') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
{{ "Filter Posts" | translate }}
|
||||
<span class="sub">{{ "(optional)" | translate }}</span>
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
@ -36,7 +36,7 @@
|
|||
{{ "Filter Pages" | translate }}
|
||||
<span class="sub">{{ "(optional)" | translate }}</span>
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
@ -54,7 +54,7 @@
|
|||
{{ "Filter Groups" | translate }}
|
||||
<span class="sub">{{ "(optional)" | translate }}</span>
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
@ -72,7 +72,7 @@
|
|||
{{ "Filter Users" | translate }}
|
||||
<span class="sub">{{ "(optional)" | translate }}</span>
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
|
|
@ -10,13 +10,15 @@
|
|||
{% for safename, feather in enabled_feathers %}
|
||||
<li class="feather{{ feather.classes is defined ? ' ' ~ feather.classes | join(' ') : '' }}" id="feather_{{ safename }}">
|
||||
<h4>
|
||||
{{ feather.name }}{# translation is done in the controller #}
|
||||
{{ feather.name }}
|
||||
{# translation is done in the controller #}
|
||||
<a class="emblem feather_url" rel="external" href="{{ feather.url }}" target="_blank">
|
||||
{{ icon_img("info.svg", "info" | translate) }}
|
||||
{{- icon_svg("info.svg", "Info" | translate) -}}
|
||||
</a>
|
||||
</h4>
|
||||
<p class="feather_description">
|
||||
{{ feather.description }}{# translation is done in the controller #}
|
||||
{{ feather.description }}
|
||||
{# translation is done in the controller #}
|
||||
</p>
|
||||
<div class="controls">
|
||||
<form class="feather_disabler" action="{{ url('disable') }}" method="post" accept-charset="UTF-8">
|
||||
|
@ -43,13 +45,15 @@
|
|||
{% for safename, feather in disabled_feathers %}
|
||||
<li class="feather{{ feather.classes is defined ? ' ' ~ feather.classes | join(' ') : '' }}" id="feather_{{ safename }}">
|
||||
<h4>
|
||||
{{ feather.name }}{# translation is done in the controller #}
|
||||
{{ feather.name }}
|
||||
{# translation is done in the controller #}
|
||||
<a class="emblem feather_url" href="{{ feather.url }}" target="_blank">
|
||||
{{- icon_img("info.svg", "info" | translate) }}
|
||||
{{- icon_svg("info.svg", "Info" | translate) -}}
|
||||
</a>
|
||||
</h4>
|
||||
<p class="feather_description">
|
||||
{{ feather.description }}{# translation is done in the controller #}
|
||||
{{ feather.description }}
|
||||
{# translation is done in the controller #}
|
||||
</p>
|
||||
<div class="controls">
|
||||
<form class="feather_enabler" action="{{ url('enable') }}" method="post" accept-charset="UTF-8">
|
||||
|
|
|
@ -25,14 +25,17 @@
|
|||
{{ "Chyrp URL" | translate }}
|
||||
</label>
|
||||
{#- -#}
|
||||
<input class="text" type="url" name="chyrp_url" value="{{ site.chyrp_url | fix(true, true) }}" id="chyrp_url" required>
|
||||
<input class="text" type="url" name="chyrp_url" value="{{ site.chyrp_url | fix(true, true) }}" id="chyrp_url" readonly>
|
||||
<small>
|
||||
{{ "The base URL for your site." | translate }}
|
||||
</small>
|
||||
</p>
|
||||
<p>
|
||||
<label for="url">
|
||||
{{ "Canonical URL" | translate }}
|
||||
<span class="sub">{{ "(optional)" | translate }}</span>
|
||||
<a href="{{ url('help/id/canonical_url') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<button type="submit">{{ "Search" | translate }}</button>
|
||||
{% if visitor.group.can("add_group") %}
|
||||
<a href="{{ url('new_group') }}" class="button yay">
|
||||
{{ icon_img("add.svg") }}{{ "New Group" | translate }}
|
||||
{{ icon_svg("add.svg") }}{{ "New Group" | translate }}
|
||||
</a>
|
||||
{% endif %}
|
||||
</fieldset>
|
||||
|
@ -38,26 +38,27 @@
|
|||
</td>
|
||||
<td class="group_default emblem">
|
||||
{% if group.id == site.default_group %}
|
||||
{{ icon_img("success.svg", "yes" | translate, "emblem") }}
|
||||
{{ icon_svg("success.svg", "Yes" | translate, "emblem") }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="group_guest emblem">
|
||||
{% if group.id == site.guest_group %}
|
||||
{{ icon_img("success.svg", "yes" | translate, "emblem") }}
|
||||
{{ icon_svg("success.svg", "Yes" | translate, "emblem") }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{{ trigger.call("manage_groups_column", groups) }}
|
||||
<td class="controls">
|
||||
{{ group.edit_link(icon_img("edit.svg", "edit" | translate), null, null, "emblem") }}
|
||||
{{ group.edit_link(icon_svg("edit.svg", "Edit" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
<td class="controls">
|
||||
{{ group.delete_link(icon_img("delete.svg", "delete" | translate), null, null, "emblem") }}
|
||||
{{ group.delete_link(icon_svg("delete.svg", "Delete" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
{{ icon_img("failure.svg", "", "emblem") }} {{ "No results" | translate }}
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
<label for="query">
|
||||
{{ "Search…" | translate }}
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
<input class="text filter_text" type="text" name="query" value="{{ GET.query | fix(true, true) }}" id="query">
|
||||
<button type="submit">{{ "Search" | translate }}</button>
|
||||
{% if visitor.group.can("add_page") %}
|
||||
<a href="{{ url('write_page') }}" class="button yay">
|
||||
{{ icon_img("add.svg") }}{{ "New Page" | translate }}
|
||||
{{ icon_svg("add.svg") }}{{ "New Page" | translate }}
|
||||
</a>
|
||||
{% endif %}
|
||||
</fieldset>
|
||||
|
@ -52,12 +52,12 @@
|
|||
</td>
|
||||
<td class="page_public emblem">
|
||||
{% if page.public %}
|
||||
{{ icon_img("success.svg", "yes" | translate, "emblem") }}
|
||||
{{ icon_svg("success.svg", "Yes" | translate, "emblem") }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="page_show emblem">
|
||||
{% if page.show_in_list %}
|
||||
{{ icon_img("success.svg", "yes" | translate, "emblem") }}
|
||||
{{ icon_svg("success.svg", "Yes" | translate, "emblem") }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="page_author value">
|
||||
|
@ -65,16 +65,17 @@
|
|||
</td>
|
||||
{{ trigger.call("manage_pages_column", page) }}
|
||||
<td class="controls">
|
||||
{{ page.edit_link(icon_img("edit.svg", "edit" | translate), null, null, "emblem") }}
|
||||
{{ page.edit_link(icon_svg("edit.svg", "Edit" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
<td class="controls">
|
||||
{{ page.delete_link(icon_img("delete.svg", "delete" | translate), null, null, "emblem") }}
|
||||
{{ page.delete_link(icon_svg("delete.svg", "Delete" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
{{ icon_img("failure.svg", "", "emblem") }} {{ "No results" | translate }}
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
<label for="query">
|
||||
{{ "Search…" | translate }}
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
<input class="text filter_text" type="text" name="query" value="{{ GET.query | fix(true, true) }}" id="query">
|
||||
<button type="submit">{{ "Search" | translate }}</button>
|
||||
{% if visitor.group.can("add_post", "add_draft") %}
|
||||
<a href="{{ url('write_post') }}" class="button yay">
|
||||
{{ icon_img("add.svg") }}{{ "New Post" | translate }}
|
||||
{{ icon_svg("add.svg") }}{{ "New Post" | translate }}
|
||||
</a>
|
||||
{% endif %}
|
||||
</fieldset>
|
||||
|
@ -34,7 +34,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{% for post in posts.paginated %}
|
||||
<tr id="post_{{ post.id }}" class="post {{ post.status_class }}">
|
||||
<tr id="post_{{ post.id }}" class="post {{ post_statuses.(post.id).classes | join(' ') }}">
|
||||
<td class="post_title title main">
|
||||
<a href="{{ post.url() }}">{{ post.title() | striptags | oneof("[Untitled]" | translate) | truncate(40) }}</a>
|
||||
</td>
|
||||
|
@ -42,23 +42,27 @@
|
|||
{{ post.created_at | time }}
|
||||
</td>
|
||||
<td class="post_status status">
|
||||
{{ post.status_name }}
|
||||
{% for group in post_statuses.(post.id).groups %}
|
||||
<a href="{{ url('manage_users/query/' ~ (('group:' ~ group.name) | url_encode)) }}">{{ group.name }}</a>
|
||||
{% else %}
|
||||
{{ post_statuses.(post.id).name | oneof("[None]" | translate) }}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="post_author value">
|
||||
{{ post.author.name }}
|
||||
</td>
|
||||
{{ trigger.call("manage_posts_column", post) }}
|
||||
<td class="controls">
|
||||
{{ post.edit_link(icon_img("edit.svg", "edit" | translate), null, null, "emblem") }}
|
||||
{{ post.edit_link(icon_svg("edit.svg", "Edit" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
<td class="controls">
|
||||
{{ post.delete_link(icon_img("delete.svg", "delete" | translate), null, null, "emblem") }}
|
||||
{{ post.delete_link(icon_svg("delete.svg", "Delete" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
<img class="emblem" src="{{ site.chyrp_url }}/admin/images/icons/failure.svg" alt="">
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<button type="submit">{{ "Search" | translate }}</button>
|
||||
{% if visitor.group.can("import_content") %}
|
||||
<a href="{{ url('import') }}" class="button yay">
|
||||
{{ icon_img("add.svg") }}{{ "Add Files" | translate }}
|
||||
{{ icon_svg("add.svg") }}{{ "Add Files" | translate }}
|
||||
</a>
|
||||
{% endif %}
|
||||
</fieldset>
|
||||
|
@ -34,15 +34,15 @@
|
|||
{% if ["jpg", "jpeg", "png", "webp", "gif"] | contains(upload.type) %}
|
||||
{{ upload.name | thumbnail("", false, ["max_width=70", "quality=60", "square=1"], "70px") }}
|
||||
{% elseif ["avif", "tif", "tiff", "heif", "bmp"] | contains(upload.type) %}
|
||||
{{ icon_img("image.svg", "", "placeholder") }}
|
||||
{{ icon_svg("image.svg", false, "placeholder") }}
|
||||
{% elseif ["mp3", "m4a", "oga", "ogg", "mka", "flac", "wav", "aiff"] | contains(upload.type) %}
|
||||
{{ icon_img("audio.svg", "", "placeholder") }}
|
||||
{{ icon_svg("audio.svg", false, "placeholder") }}
|
||||
{% elseif ["mpg", "mpeg", "mp2", "mp4", "m4v", "ogv", "mkv", "mov", "avi", "webm", "3gp", "ts"] | contains(upload.type) %}
|
||||
{{ icon_img("video.svg", "", "placeholder") }}
|
||||
{{ icon_svg("video.svg", false, "placeholder") }}
|
||||
{% elseif ["zip", "tar", "rar", "gz", "bz2", "7z", "dmg", "cab", "iso", "udf"] | contains(upload.type) %}
|
||||
{{ icon_img("archive.svg", "", "placeholder") }}
|
||||
{{ icon_svg("archive.svg", false, "placeholder") }}
|
||||
{% else %}
|
||||
{{ icon_img("file.svg", "", "placeholder") }}
|
||||
{{ icon_svg("file.svg", false, "placeholder") }}
|
||||
{% endif %}
|
||||
<a target="_blank" href="{{ upload.name | uploaded }}">{{ upload.name | fix }}</a>
|
||||
</td>
|
||||
|
@ -58,19 +58,20 @@
|
|||
{{ trigger.call("manage_uploads_column", upload) }}
|
||||
<td class="controls">
|
||||
<a class="emblem" href="{{ upload.name | download }}">
|
||||
{{- icon_img("download.svg", "download" | translate) -}}
|
||||
{{- icon_svg("download.svg", "Download" | translate) -}}
|
||||
</a>
|
||||
</td>
|
||||
<td class="controls">
|
||||
<a class="upload_delete_link delete_link emblem" href="{{ url('delete_upload/file/' ~ (upload.name | url_encode)) }}">
|
||||
{{- icon_img("delete.svg", "delete" | translate) -}}
|
||||
{{- icon_svg("delete.svg", "Delete" | translate) -}}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
{{ icon_img("failure.svg", "", "emblem") }} {{ "No results" | translate }}
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
<label for="query">
|
||||
{{ "Search…" | translate }}
|
||||
<a href="{{ url('help/id/filtering_results') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
<input class="text filter_text" type="text" name="query" value="{{ GET.query | fix(true, true) }}" id="query">
|
||||
<button type="submit">{{ "Search" | translate }}</button>
|
||||
{% if visitor.group.can("add_user") %}
|
||||
<a href="{{ url('new_user') }}" class="button yay">
|
||||
{{ icon_img("add.svg") }}{{ "New User" | translate }}
|
||||
{{ icon_svg("add.svg") }}{{ "New User" | translate }}
|
||||
</a>
|
||||
{% endif %}
|
||||
</fieldset>
|
||||
|
@ -43,7 +43,7 @@
|
|||
{% if user.full_name is not empty %}<span class="sub">({{ user.full_name }})</span>{% endif %}
|
||||
</td>
|
||||
<td class="user_group value">
|
||||
{{ user.group.name }}
|
||||
<a href="{{ url('manage_groups/search/' ~ (user.login | url_encode)) }}">{{ user.group.name }}</a>
|
||||
</td>
|
||||
<td class="user_joined date">
|
||||
{{ user.joined_at | time }}
|
||||
|
@ -54,22 +54,23 @@
|
|||
{% if site.email_activation %}
|
||||
<td class="user_activated emblem">
|
||||
{% if user.approved %}
|
||||
{{ icon_img("success.svg", "yes" | translate, "emblem") }}
|
||||
{{ icon_svg("success.svg", "Yes" | translate, "emblem") }}
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endif %}
|
||||
{{ trigger.call("manage_users_column", user) }}
|
||||
<td class="controls">
|
||||
{{ user.edit_link(icon_img("edit.svg", "edit" | translate), null, null, "emblem") }}
|
||||
{{ user.edit_link(icon_svg("edit.svg", "Edit" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
<td class="controls">
|
||||
{{ user.delete_link(icon_img("delete.svg", "delete" | translate), null, null, "emblem") }}
|
||||
{{ user.delete_link(icon_svg("delete.svg", "Delete" | translate), null, null, "emblem") }}
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
{{ icon_img("failure.svg", "", "emblem") }} {{ "No results" | translate }}
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
{% for safename, module in enabled_modules %}
|
||||
<li class="module{{ module.classes is defined ? ' ' ~ module.classes | join(' ') : '' }}" id="module_{{ safename }}">
|
||||
<h4>
|
||||
{{ module.name }}{# translation is done in the controller #}
|
||||
{{ module.name }}
|
||||
{# translation is done in the controller #}
|
||||
<a class="emblem module_url" rel="external" href="{{ module.url }}" target="_blank">
|
||||
{{ icon_img("info.svg", "info" | translate) }}
|
||||
{{- icon_svg("info.svg", "Info" | translate) -}}
|
||||
</a>
|
||||
</h4>
|
||||
<p class="module_description">
|
||||
|
@ -63,9 +64,10 @@
|
|||
{% for safename, module in disabled_modules %}
|
||||
<li class="module{{ module.classes is defined ? ' ' ~ module.classes | join(' ') : '' }}" id="module_{{ safename }}">
|
||||
<h4>
|
||||
{{ module.name }}{# translation is done in the controller #}
|
||||
{{ module.name }}
|
||||
{# translation is done in the controller #}
|
||||
<a class="emblem module_url" href="{{ module.url }}" target="_blank">
|
||||
{{ icon_img("info.svg", "info" | translate) }}
|
||||
{{- icon_svg("info.svg", "Info" | translate) -}}
|
||||
</a>
|
||||
</h4>
|
||||
<p class="module_description">
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
<label for="clean_urls">
|
||||
{{ "Clean URLs" | translate }}
|
||||
<a href="https://chyrplite.net/wiki/Supporting-Clean-URLs.html" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
{#- -#}
|
||||
<input type="checkbox" name="clean_urls" id="clean_urls"{{ site.clean_urls | checked }}>
|
||||
<small>
|
||||
{{ "Gives your site prettier URLs." | translate }} {{ "Requires URL rewrite support." | translate }}
|
||||
{{ "Gives your site prettier URLs." | translate }}
|
||||
<a href="{{ url('download_rewrites') }}">{{ "Download the URL rewrite files." | translate }}</a>
|
||||
</small>
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
@ -8,9 +8,10 @@
|
|||
{% for safename, theme in themes %}
|
||||
<li class="theme{{ safename == site.theme ? ' current' : '' }}" id="{{ safename }}">
|
||||
<h3>
|
||||
{{ theme.name }}{# translation is done in the controller #}
|
||||
{{ theme.name }}
|
||||
{# translation is done in the controller #}
|
||||
<a class="emblem module_author" rel="external" href="{{ theme.url }}" target="_blank">
|
||||
{{ icon_img("info.svg", "info" | translate) }}
|
||||
{{- icon_svg("info.svg", "Info" | translate) -}}
|
||||
</a>
|
||||
</h3>
|
||||
<p class="theme_description">
|
||||
|
|
|
@ -8,11 +8,13 @@
|
|||
<label for="body">
|
||||
{{ "Body" | translate }}
|
||||
</label>
|
||||
<span id="body_toolbar" class="options_toolbar" role="toolbar">{% if field_markdown %}
|
||||
<span id="body_toolbar" class="options_toolbar" role="toolbar">
|
||||
{% if field_markdown %}
|
||||
<a href="{{ url('help/id/markdown') }}" target="_blank" class="help emblem markdown">
|
||||
{{- icon_img("markdown.svg", "Markdown" | translate) -}}
|
||||
{{- icon_svg("markdown.svg", "Markdown" | translate) -}}
|
||||
</a>
|
||||
{% endif %}</span>
|
||||
{% endif %}
|
||||
</span>
|
||||
<textarea rows="12" name="body" id="body" data-preview{{ field_markdown }} required>{{ page is defined ? page.body | fix(false, true) : "" }}</textarea>
|
||||
<span id="body_tray" class="options_tray" role="status"></span>
|
||||
</p>
|
||||
|
@ -22,7 +24,7 @@
|
|||
<label for="slug">
|
||||
{{ "Slug" | translate }}
|
||||
<a href="{{ url('help/id/slugs') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
<input class="text" type="text" name="slug" value="{{ page is defined ? page.clean | fix(true) : '' }}" id="slug" maxlength="128"{{ slug_pattern() }}>
|
||||
|
@ -30,13 +32,13 @@
|
|||
<p class="more_options_option">
|
||||
<label for="status">{{ "Status" | translate }}</label>
|
||||
<select name="status" id="status">
|
||||
{% set option_selected = page is defined ? page.status | selected("listed") : " selected" %}
|
||||
{% set option_selected = (page is defined ? page.status : site.default_page_status) | selected("listed") %}
|
||||
<option value="listed"{{ option_selected }}>{{ "Public and visible in pages list" | translate }}</option>
|
||||
{% set option_selected = page is defined ? page.status | selected("public") : "" %}
|
||||
{% set option_selected = (page is defined ? page.status : site.default_page_status) | selected("public") %}
|
||||
<option value="public"{{ option_selected }}>{{ "Public" | translate }}</option>
|
||||
{% set option_selected = page is defined ? page.status | selected("teased") : "" %}
|
||||
{% set option_selected = (page is defined ? page.status : site.default_page_status) | selected("teased") %}
|
||||
<option value="teased"{{ option_selected }}>{{ "Private and visible in pages list" | translate }}</option>
|
||||
{% set option_selected = page is defined ? page.status | selected("private") : "" %}
|
||||
{% set option_selected = (page is defined ? page.status : site.default_page_status) | selected("private") %}
|
||||
<option value="private"{{ option_selected }}>{{ "Private" | translate }}</option>
|
||||
</select>
|
||||
</p>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
{% endif %}
|
||||
{% if field.help is defined %}
|
||||
<a href="{{ url('help/id/' ~ (field.help | url_encode)) }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
{% endif %}
|
||||
</label>
|
||||
|
@ -48,10 +48,12 @@
|
|||
{% endif %}
|
||||
{% elseif field.type == "text_block" %}
|
||||
<span id="{{ field_name }}_field_toolbar" class="options_toolbar" role="toolbar">
|
||||
{% if field_markdown is not empty %}<a href="{{ url('help/id/markdown') }}" target="_blank" class="help emblem markdown">
|
||||
{{- icon_img("markdown.svg", "Markdown" | translate) -}}
|
||||
{% if field_markdown is not empty %}
|
||||
<a href="{{ url('help/id/markdown') }}" target="_blank" class="help emblem markdown">
|
||||
{{- icon_svg("markdown.svg", "Markdown" | translate) -}}
|
||||
</a>
|
||||
{% endif %}</span>
|
||||
{% endif %}
|
||||
</span>
|
||||
<textarea id="{{ field_id }}" name="{{ field_name }}" rows="12"{{ field_preview ~ field_markdown ~ field_required }}>{{ field_value | fix(false, true) }}</textarea>
|
||||
<span id="{{ field_name }}_field_tray" class="options_tray" role="status"></span>
|
||||
{% elseif field.type == "checkbox" %}
|
||||
|
@ -77,24 +79,24 @@
|
|||
<p class="more_options_option">
|
||||
<label for="status">{{ "Status" | translate }}</label>
|
||||
<select id="status" name="status">
|
||||
{% set option_selected = post is defined ? post.status | selected("draft") : "" %}
|
||||
{% set option_selected = (post is defined ? post.status : site.default_post_status) | selected("draft") %}
|
||||
<option value="draft"{{ option_selected }}>
|
||||
{{ "Draft" | translate }}
|
||||
</option>
|
||||
{% set option_selected = post is defined ? post.status | selected("public") : " selected" %}
|
||||
{% set option_selected = (post is defined ? post.status : site.default_post_status) | selected("public") %}
|
||||
<option value="public"{{ option_selected }}>
|
||||
{{ "Public" | translate }}
|
||||
</option>
|
||||
{% set option_selected = post is defined ? post.status | selected("private") : "" %}
|
||||
{% set option_selected = (post is defined ? post.status : site.default_post_status) | selected("private") %}
|
||||
<option value="private"{{ option_selected }}>
|
||||
{{ "Private" | translate }}
|
||||
</option>
|
||||
{% set option_selected = post is defined ? post.status | selected("scheduled") : "" %}
|
||||
{% set option_selected = (post is defined ? post.status : site.default_post_status) | selected("scheduled") %}
|
||||
<option value="scheduled"{{ option_selected }}>
|
||||
{{ "Scheduled" | translate }}
|
||||
</option>
|
||||
<optgroup label="{{ 'Visible only to a group of users:' | translate }}">
|
||||
{% set option_selected = post is defined ? post.status | selected("registered_only") : "" %}
|
||||
{% set option_selected = (post is defined ? post.status : site.default_post_status) | selected("registered_only") %}
|
||||
<option value="registered_only"{{ option_selected }}>
|
||||
{{ "All registered users" | translate }}
|
||||
</option>
|
||||
|
@ -121,7 +123,7 @@
|
|||
<label for="slug">
|
||||
{{ "Slug" | translate }}
|
||||
<a href="{{ url('help/id/slugs') }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
</label>
|
||||
<input id="slug" class="text" type="text" name="slug" value="{{ post is defined ? post.clean | fix(true) : '' }}" maxlength="128"{{ slug_pattern() }}>
|
||||
|
@ -145,7 +147,7 @@
|
|||
{% endif %}
|
||||
{% if field.help is defined %}
|
||||
<a href="{{ url('help/id/' ~ (field.help | url_encode)) }}" rel="help" target="_blank" class="help emblem">
|
||||
{{- icon_img("help.svg", "help" | translate) -}}
|
||||
{{- icon_svg("help.svg", "Help" | translate) -}}
|
||||
</a>
|
||||
{% endif %}
|
||||
</label>
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
{{ upload.name | thumbnail("", false, ["max_width=70", "quality=60", "square=1"], "70px") }}
|
||||
{% set file_url = site.chyrp_url ~ "/includes/thumbnail.php?file=" ~ (upload.name | url_encode) %}
|
||||
{% elseif ["avif", "tif", "tiff", "bmp"] | contains(upload.type) %}
|
||||
{{ icon_img("image.svg", "", "placeholder") }}
|
||||
{{ icon_svg("image.svg", false, "placeholder") }}
|
||||
{% set file_url = site.chyrp_url ~ "/includes/thumbnail.php?file=" ~ (upload.name | url_encode) %}
|
||||
{% elseif ["mp3", "m4a", "oga", "ogg", "mka", "flac", "wav"] | contains(upload.type) %}
|
||||
{{ icon_img("audio.svg", "", "placeholder") }}
|
||||
{{ icon_svg("audio.svg", false, "placeholder") }}
|
||||
{% set file_url = upload.name | uploaded %}
|
||||
{% elseif ["mpg", "mpeg", "mp2", "mp4", "m4v", "ogv", "mkv", "mov", "avi", "webm", "3gp", "ts"] | contains(upload.type) %}
|
||||
{{ icon_img("video.svg", "", "placeholder") }}
|
||||
{{ icon_svg("video.svg", false, "placeholder") }}
|
||||
{% set file_url = upload.name | uploaded %}
|
||||
{% elseif ["zip", "tar", "rar", "gz", "bz2", "7z", "dmg", "cab", "iso", "udf"] | contains(upload.type) %}
|
||||
{{ icon_img("archive.svg", "", "placeholder") }}
|
||||
{{ icon_svg("archive.svg", false, "placeholder") }}
|
||||
{% set file_url = upload.name | download %}
|
||||
{% else %}
|
||||
{{ icon_img("file.svg", "", "placeholder") }}
|
||||
{{ icon_svg("file.svg", false, "placeholder") }}
|
||||
{% set file_url = upload.name | download %}
|
||||
{% endif %}
|
||||
<a data-name="{{ upload.name }}" data-type="{{ upload.type }}" data-size="{{ upload.size }}" href="{{ file_url }}">
|
||||
|
@ -30,7 +30,8 @@
|
|||
{% else %}
|
||||
<tr>
|
||||
<td class="placeholder">
|
||||
{{ icon_img("failure.svg", "", "emblem") }} {{ "No results" | translate }}
|
||||
{{ icon_svg("failure.svg", false, "emblem") }}
|
||||
{{ "No results" | translate }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
html, body, div, dl, dt, dd, ul, ol, li, p,
|
||||
h1, h2, h3, h4, h5, h6, img, pre, code,
|
||||
form, fieldset, input, select, textarea,
|
||||
form, fieldset, input, select, svg, textarea,
|
||||
table, tbody, tr, th, td, legend, caption,
|
||||
blockquote, aside, figure, figcaption {
|
||||
margin: 0em;
|
||||
|
@ -107,30 +107,34 @@ ol {
|
|||
--chyrp-strong-red: #c11600;
|
||||
--chyrp-strong-green: #108600;
|
||||
--chyrp-strong-blue: #1e57ba;
|
||||
--chyrp-strong-purple: #ba1eba;
|
||||
--chyrp-light-yellow: #fffde6;
|
||||
--chyrp-light-red: #faebe4;
|
||||
--chyrp-light-green: #ebfae4;
|
||||
--chyrp-light-blue: #f2fbff;
|
||||
--chyrp-light-purple: #fae4fa;
|
||||
--chyrp-medium-yellow: #fffbcc;
|
||||
--chyrp-medium-red: #fcddcf;
|
||||
--chyrp-medium-green: #daf1d0;
|
||||
--chyrp-medium-blue: #e1f2fa;
|
||||
--chyrp-medium-purple: #f6d5f6;
|
||||
--chyrp-border-yellow: #e5d7a1;
|
||||
--chyrp-border-red: #d6bdb5;
|
||||
--chyrp-border-green: #bdd6b5;
|
||||
--chyrp-border-blue: #b8cdd9;
|
||||
--chyrp-border-purple: #d6b5d6;
|
||||
}
|
||||
*::selection {
|
||||
color: #1f1f23;
|
||||
background-color: #ffdd00;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-strong-yellow);
|
||||
}
|
||||
body {
|
||||
font-family: "Open Sans webfont", sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
tab-size: 4;
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
min-width: 320px;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
|
@ -168,8 +172,8 @@ small, .small {
|
|||
font-size: 0.75em;
|
||||
}
|
||||
mark {
|
||||
color: #1f1f23;
|
||||
background-color: #ffdd00;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-strong-yellow);
|
||||
}
|
||||
del {
|
||||
font: inherit;
|
||||
|
@ -177,8 +181,8 @@ del {
|
|||
}
|
||||
ins {
|
||||
font: inherit;
|
||||
color: #1f1f23;
|
||||
background-color: #daf1d0;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-medium-green);
|
||||
}
|
||||
figure, blockquote {
|
||||
margin-bottom: 1rem;
|
||||
|
@ -200,18 +204,18 @@ p {
|
|||
}
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 0.125em;
|
||||
}
|
||||
a:focus {
|
||||
outline: #ff7f00 dashed 2px;
|
||||
outline-offset: 1px;
|
||||
outline: var(--chyrp-strong-orange) dashed 2px;
|
||||
outline-offset: 0px;
|
||||
}
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
color: #1e57ba;
|
||||
color: var(--chyrp-strong-blue);
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 0.125em;
|
||||
}
|
||||
|
@ -227,9 +231,9 @@ a:active {
|
|||
/* Group: Header */
|
||||
|
||||
#header {
|
||||
background-color: #1f1f23;
|
||||
background-color: var(--chyrp-inky-black);
|
||||
padding: 2rem 0rem 3rem 0rem;
|
||||
color: #efefef;
|
||||
color: var(--chyrp-english-grey);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
@ -237,7 +241,7 @@ a:active {
|
|||
margin: 0rem 2rem 2rem 2rem;
|
||||
}
|
||||
#header h1 a {
|
||||
color: #ffffff;
|
||||
color: var(--chyrp-pure-white);
|
||||
text-decoration: none;
|
||||
}
|
||||
#header #navigation {
|
||||
|
@ -273,14 +277,14 @@ a:active {
|
|||
}
|
||||
#header #navigation li a:link,
|
||||
#header #navigation li a:visited {
|
||||
background-color: #cfcfcf;
|
||||
background-color: var(--chyrp-irish-grey);
|
||||
}
|
||||
#header #navigation li.selected a:link,
|
||||
#header #navigation li.selected a:visited,
|
||||
#header #navigation li a:hover,
|
||||
#header #navigation li a:focus {
|
||||
outline: none;
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
}
|
||||
|
||||
/* Group: Sub-Navigation */
|
||||
|
@ -292,7 +296,7 @@ a:active {
|
|||
column-gap: 4px;
|
||||
margin: 4rem 4rem 0rem 4rem;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #afafaf;
|
||||
border-bottom: 1px solid var(--chyrp-scottish-grey);
|
||||
}
|
||||
#sub_nav li {
|
||||
display: block;
|
||||
|
@ -313,31 +317,31 @@ a:active {
|
|||
text-overflow: ellipsis;
|
||||
margin: 0rem;
|
||||
padding: 0rem 1rem 100vh 1rem;
|
||||
border: 1px solid #afafaf;
|
||||
border: 1px solid var(--chyrp-scottish-grey);
|
||||
border-bottom: none;
|
||||
border-top-left-radius: 0.75em;
|
||||
border-top-right-radius: 0.75em;
|
||||
}
|
||||
#sub_nav li a:link,
|
||||
#sub_nav li a:visited {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
}
|
||||
#sub_nav li.selected a:link,
|
||||
#sub_nav li.selected a:visited,
|
||||
#sub_nav li a:hover,
|
||||
#sub_nav li a:focus {
|
||||
outline: none;
|
||||
background-color: #ffffff;
|
||||
background-color: var(--chyrp-pure-white);
|
||||
}
|
||||
|
||||
/* Group: Content */
|
||||
|
||||
#content {
|
||||
clear: both;
|
||||
background-color: #ffffff;
|
||||
background-color: var(--chyrp-pure-white);
|
||||
padding: 1rem;
|
||||
margin: 0rem 4rem 4rem 4rem;
|
||||
border: 1px solid #afafaf;
|
||||
border: 1px solid var(--chyrp-scottish-grey);
|
||||
border-top: none;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
@ -345,21 +349,21 @@ a:active {
|
|||
hr {
|
||||
border: none;
|
||||
clear: both;
|
||||
border-top: 1px solid #cfcfcf;
|
||||
border-top: 1px solid var(--chyrp-irish-grey);
|
||||
margin: 2rem 0rem;
|
||||
}
|
||||
aside {
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 1rem;
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #e5d7a1;
|
||||
padding: 0.5rem;
|
||||
border: 1px solid var(--chyrp-border-yellow);
|
||||
border-radius: 0.25em;
|
||||
background-color: #fffde6;
|
||||
background-color: var(--chyrp-light-yellow);
|
||||
}
|
||||
pre {
|
||||
font-family: "Cousine webfont", monospace;
|
||||
font-size: 0.85em;
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
margin: 1rem 0rem;
|
||||
padding: 1rem;
|
||||
overflow-x: auto;
|
||||
|
@ -368,9 +372,9 @@ pre {
|
|||
code {
|
||||
font-family: "Cousine webfont", monospace;
|
||||
font-size: 0.85em;
|
||||
background-color: #efefef;
|
||||
padding: 0px 2px;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
padding: 2px 4px 0px 4px;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
vertical-align: bottom;
|
||||
white-space: break-spaces;
|
||||
}
|
||||
|
@ -418,19 +422,19 @@ span.pages {
|
|||
border-radius: 0.5em;
|
||||
}
|
||||
#content ul.extend > li {
|
||||
background-color: #efefef;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
}
|
||||
#content ul#modules_enabled > li,
|
||||
#content ul#feathers_enabled > li,
|
||||
#content ul.themes > li.current {
|
||||
background-color: #daf1d0;
|
||||
border: 1px solid #bdd6b5;
|
||||
background-color: var(--chyrp-medium-green);
|
||||
border: 1px solid var(--chyrp-border-green);
|
||||
}
|
||||
#content ul#modules_enabled > li.error,
|
||||
#content ul#modules_disabled > li.error {
|
||||
background-color: #fcddcf;
|
||||
border: 1px solid #d6bdb5;
|
||||
background-color: var(--chyrp-medium-red);
|
||||
border: 1px solid var(--chyrp-border-red);
|
||||
}
|
||||
li.module ol.module_conflicts_list,
|
||||
li.module ol.module_dependencies_list {
|
||||
|
@ -448,20 +452,16 @@ li.theme div.controls {
|
|||
text-align: end;
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid #cfcfcf;
|
||||
border-top: 1px solid var(--chyrp-irish-grey);
|
||||
}
|
||||
ul#modules_enabled div.controls,
|
||||
ul#feathers_enabled div.controls,
|
||||
li.theme.current div.controls {
|
||||
border-top: 1px solid #bdd6b5;
|
||||
border-top: 1px solid var(--chyrp-border-green);
|
||||
}
|
||||
ul#modules_enabled > li.error div.controls,
|
||||
ul#modules_disabled > li.error div.controls {
|
||||
border-top: 1px solid #d6bdb5;
|
||||
}
|
||||
#content ul.extend li a.emblem img,
|
||||
#content ul.extend > li > h3 a {
|
||||
text-decoration: none;
|
||||
border-top: 1px solid var(--chyrp-border-red);
|
||||
}
|
||||
|
||||
/* Group: Forms */
|
||||
|
@ -478,11 +478,16 @@ textarea {
|
|||
select, input {
|
||||
display: inline-block;
|
||||
}
|
||||
textarea[readonly],
|
||||
input[readonly],
|
||||
select[readonly] {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
appearance: none;
|
||||
box-sizing: border-box;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
font: inherit;
|
||||
font-size: 1.25rem;
|
||||
position: relative;
|
||||
|
@ -490,8 +495,8 @@ input[type="radio"] {
|
|||
width: 1em;
|
||||
height: 1em;
|
||||
border-radius: 0em;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
background-color: var(--chyrp-pure-white);
|
||||
}
|
||||
input[type="radio"] {
|
||||
border-radius: 50%;
|
||||
|
@ -509,23 +514,23 @@ input[type="range"],
|
|||
input[type="password"] {
|
||||
box-sizing: border-box;
|
||||
width: 20ch;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
font: inherit;
|
||||
font-size: 1.25rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 0em;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
background-color: var(--chyrp-pure-white);
|
||||
}
|
||||
input[type="file"] {
|
||||
box-sizing: border-box;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
font: inherit;
|
||||
font-size: 1.25rem;
|
||||
padding: 1rem;
|
||||
border-radius: 0em;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
background-color: var(--chyrp-pure-white);
|
||||
}
|
||||
html[dir="ltr"] select {
|
||||
appearance: none;
|
||||
|
@ -556,12 +561,12 @@ input[type="radio"]:checked {
|
|||
background-repeat: no-repeat;
|
||||
}
|
||||
input::placeholder {
|
||||
color: #656565;
|
||||
color: var(--chyrp-winter-grey);
|
||||
opacity: 1;
|
||||
}
|
||||
input:invalid,
|
||||
textarea:invalid {
|
||||
border-color: #ff7f00;
|
||||
border-color: var(--chyrp-strong-orange);
|
||||
}
|
||||
select:focus,
|
||||
textarea:focus,
|
||||
|
@ -576,8 +581,8 @@ input[type="number"]:focus,
|
|||
input[type="range"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="file"]:focus {
|
||||
border-color: #1e57ba;
|
||||
outline: #1e57ba solid 2px;
|
||||
border-color: var(--chyrp-strong-blue);
|
||||
outline: var(--chyrp-strong-blue) solid 2px;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
textarea.error,
|
||||
|
@ -593,7 +598,7 @@ input[type="number"].error,
|
|||
input[type="range"].error,
|
||||
input[type="password"].error,
|
||||
input[type="file"].error {
|
||||
background-color: #faebe4;
|
||||
background-color: var(--chyrp-light-red);
|
||||
}
|
||||
textarea.error:focus,
|
||||
input[type="checkbox"].error:focus,
|
||||
|
@ -608,15 +613,21 @@ input[type="number"].error:focus,
|
|||
input[type="range"].error:focus,
|
||||
input[type="password"].error:focus,
|
||||
input[type="file"].error:focus {
|
||||
border: 1px solid #c11600;
|
||||
outline-color: #c11600;
|
||||
border: 1px solid var(--chyrp-strong-red);
|
||||
outline-color: var(--chyrp-strong-red);
|
||||
}
|
||||
input[type="password"].strong {
|
||||
background-color: #ebfae4;
|
||||
background-color: var(--chyrp-light-green);
|
||||
}
|
||||
input[type="password"].strong:focus {
|
||||
border: 1px solid #108600;
|
||||
outline-color: #108600;
|
||||
border: 1px solid var(--chyrp-strong-green);
|
||||
outline-color: var(--chyrp-strong-green);
|
||||
}
|
||||
textarea[readonly]:focus,
|
||||
input[readonly]:focus,
|
||||
select[readonly]:focus {
|
||||
border-color: var(--chyrp-irish-grey);
|
||||
outline-color: var(--chyrp-irish-grey);
|
||||
}
|
||||
input.code,
|
||||
textarea.code {
|
||||
|
@ -684,21 +695,21 @@ table {
|
|||
width: 100%;
|
||||
}
|
||||
table th {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
padding: 0.5rem;
|
||||
font: inherit;
|
||||
font-weight: 600;
|
||||
vertical-align: middle;
|
||||
border: 1px solid #afafaf;
|
||||
border: 1px solid var(--chyrp-scottish-grey);
|
||||
}
|
||||
table td {
|
||||
padding: 0.5rem;
|
||||
font: inherit;
|
||||
vertical-align: middle;
|
||||
border: 1px solid #cfcfcf;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
}
|
||||
table tbody tr:nth-child(even) td {
|
||||
background-color: #fbfbfb;
|
||||
background-color: var(--chyrp-summer-grey);
|
||||
}
|
||||
table tbody tr td.main {
|
||||
min-width: 10em;
|
||||
|
@ -745,22 +756,22 @@ table tbody tr td.placeholder {
|
|||
border: none;
|
||||
}
|
||||
table tbody tr td.status {
|
||||
background-color: #f2fbff;
|
||||
background-color: var(--chyrp-light-blue);
|
||||
}
|
||||
table tbody tr.private td.status {
|
||||
background-color: #faebe4;
|
||||
background-color: var(--chyrp-light-red);
|
||||
}
|
||||
table tbody tr.registered_only td.status {
|
||||
background-color: #fffde6;
|
||||
background-color: var(--chyrp-light-purple);
|
||||
}
|
||||
table tbody tr.public td.status {
|
||||
background-color: #ebfae4;
|
||||
background-color: var(--chyrp-light-green);
|
||||
}
|
||||
table tbody tr.denied td.status {
|
||||
background-color: #faebe4;
|
||||
background-color: var(--chyrp-light-red);
|
||||
}
|
||||
table tbody tr.approved td.status {
|
||||
background-color: #ebfae4;
|
||||
background-color: var(--chyrp-light-green);
|
||||
}
|
||||
table tbody tr.comment_excerpt td p {
|
||||
margin: 0rem;
|
||||
|
@ -768,7 +779,9 @@ table tbody tr.comment_excerpt td p {
|
|||
th.toggler > label {
|
||||
display: none;
|
||||
}
|
||||
td.controls svg,
|
||||
td.controls img {
|
||||
fill: currentColor;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
width: 16px;
|
||||
|
@ -779,10 +792,12 @@ td img.image {
|
|||
height: 70px;
|
||||
margin-inline-end: 0.5rem;
|
||||
vertical-align: middle;
|
||||
outline: #ff7f00 solid 1px;
|
||||
outline: var(--chyrp-border-blue) solid 1px;
|
||||
outline-offset: 0px;
|
||||
}
|
||||
td svg.placeholder,
|
||||
td img.placeholder {
|
||||
fill: var(--chyrp-winter-grey);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 27px;
|
||||
|
@ -795,19 +810,19 @@ td img.placeholder {
|
|||
div.flash {
|
||||
padding: 0.5rem;
|
||||
margin-bottom: 1rem;
|
||||
background-color: #1e57ba;
|
||||
color: #ffffff;
|
||||
background-color: var(--chyrp-strong-blue);
|
||||
color: var(--chyrp-pure-white);
|
||||
border: none;
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
div.flash.notice {
|
||||
background-color: #108600;
|
||||
background-color: var(--chyrp-strong-green);
|
||||
}
|
||||
div.flash.warning {
|
||||
background-color: #c11600;
|
||||
background-color: var(--chyrp-strong-red);
|
||||
}
|
||||
div.flash a {
|
||||
color: #ffffff;
|
||||
color: var(--chyrp-pure-white);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
@ -822,12 +837,12 @@ a.prev_page {
|
|||
display: inline-block;
|
||||
font: inherit;
|
||||
font-size: 1.25rem;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
text-align: center;
|
||||
margin: 0rem;
|
||||
padding: 0.5rem 1rem;
|
||||
background-color: #f2fbff;
|
||||
border: 2px solid #b8cdd9;
|
||||
background-color: var(--chyrp-light-blue);
|
||||
border: 2px solid var(--chyrp-border-blue);
|
||||
border-radius: 0.25em;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
|
@ -850,14 +865,14 @@ input::file-selector-button:active,
|
|||
a.button:active,
|
||||
a.next_page:active,
|
||||
a.prev_page:active {
|
||||
border-color: #1e57ba;
|
||||
border-color: var(--chyrp-strong-blue);
|
||||
outline: none;
|
||||
}
|
||||
button.boo,
|
||||
a.button.boo {
|
||||
color: #1f1f23;
|
||||
background-color: #faebe4;
|
||||
border: 2px solid #d6bdb5;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-light-red);
|
||||
border: 2px solid var(--chyrp-border-red);
|
||||
}
|
||||
button.boo:hover,
|
||||
a.button.boo:hover,
|
||||
|
@ -865,13 +880,13 @@ button.boo:focus,
|
|||
a.button.boo:focus,
|
||||
button.boo:active,
|
||||
a.button.boo:active {
|
||||
border-color: #c11600;
|
||||
border-color: var(--chyrp-strong-red);
|
||||
}
|
||||
button.yay,
|
||||
a.button.yay {
|
||||
color: #1f1f23;
|
||||
background-color: #ebfae4;
|
||||
border: 2px solid #bdd6b5;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-light-green);
|
||||
border: 2px solid var(--chyrp-border-green);
|
||||
}
|
||||
button.yay:hover,
|
||||
a.button.yay:hover,
|
||||
|
@ -879,10 +894,13 @@ button.yay:focus,
|
|||
a.button.yay:focus,
|
||||
button.yay:active,
|
||||
a.button.yay:active {
|
||||
border-color: #108600;
|
||||
border-color: var(--chyrp-strong-green);
|
||||
}
|
||||
button > svg,
|
||||
button > img,
|
||||
a.button > svg,
|
||||
a.button > img {
|
||||
fill: currentColor;
|
||||
display: block;
|
||||
position: relative;
|
||||
top: 0.5rem;
|
||||
|
@ -963,9 +981,9 @@ span.options_extra {
|
|||
display: block;
|
||||
width: 100%;
|
||||
max-height: 10rem;
|
||||
padding: 1rem;
|
||||
background-color: #fffde6;
|
||||
border: 1px solid #cfcfcf;
|
||||
padding: 0.5rem;
|
||||
background-color: var(--chyrp-light-yellow);
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
border-top: none;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
@ -979,8 +997,8 @@ span.options_toolbar {
|
|||
gap: 24px;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
background-color: #fbfbfb;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-summer-grey);
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
border-bottom: none;
|
||||
padding: 0.5rem 0.75rem calc(0.5rem + 0.1875rem) 0.75rem;
|
||||
border-top-left-radius: 0.25rem;
|
||||
|
@ -994,8 +1012,8 @@ span.options_tray {
|
|||
display: block;
|
||||
width: 100%;
|
||||
font-size: 0.67rem;
|
||||
background-color: #fbfbfb;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-summer-grey);
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
border-top: none;
|
||||
padding: 0.25rem 0.5rem;
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
|
@ -1012,21 +1030,26 @@ span.options_tray:empty {
|
|||
margin-top: 0.25rem;
|
||||
padding: 0em 0.25em;
|
||||
border-radius: 0.25em;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #efefef;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
background-color: var(--chyrp-english-grey);
|
||||
}
|
||||
*.tag:link,
|
||||
*.tag:visited {
|
||||
text-decoration: none;
|
||||
}
|
||||
*.tag:focus {
|
||||
outline: var(--chyrp-strong-purple) solid 2px;
|
||||
outline-offset: -1px;
|
||||
}
|
||||
*.tag:active,
|
||||
*.tag_added {
|
||||
background-color: #f2fbff;
|
||||
border-color: #1e57ba;
|
||||
background-color: var(--chyrp-light-purple);
|
||||
border-color: var(--chyrp-strong-purple);
|
||||
}
|
||||
table.interactive + div.controls {
|
||||
background-color: #fffde6;
|
||||
padding: 1rem;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-light-yellow);
|
||||
padding: 1rem 0.5rem;
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
border-top: none;
|
||||
}
|
||||
table.interactive.empty + div.controls {
|
||||
|
@ -1039,8 +1062,8 @@ div.confirmation {
|
|||
column-gap: 2rem;
|
||||
justify-content: space-between;
|
||||
padding: 1rem;
|
||||
background-color: #fbfbfb;
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: var(--chyrp-summer-grey);
|
||||
border: 1px solid var(--chyrp-irish-grey);
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
a.emblem {
|
||||
|
@ -1054,7 +1077,7 @@ button.emblem {
|
|||
display: inline;
|
||||
font: inherit;
|
||||
font-size: 1em;
|
||||
color: #1f1f23;
|
||||
color: var(--chyrp-inky-black);
|
||||
margin: 0rem;
|
||||
padding: 0rem;
|
||||
background-color: transparent;
|
||||
|
@ -1062,10 +1085,15 @@ button.emblem {
|
|||
border-radius: 0rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
svg.emblem,
|
||||
img.emblem,
|
||||
a.emblem > svg,
|
||||
a.emblem > img,
|
||||
label.emblem > svg,
|
||||
label.emblem > img,
|
||||
button.emblem > svg,
|
||||
button.emblem > img {
|
||||
fill: currentColor;
|
||||
float: none;
|
||||
display: inline;
|
||||
position: relative;
|
||||
|
@ -1079,10 +1107,25 @@ label.emblem:focus,
|
|||
button.emblem:focus {
|
||||
outline: none;
|
||||
}
|
||||
a.emblem:focus > img,
|
||||
button.emblem:focus > img,
|
||||
label.emblem.toolbar > input:focus + img {
|
||||
outline: #ff7f00 dashed 2px;
|
||||
a.emblem:hover,
|
||||
a.emblem:focus,
|
||||
a.emblem:active,
|
||||
label.emblem:hover,
|
||||
label.emblem:focus,
|
||||
label.emblem:active,
|
||||
button.emblem:hover,
|
||||
button.emblem:focus,
|
||||
button.emblem:active {
|
||||
color: var(--chyrp-strong-blue);
|
||||
}
|
||||
a.emblem:focus-visible > svg,
|
||||
a.emblem:focus-visible > img,
|
||||
button.emblem:focus-visible > svg,
|
||||
button.emblem:focus-visible > img,
|
||||
label.emblem.toolbar > input:focus-visible + svg,
|
||||
label.emblem.toolbar > input:focus-visible + img {
|
||||
fill: var(--chyrp-strong-blue);
|
||||
outline: var(--chyrp-strong-orange) dashed 2px;
|
||||
outline-offset: 1px;
|
||||
}
|
||||
input.toolbar.hidden {
|
||||
|
@ -1100,7 +1143,7 @@ input.toolbar.hidden::file-selector-button {
|
|||
display: none !important;
|
||||
}
|
||||
.drag_highlight {
|
||||
background-color: #fffde6;
|
||||
background-color: var(--chyrp-light-yellow);
|
||||
}
|
||||
|
||||
/* Group: iFrames */
|
||||
|
@ -1114,7 +1157,7 @@ input.toolbar.hidden::file-selector-button {
|
|||
left: 0px;
|
||||
/* Prevent other elements overlapping */
|
||||
z-index: 1;
|
||||
background-color: rgba(239, 239, 239, 0.75);
|
||||
backdrop-filter: blur(4px) contrast(33%) brightness(150%);
|
||||
}
|
||||
.iframe_foreground {
|
||||
box-sizing: border-box;
|
||||
|
@ -1129,13 +1172,9 @@ input.toolbar.hidden::file-selector-button {
|
|||
overflow-y: auto;
|
||||
overscroll-behavior: contain;
|
||||
border: none;
|
||||
background-color: #ffffff;
|
||||
background-color: var(--chyrp-pure-white);
|
||||
box-shadow: 0px 4px 16px 2px rgba(79, 79, 79, 0.5);
|
||||
}
|
||||
.iframe_foreground:focus {
|
||||
outline: #ff7f00 dashed 2px;
|
||||
outline-offset: 1px;
|
||||
}
|
||||
.iframe_close_gadget {
|
||||
display: block;
|
||||
position: absolute;
|
||||
|
@ -1145,7 +1184,18 @@ input.toolbar.hidden::file-selector-button {
|
|||
right: calc(20% - 1.5rem);
|
||||
cursor: pointer;
|
||||
}
|
||||
.iframe_foreground:focus,
|
||||
.iframe_close_gadget:focus {
|
||||
outline: none;
|
||||
}
|
||||
.iframe_foreground:focus-visible,
|
||||
.iframe_close_gadget:focus-visible {
|
||||
outline: var(--chyrp-strong-orange) dashed 2px;
|
||||
outline-offset: 1px;
|
||||
}
|
||||
.iframe_close_gadget svg,
|
||||
.iframe_close_gadget img {
|
||||
fill: currentColor;
|
||||
width: 1.5rem;
|
||||
height: 1.5rem;
|
||||
}
|
||||
|
@ -1153,11 +1203,11 @@ input.toolbar.hidden::file-selector-button {
|
|||
background-size: 30px 30px;
|
||||
background-image: linear-gradient(
|
||||
-45deg,
|
||||
#efefef 25%,
|
||||
var(--chyrp-english-grey) 25%,
|
||||
transparent 25%,
|
||||
transparent 50%,
|
||||
#efefef 50%,
|
||||
#efefef 75%,
|
||||
var(--chyrp-english-grey) 50%,
|
||||
var(--chyrp-english-grey) 75%,
|
||||
transparent 75%,
|
||||
transparent
|
||||
) !important;
|
||||
|
@ -1231,12 +1281,6 @@ input.toolbar.hidden::file-selector-button {
|
|||
textarea {
|
||||
width: 100% !important;
|
||||
}
|
||||
input.text + a.help.emblem {
|
||||
float: right;
|
||||
position: relative;
|
||||
top: -2.25rem;
|
||||
left: -0.5rem;
|
||||
}
|
||||
#content table tbody tr td {
|
||||
padding: 1rem 0.5rem;
|
||||
}
|
||||
|
@ -1262,8 +1306,8 @@ input.toolbar.hidden::file-selector-button {
|
|||
margin: 0rem 0rem 1rem 0rem !important;
|
||||
}
|
||||
}
|
||||
button:not(.toolbar):has(img),
|
||||
a.button:not(.toolbar):has(img) {
|
||||
button:not(.toolbar):has(img, svg),
|
||||
a.button:not(.toolbar):has(img, svg) {
|
||||
padding-right: calc(16px + 1rem) !important;
|
||||
}
|
||||
div.more_options {
|
||||
|
@ -1320,61 +1364,61 @@ input.toolbar.hidden::file-selector-button {
|
|||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
color: #ffffff;
|
||||
background-color: #1f1f23;
|
||||
color: var(--chyrp-pure-white);
|
||||
background-color: var(--chyrp-inky-black);
|
||||
}
|
||||
#header {
|
||||
background-color: #656565;
|
||||
background-color: var(--chyrp-winter-grey);
|
||||
}
|
||||
#header #navigation li a:link,
|
||||
#header #navigation li a:visited {
|
||||
color: #ffffff;
|
||||
color: var(--chyrp-pure-white);
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
#header #navigation li.selected a:link,
|
||||
#header #navigation li.selected a:visited,
|
||||
#header #navigation li a:hover,
|
||||
#header #navigation li a:focus {
|
||||
background-color: #1f1f23;
|
||||
background-color: var(--chyrp-inky-black);
|
||||
}
|
||||
#sub_nav {
|
||||
border-bottom-color: #ffffff;
|
||||
border-bottom-color: var(--chyrp-pure-white);
|
||||
}
|
||||
#sub_nav li a {
|
||||
border-color: #ffffff;
|
||||
border-color: var(--chyrp-pure-white);
|
||||
}
|
||||
#sub_nav li.selected a:link,
|
||||
#sub_nav li.selected a:visited,
|
||||
#sub_nav li a:hover,
|
||||
#sub_nav li a:focus {
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
}
|
||||
#content {
|
||||
color: #1f1f23;
|
||||
background-color: #efefef;
|
||||
border-color: #ffffff;
|
||||
color: var(--chyrp-inky-black);
|
||||
background-color: var(--chyrp-english-grey);
|
||||
border-color: var(--chyrp-pure-white);
|
||||
}
|
||||
hr {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
aside {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
pre {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
}
|
||||
code {
|
||||
background-color: #dfdfdf;
|
||||
border-color: #afafaf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
#content ul.extend > li {
|
||||
background-color: #dfdfdf;
|
||||
border-color: #afafaf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
li.module div.controls,
|
||||
li.feather div.controls,
|
||||
li.theme div.controls {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
select,
|
||||
textarea,
|
||||
|
@ -1390,56 +1434,53 @@ input.toolbar.hidden::file-selector-button {
|
|||
input[type="range"],
|
||||
input[type="password"],
|
||||
input[type="file"] {
|
||||
background-color: #dfdfdf;
|
||||
border-color: #afafaf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
input:invalid {
|
||||
border-color: #ff7f00;
|
||||
border-color: var(--chyrp-strong-orange);
|
||||
}
|
||||
table tbody tr td {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
table tbody tr:nth-child(even) td {
|
||||
background-color: #dfdfdf;
|
||||
background-color: var(--chyrp-welsh-grey);
|
||||
}
|
||||
span.options_toolbar {
|
||||
background-color: transparent;
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
span.options_tray {
|
||||
background-color: transparent;
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
span.options_extra {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
*.tag {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
*.tag_added {
|
||||
border-color: #1e57ba;
|
||||
border-color: var(--chyrp-strong-blue);
|
||||
}
|
||||
table.interactive + div.controls {
|
||||
border-color: #afafaf;
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
div.confirmation {
|
||||
background-color: transparent;
|
||||
border-color: #afafaf;
|
||||
}
|
||||
.iframe_background {
|
||||
background-color: rgba(159, 159, 159, 0.75);
|
||||
border-color: var(--chyrp-scottish-grey);
|
||||
}
|
||||
.iframe_foreground {
|
||||
background-color: #efefef;
|
||||
background-color: var(--chyrp-english-grey);
|
||||
}
|
||||
.ajax_loading {
|
||||
background-image: linear-gradient(
|
||||
-45deg,
|
||||
#dfdfdf 25%,
|
||||
var(--chyrp-welsh-grey) 25%,
|
||||
transparent 25%,
|
||||
transparent 50%,
|
||||
#dfdfdf 50%,
|
||||
#dfdfdf 75%,
|
||||
var(--chyrp-welsh-grey) 50%,
|
||||
var(--chyrp-welsh-grey) 75%,
|
||||
transparent 75%,
|
||||
transparent
|
||||
) !important;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Setting: monospace_font */
|
||||
|
||||
textarea {
|
||||
font-family: "Intel One Mono", "Cousine webfont", monospace;
|
||||
font-family: "Cousine webfont", monospace;
|
||||
}
|
||||
|
|
|
@ -51,7 +51,8 @@
|
|||
$this->respondTo("filter_post", "filter_post");
|
||||
}
|
||||
|
||||
public function submit(): Post {
|
||||
public function submit(
|
||||
): Post {
|
||||
if (isset($_FILES['filename']) and upload_tester($_FILES['filename']))
|
||||
$filename = upload(
|
||||
$_FILES['filename'],
|
||||
|
@ -95,7 +96,9 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function update($post): Post|false {
|
||||
public function update(
|
||||
$post
|
||||
): Post|false {
|
||||
fallback($_POST['title'], "");
|
||||
fallback($_POST['description'], "");
|
||||
fallback($_POST['slug'], "");
|
||||
|
@ -132,22 +135,31 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function title($post): string {
|
||||
public function title(
|
||||
$post
|
||||
): string {
|
||||
return oneof(
|
||||
$post->title,
|
||||
$post->title_from_excerpt()
|
||||
);
|
||||
}
|
||||
|
||||
public function excerpt($post): string {
|
||||
public function excerpt(
|
||||
$post
|
||||
): string {
|
||||
return $post->description;
|
||||
}
|
||||
|
||||
public function feed_content($post): string {
|
||||
public function feed_content(
|
||||
$post
|
||||
): string {
|
||||
return $post->description;
|
||||
}
|
||||
|
||||
public function enclose_audio($post, $feed) {
|
||||
public function enclose_audio(
|
||||
$post,
|
||||
$feed
|
||||
) {
|
||||
if ($post->feather != "audio")
|
||||
return;
|
||||
|
||||
|
@ -173,14 +185,18 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function filter_post($post): void {
|
||||
public function filter_post(
|
||||
$post
|
||||
): void {
|
||||
if ($post->feather != "audio")
|
||||
return;
|
||||
|
||||
$post->audio_player = $this->audio_player($post);
|
||||
}
|
||||
|
||||
private function audio_player($post): string {
|
||||
private function audio_player(
|
||||
$post
|
||||
): string {
|
||||
$config = Config::current();
|
||||
$trigger = Trigger::current();
|
||||
|
||||
|
@ -212,7 +228,9 @@
|
|||
return $player;
|
||||
}
|
||||
|
||||
private function audio_type($filename): string {
|
||||
private function audio_type(
|
||||
$filename
|
||||
): string {
|
||||
$extension = strtolower(
|
||||
pathinfo($filename, PATHINFO_EXTENSION)
|
||||
);
|
||||
|
@ -237,7 +255,8 @@
|
|||
}
|
||||
}
|
||||
|
||||
private function audio_extensions(): array {
|
||||
private function audio_extensions(
|
||||
): array {
|
||||
return array("mp3", "m4a", "mp4", "oga", "ogg", "webm", "mka");
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/audio/audio.php:10
|
||||
|
@ -28,11 +28,11 @@ msgstr "Bildunterschriften"
|
|||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr "Sie haben kein Audio zum Hochladen ausgewählt."
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr "Ihr Webbrowser unterstützt das <code>Audioelement</code> nicht."
|
||||
|
||||
|
|
|
@ -16,11 +16,11 @@ msgstr ""
|
|||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr ""
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/audio/audio.php:10
|
||||
|
@ -29,11 +29,11 @@ msgstr "Légendes"
|
|||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr "Vous n'avez sélectionné aucun fichier audio à télécharger."
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr "Votre navigateur ne supporte pas cet élément <code>audio</audio>."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/audio/audio.php:10
|
||||
|
@ -29,11 +29,11 @@ msgstr "Didascalie"
|
|||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr "Non è stato selezionato alcun audio da caricare."
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr "Il browser web non supporta l'elemento <code>audio</code>."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/audio/audio.php:10
|
||||
|
@ -28,11 +28,11 @@ msgstr "Onderschriften"
|
|||
msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr "Je hebt geen audio geselecteerd om te uploaden."
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr "Je webbrowser ondersteunt het <code>audio</code> element niet."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/audio/audio.php:10
|
||||
|
@ -29,11 +29,11 @@ msgstr "字幕"
|
|||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: feathers/audio/audio.php:64
|
||||
#: feathers/audio/audio.php:65
|
||||
msgid "You did not select any audio to upload."
|
||||
msgstr "你灭有选择任何上传的音频文件。"
|
||||
|
||||
#: feathers/audio/audio.php:192
|
||||
#: feathers/audio/audio.php:208
|
||||
msgid "Your web browser does not support the <code>audio</code> element."
|
||||
msgstr "你的浏览器不支持 <code>audio</code> 元素。"
|
||||
|
||||
|
|
|
@ -36,7 +36,8 @@
|
|||
$this->respondTo("feed_item", "link_related");
|
||||
}
|
||||
|
||||
public function submit(): Post {
|
||||
public function submit(
|
||||
): Post {
|
||||
if (empty($_POST['source']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -75,7 +76,9 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function update($post): Post|false {
|
||||
public function update(
|
||||
$post
|
||||
): Post|false {
|
||||
if (empty($_POST['source']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -112,7 +115,9 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function title($post): string {
|
||||
public function title(
|
||||
$post
|
||||
): string {
|
||||
return oneof(
|
||||
$post->name,
|
||||
$post->title_from_excerpt(),
|
||||
|
@ -120,11 +125,15 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function excerpt($post): string {
|
||||
public function excerpt(
|
||||
$post
|
||||
): string {
|
||||
return $post->description;
|
||||
}
|
||||
|
||||
public function feed_content($post): string {
|
||||
public function feed_content(
|
||||
$post
|
||||
): string {
|
||||
$content = '<a rel="external" href="'.
|
||||
fix($post->source, true).'">'.
|
||||
oneof($post->name, $post->source).'</a>';
|
||||
|
@ -137,7 +146,10 @@
|
|||
return '<figure>'.$content.'</figure>';
|
||||
}
|
||||
|
||||
public function link_related($post, $feed): void {
|
||||
public function link_related(
|
||||
$post,
|
||||
$feed
|
||||
): void {
|
||||
if ($post->feather != "link")
|
||||
return;
|
||||
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/link/info.php:3
|
||||
|
@ -32,10 +32,10 @@ msgstr "URL"
|
|||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: feathers/link/link.php:43 feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44 feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr "URL darf nicht leer sein."
|
||||
|
||||
#: feathers/link/link.php:50 feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51 feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr "Ungültige URL."
|
||||
|
|
|
@ -20,13 +20,13 @@ msgstr ""
|
|||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/link/link.php:43
|
||||
#: feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44
|
||||
#: feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr ""
|
||||
|
||||
#: feathers/link/link.php:50
|
||||
#: feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51
|
||||
#: feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/link/info.php:3
|
||||
|
@ -33,10 +33,10 @@ msgstr "URL"
|
|||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: feathers/link/link.php:43 feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44 feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr "L'URL ne peut pas être vide."
|
||||
|
||||
#: feathers/link/link.php:50 feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51 feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr "URL invalide."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/link/info.php:3
|
||||
|
@ -33,10 +33,10 @@ msgstr "URL"
|
|||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: feathers/link/link.php:43 feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44 feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr "L'URL non può essere vuoto."
|
||||
|
||||
#: feathers/link/link.php:50 feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51 feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr "URL non valido."
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/link/info.php:3
|
||||
|
@ -32,10 +32,10 @@ msgstr "URL"
|
|||
msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: feathers/link/link.php:43 feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44 feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr "URL kan niet leeg zijn."
|
||||
|
||||
#: feathers/link/link.php:50 feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51 feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr "Ongeldige URL."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/link/info.php:3
|
||||
|
@ -33,10 +33,10 @@ msgstr "URL"
|
|||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: feathers/link/link.php:43 feathers/link/link.php:82
|
||||
#: feathers/link/link.php:44 feathers/link/link.php:85
|
||||
msgid "URL can't be empty."
|
||||
msgstr "URL不能为空。"
|
||||
|
||||
#: feathers/link/link.php:50 feathers/link/link.php:89
|
||||
#: feathers/link/link.php:51 feathers/link/link.php:92
|
||||
msgid "Invalid URL."
|
||||
msgstr "无效的URL。"
|
||||
|
|
Binary file not shown.
|
@ -9,11 +9,11 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:156
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr "Alternativer Text"
|
||||
|
||||
|
@ -55,10 +55,10 @@ msgstr "Titel"
|
|||
msgid "Caption"
|
||||
msgstr "Bildunterschrift"
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr "Sie haben kein Foto zum Hochladen ausgewählt."
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6
|
||||
#: feathers/photo/photo.php:156
|
||||
#: feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr ""
|
||||
|
||||
|
@ -36,11 +36,11 @@ msgstr ""
|
|||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr ""
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:156
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr "Texte alternatif"
|
||||
|
||||
|
@ -55,10 +55,10 @@ msgstr "Titre"
|
|||
msgid "Caption"
|
||||
msgstr "Légende"
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr "Vous n'avez pas sélectionné de photo à télécharger."
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:156
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr "Testo Alternative"
|
||||
|
||||
|
@ -55,10 +55,10 @@ msgstr "Titolo"
|
|||
msgid "Caption"
|
||||
msgstr "Didascalia"
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr "Non é stata selezionata alcuna foto da caricare."
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr "Sorgente"
|
||||
|
|
Binary file not shown.
|
@ -9,11 +9,11 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:156
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr "Alternatieve tekst"
|
||||
|
||||
|
@ -54,10 +54,10 @@ msgstr "Titel"
|
|||
msgid "Caption"
|
||||
msgstr "Toelichting"
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr "Je hebt geen afbeelding geslecteerd om te uploaden."
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
|
Binary file not shown.
|
@ -10,11 +10,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:3
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:156
|
||||
#: feathers/photo/admin/help/photo_alt_text.twig:6 feathers/photo/photo.php:167
|
||||
msgid "Alternative Text"
|
||||
msgstr "替代文本"
|
||||
|
||||
|
@ -53,10 +53,10 @@ msgstr "标题"
|
|||
msgid "Caption"
|
||||
msgstr "标题"
|
||||
|
||||
#: feathers/photo/photo.php:54
|
||||
#: feathers/photo/photo.php:55
|
||||
msgid "You did not select a photo to upload."
|
||||
msgstr "您没有选择上传的照片。"
|
||||
|
||||
#: feathers/photo/photo.php:164
|
||||
#: feathers/photo/photo.php:175
|
||||
msgid "Source"
|
||||
msgstr "来源"
|
||||
|
|
|
@ -41,7 +41,8 @@
|
|||
$this->respondTo("post_options", "add_option");
|
||||
}
|
||||
|
||||
public function submit(): Post {
|
||||
public function submit(
|
||||
): Post {
|
||||
if (isset($_FILES['filename']) and upload_tester($_FILES['filename']))
|
||||
$filename = upload(
|
||||
$_FILES['filename'],
|
||||
|
@ -115,14 +116,18 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function title($post): string {
|
||||
public function title(
|
||||
$post
|
||||
): string {
|
||||
return oneof(
|
||||
$post->title,
|
||||
$post->title_from_excerpt()
|
||||
);
|
||||
}
|
||||
|
||||
public function excerpt($post): string {
|
||||
public function excerpt(
|
||||
$post
|
||||
): string {
|
||||
return $post->caption;
|
||||
}
|
||||
|
||||
|
@ -140,14 +145,20 @@
|
|||
return '<figure>'.$content.'</figure>';
|
||||
}
|
||||
|
||||
public function filter_post($post): void {
|
||||
public function filter_post(
|
||||
$post
|
||||
): void {
|
||||
if ($post->feather != "photo")
|
||||
return;
|
||||
|
||||
$post->image = $post->filename;
|
||||
}
|
||||
|
||||
public function add_option($options, $post = null, $feather = null): array {
|
||||
public function add_option(
|
||||
$options,
|
||||
$post = null,
|
||||
$feather = null
|
||||
): array {
|
||||
if ($feather != "photo")
|
||||
return $options;
|
||||
|
||||
|
@ -170,7 +181,8 @@
|
|||
return $options;
|
||||
}
|
||||
|
||||
private function image_extensions(): array {
|
||||
private function image_extensions(
|
||||
): array {
|
||||
return array("jpg", "jpeg", "png", "gif", "webp", "avif");
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/quote/info.php:3 feathers/quote/quote.php:8
|
||||
|
@ -24,6 +24,6 @@ msgstr "Stelle Zitate ein und gebe Quellen an."
|
|||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
||||
#: feathers/quote/quote.php:35 feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36 feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr "Das Zitat kann nicht leer sein."
|
||||
|
|
|
@ -13,8 +13,8 @@ msgstr ""
|
|||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/quote/quote.php:35
|
||||
#: feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36
|
||||
#: feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/quote/info.php:3 feathers/quote/quote.php:8
|
||||
|
@ -25,6 +25,6 @@ msgstr "Poster une citation et donner ses sources."
|
|||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#: feathers/quote/quote.php:35 feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36 feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr "La citation ne peut pas être vide."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/quote/info.php:3 feathers/quote/quote.php:8
|
||||
|
@ -25,6 +25,6 @@ msgstr "Pubblicare una citazione e citare fonti."
|
|||
msgid "Source"
|
||||
msgstr "Sorgente"
|
||||
|
||||
#: feathers/quote/quote.php:35 feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36 feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr "La citazione non può essere vuota."
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/quote/info.php:3 feathers/quote/quote.php:8
|
||||
|
@ -24,6 +24,6 @@ msgstr "Blogpost quotes en citeer-bronnen."
|
|||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#: feathers/quote/quote.php:35 feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36 feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr "Quote kan niet leeg zijn."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/quote/info.php:3 feathers/quote/quote.php:8
|
||||
|
@ -25,6 +25,6 @@ msgstr "发表引文和引用来源。"
|
|||
msgid "Source"
|
||||
msgstr "来源"
|
||||
|
||||
#: feathers/quote/quote.php:35 feathers/quote/quote.php:64
|
||||
#: feathers/quote/quote.php:36 feathers/quote/quote.php:67
|
||||
msgid "Quote can't be empty."
|
||||
msgstr "Quote 不能为空。"
|
||||
|
|
|
@ -28,7 +28,8 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function submit(): Post {
|
||||
public function submit(
|
||||
): Post {
|
||||
if (empty($_POST['quote']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -57,7 +58,9 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function update($post): Post|false {
|
||||
public function update(
|
||||
$post
|
||||
): Post|false {
|
||||
if (empty($_POST['quote']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -84,15 +87,21 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function title($post): string {
|
||||
public function title(
|
||||
$post
|
||||
): string {
|
||||
return $post->title_from_excerpt();
|
||||
}
|
||||
|
||||
public function excerpt($post): string {
|
||||
public function excerpt(
|
||||
$post
|
||||
): string {
|
||||
return $post->quote;
|
||||
}
|
||||
|
||||
public function feed_content($post): string {
|
||||
public function feed_content(
|
||||
$post
|
||||
): string {
|
||||
$content = '<blockquote>'.
|
||||
$post->quote.
|
||||
'</blockquote>';
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/text/info.php:3
|
||||
|
@ -28,6 +28,6 @@ msgstr "Titel"
|
|||
msgid "Body"
|
||||
msgstr "Body"
|
||||
|
||||
#: feathers/text/text.php:34 feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35 feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr "Body darf nicht leer sein."
|
||||
|
|
|
@ -16,8 +16,8 @@ msgstr ""
|
|||
msgid "Body"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/text/text.php:34
|
||||
#: feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35
|
||||
#: feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/text/info.php:3
|
||||
|
@ -29,6 +29,6 @@ msgstr "Titre"
|
|||
msgid "Body"
|
||||
msgstr "Corps"
|
||||
|
||||
#: feathers/text/text.php:34 feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35 feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr "Le corps ne peut pas être vide."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/text/info.php:3
|
||||
|
@ -29,6 +29,6 @@ msgstr "Titolo"
|
|||
msgid "Body"
|
||||
msgstr "Contenuto di testo"
|
||||
|
||||
#: feathers/text/text.php:34 feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35 feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr "Il contenuto di testo non può essere vuoto."
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/text/info.php:3
|
||||
|
@ -28,6 +28,6 @@ msgstr "Titel"
|
|||
msgid "Body"
|
||||
msgstr "Body"
|
||||
|
||||
#: feathers/text/text.php:34 feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35 feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr "Body kan niet leeg zijn."
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/text/info.php:3
|
||||
|
@ -29,6 +29,6 @@ msgstr "标题"
|
|||
msgid "Body"
|
||||
msgstr "正文"
|
||||
|
||||
#: feathers/text/text.php:34 feathers/text/text.php:63
|
||||
#: feathers/text/text.php:35 feathers/text/text.php:66
|
||||
msgid "Body can't be blank."
|
||||
msgstr "正文不能为空。"
|
||||
|
|
|
@ -27,7 +27,8 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function submit(): Post {
|
||||
public function submit(
|
||||
): Post {
|
||||
if (empty($_POST['body']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -56,7 +57,9 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function update($post): Post|false {
|
||||
public function update(
|
||||
$post
|
||||
): Post|false {
|
||||
if (empty($_POST['body']))
|
||||
error(
|
||||
__("Error"),
|
||||
|
@ -83,18 +86,24 @@
|
|||
);
|
||||
}
|
||||
|
||||
public function title($post): string {
|
||||
public function title(
|
||||
$post
|
||||
): string {
|
||||
return oneof(
|
||||
$post->title,
|
||||
$post->title_from_excerpt()
|
||||
);
|
||||
}
|
||||
|
||||
public function excerpt($post): string {
|
||||
public function excerpt(
|
||||
$post
|
||||
): string {
|
||||
return $post->body;
|
||||
}
|
||||
|
||||
public function feed_content($post): string {
|
||||
public function feed_content(
|
||||
$post
|
||||
): string {
|
||||
return $post->body;
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/uploader/admin/help/uploader_source.twig:3
|
||||
|
@ -41,10 +41,10 @@ msgstr "Dateien"
|
|||
msgid "Caption"
|
||||
msgstr "Unterschrift"
|
||||
|
||||
#: feathers/uploader/uploader.php:77
|
||||
#: feathers/uploader/uploader.php:82
|
||||
msgid "You did not select any files to upload."
|
||||
msgstr "Sie haben keine Dateien zum hochladen selektiert."
|
||||
|
||||
#: feathers/uploader/uploader.php:216
|
||||
#: feathers/uploader/uploader.php:240
|
||||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
|
|
@ -29,11 +29,11 @@ msgstr ""
|
|||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: feathers/uploader/uploader.php:77
|
||||
#: feathers/uploader/uploader.php:82
|
||||
msgid "You did not select any files to upload."
|
||||
msgstr ""
|
||||
|
||||
#: feathers/uploader/uploader.php:216
|
||||
#: feathers/uploader/uploader.php:240
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/uploader/admin/help/uploader_source.twig:3
|
||||
|
@ -42,10 +42,10 @@ msgstr "Fichiers"
|
|||
msgid "Caption"
|
||||
msgstr "Légende"
|
||||
|
||||
#: feathers/uploader/uploader.php:77
|
||||
#: feathers/uploader/uploader.php:82
|
||||
msgid "You did not select any files to upload."
|
||||
msgstr "Vous n'avez pas sélectionné de fichier à télécharger."
|
||||
|
||||
#: feathers/uploader/uploader.php:216
|
||||
#: feathers/uploader/uploader.php:240
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/uploader/admin/help/uploader_source.twig:3
|
||||
|
@ -42,10 +42,10 @@ msgstr "File"
|
|||
msgid "Caption"
|
||||
msgstr "Didascalia"
|
||||
|
||||
#: feathers/uploader/uploader.php:77
|
||||
#: feathers/uploader/uploader.php:82
|
||||
msgid "You did not select any files to upload."
|
||||
msgstr "Non è stato selezionato alcun file da caricare."
|
||||
|
||||
#: feathers/uploader/uploader.php:216
|
||||
#: feathers/uploader/uploader.php:240
|
||||
msgid "Source"
|
||||
msgstr "Sorgente"
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#. This file is distributed under the same license as the Chyrp Lite package.
|
||||
#: feathers/uploader/admin/help/uploader_source.twig:3
|
||||
|
@ -41,10 +41,10 @@ msgstr "Bestanden"
|
|||
msgid "Caption"
|
||||
msgstr "Toelichting"
|
||||
|
||||
#: feathers/uploader/uploader.php:77
|
||||
#: feathers/uploader/uploader.php:82
|
||||
msgid "You did not select any files to upload."
|
||||
msgstr "Je hebt geen bestanden geselecteerd om te uploaden."
|
||||
|
||||
#: feathers/uploader/uploader.php:216
|
||||
#: feathers/uploader/uploader.php:240
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue