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
|
||||
|
||||
## Plugins
|
||||
### Additions
|
||||
- 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))
|
||||
- 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))
|
||||
### Changes
|
||||
- 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
|
||||
### 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))
|
||||
- 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))
|
||||
- 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: Initial settings after fresh install shown correctly ([#102](https://github.com/flatpressblog/flatpress/issues/102))
|
||||
|
||||
## Themes
|
||||
- Leggero
|
||||
|
@ -28,7 +28,13 @@ $fp_config = array(
|
||||
'pages' => array(
|
||||
'menu',
|
||||
'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(
|
||||
'main' => 'Principale',
|
||||
'config' => 'Opzioni',
|
||||
// 'users' => 'Users',
|
||||
// 'users' => 'Utenti',
|
||||
'entry' => 'Articoli',
|
||||
'static' => 'Pagine statiche',
|
||||
'uploader' => 'Caricatore',
|
||||
'widgets' => 'Widget',
|
||||
// 'add' => 'Add',
|
||||
// 'edit' => 'Edit/Delete',
|
||||
// 'add' => 'Aggiungi',
|
||||
// 'edit' => 'Modifica/Elimina',
|
||||
'maintain' => 'Manutenzione',
|
||||
'plugin' => 'Plugin',
|
||||
'themes' => 'Temi'
|
||||
// 'updates' => 'Updates',
|
||||
// 'updates' => 'Aggiornamenti',
|
||||
);
|
||||
|
||||
$lang ['admin'] ['general'] = array(
|
||||
@ -23,7 +23,7 @@ $lang ['admin'] ['general'] = array(
|
||||
'title' => 'Titolo', # for entry/posts/static titles
|
||||
'comments' => '#Commenti',
|
||||
'author' => 'Autore',
|
||||
'actdel' => 'Eliimina',
|
||||
'actdel' => 'Elimina',
|
||||
'actedit' => 'Modifica',
|
||||
'actenable' => 'Abilita',
|
||||
'actdisable' => 'Disabilita',
|
||||
|
@ -61,7 +61,7 @@ $lang ['staticauthor'] = array(
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Postato da',
|
||||
'posted_by' => 'Pubblicato da',
|
||||
'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 ',
|
||||
|
||||
'sum' => '%s più %s ?',
|
||||
'sub' => '%2$s meno %1$s ?',
|
||||
'sub' => '%1$s meno %2$s ?',
|
||||
'prod' => '%s per %s ?',
|
||||
|
||||
'error' => 'Spiacenti, hai sbagliato. Riprova.'
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'Kategorie'
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'subject' => 'Kategorie',
|
||||
'in' => 'v'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
'subject' => 'Kategorien',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
'subject' => 'Κατηγορίες',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'στο'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
'subject' => 'Categories',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'Categorías',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'en'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'Catégories',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'dans'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'Categorie'
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'subject' => 'Categorie',
|
||||
'in' => 'in'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'カテゴリ',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
?>
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
'subject' => 'Categorie'
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'subject' => 'Categorie',
|
||||
'in' => 'in'
|
||||
);
|
||||
?>
|
||||
|
@ -1,8 +1,7 @@
|
||||
<?php
|
||||
//Terminado 15 de fevereiro de 2020.
|
||||
$lang['plugin']['categories'] = array(
|
||||
'subject' => 'Categorias'
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'subject' => 'Categorias',
|
||||
'in' => 'na'
|
||||
);
|
||||
?>
|
||||
|
@ -23,10 +23,10 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
|
||||
'entries' => 'Articoli',
|
||||
'categories' => 'Categorie',
|
||||
'nopolicies' => 'Non c\'è nessuna regola.',
|
||||
'all_entries' => 'Tutti i post',
|
||||
'fol_entries' => 'La regola è applicata ai seguenti post:',
|
||||
'all_entries' => 'Tutti gli articoli',
|
||||
'fol_entries' => 'La regola è applicata ai seguenti articoli:',
|
||||
'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',
|
||||
'block' => 'Blocca i commenti',
|
||||
'approvation' => 'I commenti devono essere approvati',
|
||||
@ -105,7 +105,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
|
||||
'delc_descm' => 'Stai per eliminare questi commenti: ',
|
||||
|
||||
// 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_search' => 'Cerca',
|
||||
'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).',
|
||||
|
||||
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 => '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',
|
||||
'archive' => 'Archivio',
|
||||
'category' => 'Categoria',
|
||||
'tag' => 'Tag',
|
||||
'tag' => 'Etichetta',
|
||||
'contact' => 'Contatto',
|
||||
'comments' => 'Commenti',
|
||||
'pagenum' => 'Pagina #'
|
||||
|
@ -12,7 +12,8 @@ function check_step() {
|
||||
'subject' => $vl ['entry'] ['subject'],
|
||||
'content' => $vl ['entry'] ['content'],
|
||||
'date' => time(),
|
||||
'version' => system_ver()
|
||||
'version' => system_ver(),
|
||||
'author' => 'FlatPress'
|
||||
));
|
||||
|
||||
if (!static_exists('menu')) {
|
||||
@ -20,7 +21,8 @@ function check_step() {
|
||||
'subject' => $vl ['menu'] ['subject'],
|
||||
'content' => $vl ['menu'] ['content'],
|
||||
'date' => time(),
|
||||
'version' => system_ver()
|
||||
'version' => system_ver(),
|
||||
'author' => 'FlatPress'
|
||||
), 'menu');
|
||||
}
|
||||
if (!static_exists('about')) {
|
||||
@ -28,7 +30,8 @@ function check_step() {
|
||||
'subject' => $vl ['about'] ['subject'],
|
||||
'content' => $vl ['about'] ['content'],
|
||||
'date' => time(),
|
||||
'version' => system_ver()
|
||||
'version' => system_ver(),
|
||||
'author' => 'FlatPress'
|
||||
), 'about');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user