Merge branch 'flatpressblog:master' into upstream/issue197
This commit is contained in:
commit
fd0d631259
@ -9,17 +9,21 @@
|
|||||||
- [README](https://github.com/flatpressblog/flatpress/blob/master/README.md): added "help and support" section
|
- [README](https://github.com/flatpressblog/flatpress/blob/master/README.md): added "help and support" section
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
|
### Additions
|
||||||
- PhotoSwipe plugin added: Displays images and galleries with [PhotoSwipe](https://photoswipe.com/) ([#109](https://github.com/flatpressblog/flatpress/issues/109))
|
- PhotoSwipe plugin added: Displays images and galleries with [PhotoSwipe](https://photoswipe.com/) ([#109](https://github.com/flatpressblog/flatpress/issues/109))
|
||||||
- Gallery captions plugin added: Manages image captions for gallery images ([#108](https://github.com/flatpressblog/flatpress/issues/108))
|
- Gallery captions plugin added: Manages image captions for gallery images ([#108](https://github.com/flatpressblog/flatpress/issues/108))
|
||||||
- SEO Meta Tag Info plugin added: Manages SEO meta tags ([#145](https://github.com/flatpressblog/flatpress/issues/145))
|
- SEO Meta Tag Info plugin added: Manages SEO meta tags ([#145](https://github.com/flatpressblog/flatpress/issues/145))
|
||||||
- FlatPress Protect plugin added: Adds HTTP headers for hardening your blog ([#146](https://github.com/flatpressblog/flatpress/issues/146))
|
- FlatPress Protect plugin added: Adds HTTP headers for hardening your blog ([#146](https://github.com/flatpressblog/flatpress/issues/146))
|
||||||
|
### Changes
|
||||||
- jQuery plugin: Updated jQuery (3.5.1 => 3.6.1) and jQueryUI (1.12.1 => 1.13.2)
|
- jQuery plugin: Updated jQuery (3.5.1 => 3.6.1) and jQueryUI (1.12.1 => 1.13.2)
|
||||||
- Media Manager plugin shows 50 items per page, not 10
|
- Media Manager plugin shows 50 items per page, not 10
|
||||||
|
### Bugfixes
|
||||||
- LastCommentsAdmin plugin will not even attempt to delete or rebuild LastComments caches if LastComments plugin is not available ([#43](https://github.com/flatpressblog/flatpress/issues/43))
|
- LastCommentsAdmin plugin will not even attempt to delete or rebuild LastComments caches if LastComments plugin is not available ([#43](https://github.com/flatpressblog/flatpress/issues/43))
|
||||||
- Comment Center plugin: Fixed errors on the config page ([#90](https://github.com/flatpressblog/flatpress/issues/90))
|
- Comment Center plugin: Fixed errors on the config page ([#90](https://github.com/flatpressblog/flatpress/issues/90))
|
||||||
- Comment Center plugin: Fixed error on sending mails with umlaut subjects ([#211](https://github.com/flatpressblog/flatpress/issues/211))
|
- Comment Center plugin: Fixed error on sending mails with umlaut subjects ([#211](https://github.com/flatpressblog/flatpress/issues/211))
|
||||||
- Akismet plugin: Fixed PHP warnings ([#83](https://github.com/flatpressblog/flatpress/issues/83))
|
- Akismet plugin: Fixed PHP warnings ([#83](https://github.com/flatpressblog/flatpress/issues/83))
|
||||||
- BBCode plugin: Allows local video files ("attachs/video.mp4") and outputs valid HTML ([#192](https://github.com/flatpressblog/flatpress/issues/192))
|
- BBCode plugin: Allows local video files ("attachs/video.mp4") and outputs valid HTML ([#192](https://github.com/flatpressblog/flatpress/issues/192))
|
||||||
|
- BBCode plugin: Initial settings after fresh install shown correctly ([#102](https://github.com/flatpressblog/flatpress/issues/102))
|
||||||
|
|
||||||
## Themes
|
## Themes
|
||||||
- Leggero
|
- Leggero
|
||||||
|
@ -28,7 +28,13 @@ $fp_config = array(
|
|||||||
'pages' => array(
|
'pages' => array(
|
||||||
'menu',
|
'menu',
|
||||||
'about'
|
'about'
|
||||||
)
|
),
|
||||||
)
|
),
|
||||||
)
|
'bbcode' => array (
|
||||||
|
'escape-html' => true,
|
||||||
|
'comments' => false,
|
||||||
|
'editor' => true,
|
||||||
|
'url-maxlen' => 40,
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
@ -4,17 +4,17 @@ $lang ['admin'] ['head'] = 'Pannello di controllo';
|
|||||||
$lang ['admin'] ['panels'] = array(
|
$lang ['admin'] ['panels'] = array(
|
||||||
'main' => 'Principale',
|
'main' => 'Principale',
|
||||||
'config' => 'Opzioni',
|
'config' => 'Opzioni',
|
||||||
// 'users' => 'Users',
|
// 'users' => 'Utenti',
|
||||||
'entry' => 'Articoli',
|
'entry' => 'Articoli',
|
||||||
'static' => 'Pagine statiche',
|
'static' => 'Pagine statiche',
|
||||||
'uploader' => 'Caricatore',
|
'uploader' => 'Caricatore',
|
||||||
'widgets' => 'Widget',
|
'widgets' => 'Widget',
|
||||||
// 'add' => 'Add',
|
// 'add' => 'Aggiungi',
|
||||||
// 'edit' => 'Edit/Delete',
|
// 'edit' => 'Modifica/Elimina',
|
||||||
'maintain' => 'Manutenzione',
|
'maintain' => 'Manutenzione',
|
||||||
'plugin' => 'Plugin',
|
'plugin' => 'Plugin',
|
||||||
'themes' => 'Temi'
|
'themes' => 'Temi'
|
||||||
// 'updates' => 'Updates',
|
// 'updates' => 'Aggiornamenti',
|
||||||
);
|
);
|
||||||
|
|
||||||
$lang ['admin'] ['general'] = array(
|
$lang ['admin'] ['general'] = array(
|
||||||
@ -23,7 +23,7 @@ $lang ['admin'] ['general'] = array(
|
|||||||
'title' => 'Titolo', # for entry/posts/static titles
|
'title' => 'Titolo', # for entry/posts/static titles
|
||||||
'comments' => '#Commenti',
|
'comments' => '#Commenti',
|
||||||
'author' => 'Autore',
|
'author' => 'Autore',
|
||||||
'actdel' => 'Eliimina',
|
'actdel' => 'Elimina',
|
||||||
'actedit' => 'Modifica',
|
'actedit' => 'Modifica',
|
||||||
'actenable' => 'Abilita',
|
'actenable' => 'Abilita',
|
||||||
'actdisable' => 'Disabilita',
|
'actdisable' => 'Disabilita',
|
||||||
|
@ -61,7 +61,7 @@ $lang ['staticauthor'] = array(
|
|||||||
|
|
||||||
$lang ['entryauthor'] = array(
|
$lang ['entryauthor'] = array(
|
||||||
// "Posted by" in entry pages
|
// "Posted by" in entry pages
|
||||||
'posted_by' => 'Postato da',
|
'posted_by' => 'Pubblicato da',
|
||||||
'at' => 'a'
|
'at' => 'a'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
0
fp-interface/sharedtpls/contact.tpl
Executable file → Normal file
0
fp-interface/sharedtpls/contact.tpl
Executable file → Normal file
@ -6,7 +6,7 @@ $lang['plugin']['accessibleantispam'] = array(
|
|||||||
'dobbiamo chiederti di provare che sei una persona vera. Quanto fa ',
|
'dobbiamo chiederti di provare che sei una persona vera. Quanto fa ',
|
||||||
|
|
||||||
'sum' => '%s più %s ?',
|
'sum' => '%s più %s ?',
|
||||||
'sub' => '%2$s meno %1$s ?',
|
'sub' => '%1$s meno %2$s ?',
|
||||||
'prod' => '%s per %s ?',
|
'prod' => '%s per %s ?',
|
||||||
|
|
||||||
'error' => 'Spiacenti, hai sbagliato. Riprova.'
|
'error' => 'Spiacenti, hai sbagliato. Riprova.'
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'Kategorie'
|
'subject' => 'Kategorie',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'v'
|
'in' => 'v'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang ['plugin'] ['categories'] = array(
|
$lang ['plugin'] ['categories'] = array(
|
||||||
'subject' => 'Kategorien',
|
'subject' => 'Kategorien',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'in'
|
'in' => 'in'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang ['plugin'] ['categories'] = array(
|
$lang ['plugin'] ['categories'] = array(
|
||||||
'subject' => 'Κατηγορίες',
|
'subject' => 'Κατηγορίες',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'στο'
|
'in' => 'στο'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang ['plugin'] ['categories'] = array(
|
$lang ['plugin'] ['categories'] = array(
|
||||||
'subject' => 'Categories',
|
'subject' => 'Categories',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'in'
|
'in' => 'in'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'Categorías',
|
'subject' => 'Categorías',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'en'
|
'in' => 'en'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'Catégories',
|
'subject' => 'Catégories',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'dans'
|
'in' => 'dans'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'Categorie'
|
'subject' => 'Categorie',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'in'
|
'in' => 'in'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'カテゴリ',
|
'subject' => 'カテゴリ',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'in'
|
'in' => 'in'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$lang ['plugin'] ['categories'] = array(
|
$lang ['plugin'] ['categories'] = array(
|
||||||
'subject' => 'Categorie'
|
'subject' => 'Categorie',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'in'
|
'in' => 'in'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
//Terminado 15 de fevereiro de 2020.
|
//Terminado 15 de fevereiro de 2020.
|
||||||
$lang['plugin']['categories'] = array(
|
$lang['plugin']['categories'] = array(
|
||||||
'subject' => 'Categorias'
|
'subject' => 'Categorias',
|
||||||
// Posted by Frank "in" Categorie FlatPress
|
|
||||||
'in' => 'na'
|
'in' => 'na'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -23,10 +23,10 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
|
|||||||
'entries' => 'Articoli',
|
'entries' => 'Articoli',
|
||||||
'categories' => 'Categorie',
|
'categories' => 'Categorie',
|
||||||
'nopolicies' => 'Non c\'è nessuna regola.',
|
'nopolicies' => 'Non c\'è nessuna regola.',
|
||||||
'all_entries' => 'Tutti i post',
|
'all_entries' => 'Tutti gli articoli',
|
||||||
'fol_entries' => 'La regola è applicata ai seguenti post:',
|
'fol_entries' => 'La regola è applicata ai seguenti articoli:',
|
||||||
'fol_cats' => 'La regola è applicata ai post nelle seguenti categorie:',
|
'fol_cats' => 'La regola è applicata ai post nelle seguenti categorie:',
|
||||||
'older' => 'La regola è applicata ai post più vecchi di %d giorno/i.',
|
'older' => 'La regola è applicata agli articoli più vecchi di %d giorno/i.',
|
||||||
'allow' => 'Permetti di commentare',
|
'allow' => 'Permetti di commentare',
|
||||||
'block' => 'Blocca i commenti',
|
'block' => 'Blocca i commenti',
|
||||||
'approvation' => 'I commenti devono essere approvati',
|
'approvation' => 'I commenti devono essere approvati',
|
||||||
@ -105,7 +105,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
|
|||||||
'delc_descm' => 'Stai per eliminare questi commenti: ',
|
'delc_descm' => 'Stai per eliminare questi commenti: ',
|
||||||
|
|
||||||
// Manage comments page
|
// Manage comments page
|
||||||
'man_searcht' => 'Cerca un post',
|
'man_searcht' => 'Cerca un articolo',
|
||||||
'man_searchd' => 'Inserisci l\'id dell\'articolo di cui vuoi gestire i commenti.',
|
'man_searchd' => 'Inserisci l\'id dell\'articolo di cui vuoi gestire i commenti.',
|
||||||
'man_search' => 'Cerca',
|
'man_search' => 'Cerca',
|
||||||
'man_commfor' => 'Commenti di %s',
|
'man_commfor' => 'Commenti di %s',
|
||||||
@ -136,7 +136,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
|
|||||||
-2 => 'Si è verificato un errore durante il salvataggio della regola (forse le tue opzioni sono scorrette).',
|
-2 => 'Si è verificato un errore durante il salvataggio della regola (forse le tue opzioni sono scorrette).',
|
||||||
|
|
||||||
3 => 'Regola spostata.',
|
3 => 'Regola spostata.',
|
||||||
-3 => 'Si è verificato un errore nello spostamento della regola (o non la si può muovere).',
|
-3 => 'Si è verificato un errore nello spostamento della regola (o non la si può spostare).',
|
||||||
|
|
||||||
4 => 'Regole rimosse.',
|
4 => 'Regole rimosse.',
|
||||||
-4 => 'Si è verificato un errore durante la rimozione delle regole (o non hai selezionato nessuna regola).',
|
-4 => 'Si è verificato un errore durante la rimozione delle regole (o non hai selezionato nessuna regola).',
|
||||||
|
@ -19,7 +19,7 @@ $lang ['plugin'] ['seometataginfo'] = array(
|
|||||||
'blog_page' => 'Blog',
|
'blog_page' => 'Blog',
|
||||||
'archive' => 'Archivio',
|
'archive' => 'Archivio',
|
||||||
'category' => 'Categoria',
|
'category' => 'Categoria',
|
||||||
'tag' => 'Tag',
|
'tag' => 'Etichetta',
|
||||||
'contact' => 'Contatto',
|
'contact' => 'Contatto',
|
||||||
'comments' => 'Commenti',
|
'comments' => 'Commenti',
|
||||||
'pagenum' => 'Pagina #'
|
'pagenum' => 'Pagina #'
|
||||||
|
@ -12,7 +12,8 @@ function check_step() {
|
|||||||
'subject' => $vl ['entry'] ['subject'],
|
'subject' => $vl ['entry'] ['subject'],
|
||||||
'content' => $vl ['entry'] ['content'],
|
'content' => $vl ['entry'] ['content'],
|
||||||
'date' => time(),
|
'date' => time(),
|
||||||
'version' => system_ver()
|
'version' => system_ver(),
|
||||||
|
'author' => 'FlatPress'
|
||||||
));
|
));
|
||||||
|
|
||||||
if (!static_exists('menu')) {
|
if (!static_exists('menu')) {
|
||||||
@ -20,7 +21,8 @@ function check_step() {
|
|||||||
'subject' => $vl ['menu'] ['subject'],
|
'subject' => $vl ['menu'] ['subject'],
|
||||||
'content' => $vl ['menu'] ['content'],
|
'content' => $vl ['menu'] ['content'],
|
||||||
'date' => time(),
|
'date' => time(),
|
||||||
'version' => system_ver()
|
'version' => system_ver(),
|
||||||
|
'author' => 'FlatPress'
|
||||||
), 'menu');
|
), 'menu');
|
||||||
}
|
}
|
||||||
if (!static_exists('about')) {
|
if (!static_exists('about')) {
|
||||||
@ -28,7 +30,8 @@ function check_step() {
|
|||||||
'subject' => $vl ['about'] ['subject'],
|
'subject' => $vl ['about'] ['subject'],
|
||||||
'content' => $vl ['about'] ['content'],
|
'content' => $vl ['about'] ['content'],
|
||||||
'date' => time(),
|
'date' => time(),
|
||||||
'version' => system_ver()
|
'version' => system_ver(),
|
||||||
|
'author' => 'FlatPress'
|
||||||
), 'about');
|
), 'about');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user