Multilingual support for "Posted by"
Closes Issue #143 Preview revised That's funny. There is a template for the preview of static pages for 13 years, and was not used.
This commit is contained in:
parent
b892a86f18
commit
fba5adc876
@ -6,7 +6,7 @@
|
||||
{static_block}
|
||||
{if isset($preview)}
|
||||
<fieldset id="post-preview"><legend>{$panelstrings.preview}</legend>
|
||||
{include file="preview.tpl"}
|
||||
{include file="previewstatic.tpl"}
|
||||
</fieldset>
|
||||
{/if}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Další strana »',
|
||||
'prevpage' => '« Předcházející',
|
||||
'entry' => 'Příspěvek',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Přidej komentář',
|
||||
'comment' => '1 komentář',
|
||||
'comments' => 'komentáře',
|
||||
|
||||
'comments' => 'komentáře'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Hledat',
|
||||
'fset1' => 'Vložit kritéria hledání',
|
||||
'keywords' => 'Výraz',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Full-text',
|
||||
|
||||
'fset2' => 'Datum',
|
||||
'datedescr' => 'Můžete si přiřadit Vaše hledání ke konkrétnímu datu. Můžete zvolit rok, rok a měsíc, nebo přesné datum. '.
|
||||
'Nechat prázdné pro hledání v celé databází.',
|
||||
'datedescr' => 'Můžete si přiřadit Vaše hledání ke konkrétnímu datu. Můžete zvolit rok, rok a měsíc, nebo přesné datum. ' . 'Nechat prázdné pro hledání v celé databází.',
|
||||
|
||||
'fset3' => 'Hleda v kategoriích',
|
||||
'catdescr' => 'Nechat prázdné pro hledání v celé databází.',
|
||||
@ -50,20 +45,25 @@
|
||||
|
||||
'moreopts' => 'Další možnosti',
|
||||
|
||||
|
||||
'searchag' => 'Hledej znovu',
|
||||
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Musíš zadat aspoň jedno klíčové slovo'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Vydal',
|
||||
'on' => 'dne'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Vložil',
|
||||
'at' => 'na'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
@ -87,7 +87,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Přihlásit',
|
||||
'fieldset1' => 'Zadej svoje přihlašovací jméno a heslo',
|
||||
'user' => 'Přihlašovací jméno:',
|
||||
@ -112,7 +111,6 @@
|
||||
'match' => 'Nesprávné heslo.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Přidat komentář',
|
||||
'descr' => 'Pro přidání komentáře vyplňte formulář níže',
|
||||
@ -135,11 +133,15 @@
|
||||
'name' => 'Musíte vložit jméno',
|
||||
'email' => 'Musíte vložit správný email',
|
||||
'www' => 'Musíte vložit správné URL',
|
||||
'comment' => 'Musíte vložit komentář',
|
||||
'comment' => 'Musíte vložit komentář'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'Volání'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Leden',
|
||||
'Únor',
|
||||
'Březen',
|
||||
@ -152,11 +154,9 @@
|
||||
'Říjen',
|
||||
'Listopad',
|
||||
'Prosinec'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
@ -169,33 +169,25 @@
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Neděle',
|
||||
'Pondělí',
|
||||
'Úterý',
|
||||
'Středa',
|
||||
'Čtvrtek',
|
||||
'Pátek',
|
||||
'Sobota',
|
||||
|
||||
'Sobota'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Ne',
|
||||
'Po',
|
||||
'Út',
|
||||
'St',
|
||||
'Čt',
|
||||
'Pá',
|
||||
'So',
|
||||
|
||||
'So'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Nächste Seite »',
|
||||
'prevpage' => '« Vorherige Seite',
|
||||
'entry' => 'Beitrag',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Kommentar hinzufügen',
|
||||
'comment' => '1 Kommentar',
|
||||
'comments' => 'Kommentare',
|
||||
|
||||
'comments' => 'Kommentare'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Suchen',
|
||||
'fset1' => 'Suchkriterien einfügen',
|
||||
'keywords' => 'Suchwörter',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Volltextsuche',
|
||||
|
||||
'fset2' => 'Suche nach Datum',
|
||||
'datedescr' => 'Du kannst nach einem beliebigen Datum suchen. Kriterien können sein: Jahr, Jahr und Monat oder als komplettes Datum. '.
|
||||
'Ohne Angaben wird alles durchsucht.',
|
||||
'datedescr' => 'Du kannst nach einem beliebigen Datum suchen. Kriterien können sein: Jahr, Jahr und Monat oder als komplettes Datum. ' . 'Ohne Angaben wird alles durchsucht.',
|
||||
|
||||
'fset3' => 'In Kategorien suchen',
|
||||
'catdescr' => 'Es muss mindestens eine Kategorie angegeben werden.',
|
||||
@ -50,14 +45,24 @@
|
||||
|
||||
'moreopts' => 'Mehr Optionen',
|
||||
|
||||
'searchag' => 'Suche wiederholen',
|
||||
|
||||
'searchag' => 'Suche wiederholen'
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Es muss mindestens ein Suchkriterium angegeben werden.'
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Veröffentlicht von',
|
||||
'on' => 'am'
|
||||
);
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Gepostet von',
|
||||
'at' => 'um'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
@ -107,7 +112,6 @@
|
||||
'match' => 'Benutzer oder Passwort sind falsch.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Kommentar hinzufügen',
|
||||
'descr' => 'Die Felder Name und Kommentar sind Pflichtfelder.',
|
||||
@ -123,18 +127,22 @@
|
||||
'reset' => 'Zurücksetzen',
|
||||
'success' => 'Dein Kommentar wurde erfolgreich hinzugefügt',
|
||||
'nocomments' => 'Bis jetzt noch keine Kommentare vorhanden',
|
||||
'commslock' => 'Für diesen Eintrag sind keine Kommentare möglich',
|
||||
'commslock' => 'Für diesen Eintrag sind keine Kommentare möglich'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Bitte einen Namen eingeben',
|
||||
'email' => 'Bitte eine gültige E-Mail Adresse eingeben',
|
||||
'www' => 'Bitte eine gültige URL eingeben',
|
||||
'comment' => 'Bitte einen Kommentar schreiben',
|
||||
'comment' => 'Bitte einen Kommentar schreiben'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'Aufruf(e)'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Januar',
|
||||
'Februar',
|
||||
'März',
|
||||
@ -147,11 +155,9 @@
|
||||
'Oktober',
|
||||
'November',
|
||||
'Dezember'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mär',
|
||||
@ -164,11 +170,9 @@
|
||||
'Okt',
|
||||
'Nov',
|
||||
'Dez'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Sonntag',
|
||||
'Montag',
|
||||
'Dienstag',
|
||||
@ -176,11 +180,9 @@
|
||||
'Donnerstag',
|
||||
'Freitag',
|
||||
'Samstag'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'So',
|
||||
'Mo',
|
||||
'Di',
|
||||
@ -188,7 +190,5 @@
|
||||
'Do',
|
||||
'Fr',
|
||||
'Sa'
|
||||
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Επόμενη σελίδα »',
|
||||
'prevpage' => '« Προηγούμενη σελίδα',
|
||||
'entry' => 'Καταχώρηση',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Προσθήκη σχολίου',
|
||||
'comment' => '1 σχόλιο',
|
||||
'comments' => 'σχόλια',
|
||||
|
||||
'comments' => 'σχόλια'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Αναζήτηση',
|
||||
'fset1' => 'Εισάγετε όρους αναζήτησης',
|
||||
'keywords' => 'Φράση',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Πλήρες κείμενο',
|
||||
|
||||
'fset2' => 'Ημερομηνία',
|
||||
'datedescr' => 'Μπορείτε να περιορίσετε την αναζήτηση σας σε μια συγκεκριμένη ημερομηνία. Μπορείτε να επιλέξετε χρόνο, μήνα και χρόνο ή ολόκληρη ημερομηνία. '.
|
||||
'Αφήστε το κενό για αναζήτηση σε ολόκληρη τη βάση δεδομένων.',
|
||||
'datedescr' => 'Μπορείτε να περιορίσετε την αναζήτηση σας σε μια συγκεκριμένη ημερομηνία. Μπορείτε να επιλέξετε χρόνο, μήνα και χρόνο ή ολόκληρη ημερομηνία. ' . 'Αφήστε το κενό για αναζήτηση σε ολόκληρη τη βάση δεδομένων.',
|
||||
|
||||
'fset3' => 'Αναζήτηση σε κατηγορίες',
|
||||
'catdescr' => 'Μην επιλέξετε καμία αν επιθυμείτε να ψάξει σε όλες',
|
||||
@ -49,21 +44,25 @@
|
||||
'descrnores'=> 'Η αναζήτηση για <strong>%s</strong> δεν επέστρεψε αποτελέσματα.',
|
||||
|
||||
'moreopts' => 'Περισσότερες επιλογές',
|
||||
|
||||
|
||||
'searchag' => 'Αναζήτηση ξανά',
|
||||
|
||||
'searchag' => 'Αναζήτηση ξανά'
|
||||
);
|
||||
|
||||
$lang ['search']['error'] = array(
|
||||
|
||||
'keywords' => 'Πρέπει να προσδιορίσετε τουλάχιστον μία λέξη κλειδί'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Δημοσιεύθηκε από',
|
||||
'on' => 'on'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Δημοσιεύτηκε από τον',
|
||||
'at' => 'στις'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
@ -87,7 +86,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Σύνδεση',
|
||||
'fieldset1' => 'Εισάγετε το όνομα χρήστη και τον κωδικό σας',
|
||||
'user' => 'Όνομα χρήστη:',
|
||||
@ -112,7 +110,6 @@
|
||||
'match' => 'Λάθος κωδικός.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Προσθήκη σχολίου',
|
||||
'descr' => 'Συμπηρώστε την παρακάτω φόρμα για να προσθέσετε το σχόλιο σας',
|
||||
@ -128,18 +125,22 @@
|
||||
'reset' => 'Ακύρωση',
|
||||
'success' => 'Το σχόλιο σας προστέθηκε επιτυχώς',
|
||||
'nocomments' => 'Αυτή η δημοσίευση δεν έχει σχόλια ακόμη',
|
||||
'commslock' => 'Τα σχόλια έχουν απενεργοποιηθεί για αυτή τη δημοσίευση',
|
||||
'commslock' => 'Τα σχόλια έχουν απενεργοποιηθεί για αυτή τη δημοσίευση'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Πρέπει να εισάγετε ένα όνομα',
|
||||
'email' => 'Πρέπει να εισάγετε μια ισχύουσα ηλεκτρονική διεύθυνση',
|
||||
'www' => 'Πρέπει να προσθέσετε μια ισχύουσα σελίδα',
|
||||
'comment' => 'Πρέπει να εισάγετε ένα σχόλιο',
|
||||
'comment' => 'Πρέπει να εισάγετε ένα σχόλιο'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'προβολές'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Ιανουαρίου',
|
||||
'Φεβρουαρίου',
|
||||
'Μαρτίου',
|
||||
@ -152,11 +153,9 @@
|
||||
'Οκτωβρίου',
|
||||
'Νοεμβρίου',
|
||||
'Δεκεμβρίου'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
@ -169,33 +168,25 @@
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Κυριακή',
|
||||
'Δευτέρα',
|
||||
'Τρίτη',
|
||||
'Τετάρτη',
|
||||
'Πέμπτη',
|
||||
'Παρασκευή',
|
||||
'Σαββάτο',
|
||||
|
||||
'Σαββάτο'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Sun',
|
||||
'Mon',
|
||||
'Tue',
|
||||
'Wed',
|
||||
'Thu',
|
||||
'Fri',
|
||||
'Sat',
|
||||
|
||||
'Sat'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -2,7 +2,6 @@
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Next Page »',
|
||||
'prevpage' => '« Previous Page',
|
||||
'entry' => 'Entry',
|
||||
@ -25,7 +24,6 @@ $lang ['main'] = array(
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Search',
|
||||
'fset1' => 'Insert search criteria',
|
||||
'keywords' => 'Phrase',
|
||||
@ -55,6 +53,18 @@ $lang ['search'] ['error'] = array(
|
||||
'keywords' => 'You must specify at least one keyword'
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Published by',
|
||||
'on' => 'on'
|
||||
);
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Posted by',
|
||||
'at' => 'at'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
|
||||
@ -77,7 +87,6 @@ $lang ['404error'] = array(
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Login',
|
||||
'fieldset1' => 'Insert your user name and password',
|
||||
'user' => 'Username:',
|
||||
@ -127,8 +136,12 @@ $lang ['comments'] ['error'] = array(
|
||||
'comment' => 'You must enter a comment'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'views',
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
'January',
|
||||
'February',
|
||||
'March',
|
||||
@ -144,7 +157,6 @@ $lang ['date'] ['month'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
@ -160,7 +172,6 @@ $lang ['date'] ['month_abbr'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Sunday',
|
||||
'Monday',
|
||||
'Tuesday',
|
||||
@ -171,7 +182,6 @@ $lang ['date'] ['weekday'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Sun',
|
||||
'Mon',
|
||||
'Tue',
|
||||
@ -180,5 +190,4 @@ $lang ['date'] ['weekday_abbr'] = array(
|
||||
'Fri',
|
||||
'Sat'
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Página Siguiente »',
|
||||
'prevpage' => '« Página anterior',
|
||||
'entry' => 'Entrada',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Agregar un Comentario',
|
||||
'comment' => '1 comentario',
|
||||
'comments' => 'comentarios',
|
||||
|
||||
'comments' => 'comentarios'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Buscar',
|
||||
'fset1' => 'Insertar criterios de búsqueda',
|
||||
'keywords' => 'Frase',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Text Completo',
|
||||
|
||||
'fset2' => 'Date',
|
||||
'datedescr' => 'Puede vincular su búsqueda a una fecha específica. Puede seleccionar un año, un año y un mes o una fecha completa. '.
|
||||
'Déjelo en blanco para buscar en toda la base de datos.',
|
||||
'datedescr' => 'Puede vincular su búsqueda a una fecha específica. Puede seleccionar un año, un año y un mes o una fecha completa. ' . 'Déjelo en blanco para buscar en toda la base de datos.',
|
||||
|
||||
'fset3' => 'Buscar en categorías',
|
||||
'catdescr' => 'No seleccione ninguno para buscar todos',
|
||||
@ -50,20 +45,25 @@
|
||||
|
||||
'moreopts' => 'Más Opciones',
|
||||
|
||||
|
||||
'searchag' => 'Busca de nuevo',
|
||||
|
||||
'searchag' => 'Busca de nuevo'
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Debe especificar al menos una palabra clave'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Publicado por',
|
||||
'on' => 'el'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Enviado por',
|
||||
'at' => 'a las'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
@ -87,7 +87,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Iniciar sesión',
|
||||
'fieldset1' => 'Inserte su nombre de usuario y contraseña',
|
||||
'user' => 'Usuario:',
|
||||
@ -112,7 +111,6 @@
|
||||
'match' => 'Contraseña incorrecta.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Agregar comentario',
|
||||
'descr' => 'Complete el siguiente formulario para agregar sus propios comentarios',
|
||||
@ -128,18 +126,22 @@
|
||||
'reset' => 'Reiniciar',
|
||||
'success' => 'Tu comentario fue agregado exitosamente',
|
||||
'nocomments' => 'Esta entrada aún no ha sido comentada',
|
||||
'commslock' => 'Los comentarios han sido desactivados para esta entrada.',
|
||||
'commslock' => 'Los comentarios han sido desactivados para esta entrada.'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Debes ingresar un nombre',
|
||||
'email' => 'Debes ingresar un correo electrónico válido',
|
||||
'www' => 'Debes ingresar una URL válida',
|
||||
'comment' => 'Debes ingresar un comentario',
|
||||
'comment' => 'Debes ingresar un comentario'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'Llamadas'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Enero',
|
||||
'Febrero',
|
||||
'Marzo',
|
||||
@ -152,11 +154,9 @@
|
||||
'Octubre',
|
||||
'Noviembre',
|
||||
'Deciembre'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Ene',
|
||||
'Feb',
|
||||
'Mar',
|
||||
@ -169,33 +169,25 @@
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Domingo',
|
||||
'Lunes',
|
||||
'Martes',
|
||||
'Miércoles',
|
||||
'Jueves',
|
||||
'Viernes',
|
||||
'Sabado',
|
||||
|
||||
'Sabado'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Dom',
|
||||
'Lun',
|
||||
'Mar',
|
||||
'Mie',
|
||||
'Jue',
|
||||
'Vie',
|
||||
'Sab',
|
||||
|
||||
'Sab'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Page suivante;',
|
||||
'prevpage' => 'Page précédente',
|
||||
'entry' => 'Billet',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Ajouter un commentaire',
|
||||
'comment' => '1 commentaire',
|
||||
'comments' => 'commentaires',
|
||||
|
||||
'comments' => 'commentaires'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Rechercher',
|
||||
'fset1' => 'Insérer un critère de recherche',
|
||||
'keywords' => 'Phrase',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Texte en entier',
|
||||
|
||||
'fset2' => 'Date',
|
||||
'datedescr' => 'Vous pouvez affiner votre recherche à une date spécifique. Vous pouvez sélectionner une année, une année et un mois, ou une date complète. '.
|
||||
'Laissez vide pour chercher dans l\'ensemble de la base de données.',
|
||||
'datedescr' => 'Vous pouvez affiner votre recherche à une date spécifique. Vous pouvez sélectionner une année, une année et un mois, ou une date complète. ' . 'Laissez vide pour chercher dans l\'ensemble de la base de données.',
|
||||
|
||||
'fset3' => 'Rechercher dans les catégories',
|
||||
'catdescr' => 'Laissez vide pour rechercher dans la totalité',
|
||||
@ -50,20 +45,25 @@
|
||||
|
||||
'moreopts' => 'Plus d\'options',
|
||||
|
||||
|
||||
'searchag' => 'Nouvelle recherche',
|
||||
|
||||
'searchag' => 'Nouvelle recherche'
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Vous devez spécifier au moins un mot-clé'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Publié par',
|
||||
'on' => 'le'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Posté par',
|
||||
'at' => 'à'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
@ -87,7 +87,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Identifiant',
|
||||
'fieldset1' => 'Insérez vos identifiants',
|
||||
'user' => 'Nom d\'utilisateur:',
|
||||
@ -112,7 +111,6 @@
|
||||
'match' => 'Mot de passe incorrect.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Ajouter commentaire',
|
||||
'descr' => 'Remplissez le formulaire ci-dessous pour ajouter vos propres commentaires',
|
||||
@ -128,18 +126,22 @@
|
||||
'reset' => 'Réinitialiser',
|
||||
'success' => 'Votre commentaire a été ajouté avec succès',
|
||||
'nocomments' => 'Pas de commentaires pour ce billet',
|
||||
'commslock' => 'Les commentaires ont été désactivés pour ce billet',
|
||||
'commslock' => 'Les commentaires ont été désactivés pour ce billet'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Vous devez entrer un nom',
|
||||
'email' => 'Vous devez entrer une adresse email valide',
|
||||
'www' => 'Vous devez entrer une URL valide',
|
||||
'comment' => 'Vous devez écrire un commentaire',
|
||||
'comment' => 'Vous devez écrire un commentaire'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'Vues'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Janvier',
|
||||
'Février',
|
||||
'Mars',
|
||||
@ -152,11 +154,9 @@
|
||||
'Octobre',
|
||||
'Novembre',
|
||||
'Décembre'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Fev',
|
||||
'Mar',
|
||||
@ -169,33 +169,25 @@
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Dimanche',
|
||||
'Lundi',
|
||||
'Mardi',
|
||||
'Mercredi',
|
||||
'Jeudi',
|
||||
'Vendredi',
|
||||
'Samedi',
|
||||
|
||||
'Samedi'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Dim',
|
||||
'Lun',
|
||||
'Mar',
|
||||
'Mer',
|
||||
'Jeu',
|
||||
'Ven',
|
||||
'Sam',
|
||||
|
||||
'Sam'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Pagina successiva »',
|
||||
'prevpage' => '« Pagina precedente',
|
||||
'entry' => 'Articolo',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'Aggiungi un commento',
|
||||
'comment' => '1 commento',
|
||||
'comments' => 'commenti',
|
||||
|
||||
'comments' => 'commenti'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Cerca',
|
||||
'fset1' => 'Inserisci un criterio di ricerca',
|
||||
'keywords' => 'Frase',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => 'Testo completo',
|
||||
|
||||
'fset2' => 'Data',
|
||||
'datedescr' => 'Puoi collegare la tua ricerca ad una data specifica. Puoi selezionare un anno, un anno e un mese o una data completa. '.
|
||||
'Lascia in bianco se vuoi cercare nell\'intero database.',
|
||||
'datedescr' => 'Puoi collegare la tua ricerca ad una data specifica. Puoi selezionare un anno, un anno e un mese o una data completa. ' . 'Lascia in bianco se vuoi cercare nell\'intero database.',
|
||||
|
||||
'fset3' => 'Cerca nelle categorie',
|
||||
'catdescr' => 'Non selezionare nulla per la ricerca completa',
|
||||
@ -50,20 +45,25 @@
|
||||
|
||||
'moreopts' => 'Altre opzioni',
|
||||
|
||||
|
||||
'searchag' => 'Cerca ancora',
|
||||
|
||||
'searchag' => 'Cerca ancora'
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Devi specificare almeno una parola chiave'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Pubblicato da',
|
||||
'on' => 'il'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Postato da',
|
||||
'at' => 'a'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
@ -87,7 +87,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Login',
|
||||
'fieldset1' => 'Inserisci nome utente e password',
|
||||
'user' => 'Nome utente:',
|
||||
@ -112,7 +111,6 @@
|
||||
'match' => 'La password non è corretta.'
|
||||
);
|
||||
|
||||
|
||||
$lang ['comments'] = array(
|
||||
'head' => 'Aggiungi un commento',
|
||||
'descr' => 'Compila il modulo qui sotto per aggiungere i tuoi commenti',
|
||||
@ -128,18 +126,22 @@
|
||||
'reset' => 'Azzera',
|
||||
'success' => 'Il tuo commento è stato aggiunto con successo',
|
||||
'nocomments' => 'Questo articolo non è stato ancora commentato',
|
||||
'commslock' => 'I commenti sono stati disabilitati per questo articolo',
|
||||
'commslock' => 'I commenti sono stati disabilitati per questo articolo'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Devi inserire un nome',
|
||||
'email' => 'Devi inserire un indirizzo email valido',
|
||||
'www' => 'Devi inserire un URL valido',
|
||||
'comment' => 'Devi inserire un commento',
|
||||
'comment' => 'Devi inserire un commento'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'visite'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Gennaio',
|
||||
'Febbraio',
|
||||
'Marzo',
|
||||
@ -152,11 +154,9 @@
|
||||
'Ottobre',
|
||||
'Novembre',
|
||||
'Dicembre'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Gen',
|
||||
'Feb',
|
||||
'Mar',
|
||||
@ -169,33 +169,25 @@
|
||||
'Ott',
|
||||
'Nov',
|
||||
'Dic'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Domenica',
|
||||
'Lunedì',
|
||||
'Martedì',
|
||||
'Mercoledì',
|
||||
'Giovedì',
|
||||
'Venerdì',
|
||||
'Sabato',
|
||||
|
||||
'Sabato'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Dom',
|
||||
'Lun',
|
||||
'Mar',
|
||||
'Mer',
|
||||
'Gio',
|
||||
'Ven',
|
||||
'Sab',
|
||||
|
||||
'Sab'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang['main'] = array(
|
||||
|
||||
'nextpage' => '次のページ »',
|
||||
'prevpage' => '« 前のページ',
|
||||
'entry' => 'ブログ記事',
|
||||
@ -22,12 +20,10 @@
|
||||
|
||||
'nocomments' => 'コメントを追加する',
|
||||
'comment' => '1コメントあります',
|
||||
'comments' => 'コメントあります',
|
||||
|
||||
'comments' => 'コメントあります'
|
||||
);
|
||||
|
||||
$lang['search'] = array(
|
||||
|
||||
'head' => '検索',
|
||||
'fset1' => '検索キーワードの指定',
|
||||
'keywords' => 'キーワード',
|
||||
@ -35,8 +31,7 @@
|
||||
'fulltext' => '全文から検索',
|
||||
|
||||
'fset2' => '日付の指定',
|
||||
'datedescr' => '日付で絞り込み指定できます。年、年月、年月日を指定できます。 '.
|
||||
'日付の指定をしない場合は、空欄にしてください。',
|
||||
'datedescr' => '日付で絞り込み指定できます。年、年月、年月日を指定できます。 ' . '日付の指定をしない場合は、空欄にしてください。',
|
||||
|
||||
'fset3' => 'カテゴリで検索',
|
||||
'catdescr' => '全カテゴリから検索する場合は、いずれも選ばないでください。',
|
||||
@ -50,20 +45,25 @@
|
||||
|
||||
'moreopts' => '追加オプション',
|
||||
|
||||
|
||||
'searchag' => '再検索',
|
||||
|
||||
'searchag' => '再検索'
|
||||
);
|
||||
|
||||
$lang['search']['error'] = array(
|
||||
|
||||
'keywords' => '検索キーワードを記入してください'
|
||||
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => '発行元',
|
||||
'on' => 'on'
|
||||
);
|
||||
|
||||
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => '投稿者',
|
||||
'at' => 'at'
|
||||
);
|
||||
|
||||
$lang['entry'] = array();
|
||||
$lang['entry']['flags'] = array();
|
||||
@ -87,7 +87,6 @@
|
||||
|
||||
// Login
|
||||
$lang['login'] = array(
|
||||
|
||||
'head' => 'ログイン',
|
||||
'fieldset1' => 'ユーザー名とパスワードを入力してください',
|
||||
'user' => 'ユーザー名:',
|
||||
@ -112,7 +111,6 @@
|
||||
'match' => 'パスワードが正しくありません。'
|
||||
);
|
||||
|
||||
|
||||
$lang['comments'] = array(
|
||||
'head' => 'コメント記入',
|
||||
'descr' => '次のフォームにコメントを記入してください。',
|
||||
@ -128,18 +126,22 @@
|
||||
'reset' => 'リセット',
|
||||
'success' => 'コメントが投稿されました。',
|
||||
'nocomments' => 'まだコメントがついていません。',
|
||||
'commslock' => 'コメントを記入することはできません。',
|
||||
'commslock' => 'コメントを記入することはできません。'
|
||||
);
|
||||
|
||||
$lang['comments']['error'] = array(
|
||||
'name' => 'お名前を記入してください。',
|
||||
'email' => 'メールアドレスを正しく記入してください。',
|
||||
'www' => 'URLを正しく入力してください。',
|
||||
'comment' => 'コメントを記入してください。',
|
||||
'comment' => 'コメントを記入してください。'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'コール'
|
||||
);
|
||||
|
||||
$lang['date']['month'] = array(
|
||||
|
||||
'1月',
|
||||
'2月',
|
||||
'3月',
|
||||
@ -152,11 +154,9 @@
|
||||
'10月',
|
||||
'11月',
|
||||
'12月'
|
||||
|
||||
);
|
||||
|
||||
$lang['date']['month_abbr'] = array(
|
||||
|
||||
'1月',
|
||||
'2月',
|
||||
'3月',
|
||||
@ -169,33 +169,25 @@
|
||||
'10月',
|
||||
'11月',
|
||||
'12月'
|
||||
|
||||
);
|
||||
|
||||
$lang['date']['weekday'] = array(
|
||||
|
||||
'日曜日',
|
||||
'月曜日',
|
||||
'火曜日',
|
||||
'水曜日',
|
||||
'木曜日',
|
||||
'金曜日',
|
||||
'土曜日',
|
||||
|
||||
'土曜日'
|
||||
);
|
||||
|
||||
$lang['date']['weekday_abbr'] = array(
|
||||
|
||||
'日',
|
||||
'月',
|
||||
'火',
|
||||
'水',
|
||||
'木',
|
||||
'金',
|
||||
'土',
|
||||
|
||||
'土'
|
||||
);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
@ -2,7 +2,6 @@
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Volgende pagina »',
|
||||
'prevpage' => '« Vorige pagina',
|
||||
'entry' => 'Data invoer',
|
||||
@ -25,7 +24,6 @@ $lang ['main'] = array(
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Zoek',
|
||||
'fset1' => 'Vul zoek criteria in',
|
||||
'keywords' => 'Zin',
|
||||
@ -55,6 +53,18 @@ $lang ['search'] ['error'] = array(
|
||||
'keywords' => 'Je moet tenminste 1 zoekwoord invullen'
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Gepubliceerd door',
|
||||
'on' => 'op'
|
||||
);
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Geplaatst door',
|
||||
'at' => 'om'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
$lang ['entry'] ['flags'] = array();
|
||||
|
||||
@ -77,7 +87,6 @@ $lang ['404error'] = array(
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Login',
|
||||
'fieldset1' => 'Voeg uw gebruikersnaam en wachtwoord in',
|
||||
'user' => 'Gebruikersnaam:',
|
||||
@ -127,8 +136,12 @@ $lang ['comments'] ['error'] = array(
|
||||
'comment' => 'U moet een commentaar invoeren'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'maal gezien'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
'januari',
|
||||
'februari',
|
||||
'maart',
|
||||
@ -144,7 +157,6 @@ $lang ['date'] ['month'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'jan',
|
||||
'feb',
|
||||
'mrt',
|
||||
@ -160,7 +172,6 @@ $lang ['date'] ['month_abbr'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'zondag',
|
||||
'maandag',
|
||||
'dinsdag',
|
||||
@ -171,7 +182,6 @@ $lang ['date'] ['weekday'] = array(
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'zo',
|
||||
'ma',
|
||||
'di',
|
||||
@ -180,5 +190,4 @@ $lang ['date'] ['weekday_abbr'] = array(
|
||||
'vr',
|
||||
'za'
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -1,10 +1,8 @@
|
||||
<?php
|
||||
//Terminado 27 de Novembro de 2022.
|
||||
|
||||
$lang = array();
|
||||
|
||||
$lang ['main'] = array(
|
||||
|
||||
'nextpage' => 'Próxima página »',
|
||||
'prevpage' => '« Página anterior',
|
||||
'entry' => 'Post',
|
||||
@ -23,12 +21,10 @@
|
||||
|
||||
'nocomments' => 'Adicione comentário',
|
||||
'comment' => '1 comentário',
|
||||
'comments' => 'comentários',
|
||||
|
||||
'comments' => 'comentários'
|
||||
);
|
||||
|
||||
$lang ['search'] = array(
|
||||
|
||||
'head' => 'Pesquisa',
|
||||
'fset1' => 'Inserir critérios de pesquisa',
|
||||
'keywords' => 'Frase',
|
||||
@ -36,8 +32,7 @@
|
||||
'fulltext' => 'Texto completo',
|
||||
|
||||
'fset2' => 'Data',
|
||||
'datedescr' => 'Você pode vincular sua pesquisa a uma data específica. Você pode selecionar um ano, um ano e um mês ou uma data completa. '.
|
||||
'Deixe em branco para pesquisar em todo o banco de dados.',
|
||||
'datedescr' => 'Você pode vincular sua pesquisa a uma data específica. Você pode selecionar um ano, um ano e um mês ou uma data completa. ' . 'Deixe em branco para pesquisar em todo o banco de dados.',
|
||||
|
||||
'fset3' => 'Pesquisar nas categorias.',
|
||||
'catdescr' => 'Não selecione nenhuma categoria para pesquisar todas',
|
||||
@ -51,14 +46,24 @@
|
||||
|
||||
'moreopts' => 'Mais opções',
|
||||
|
||||
'searchag' => 'Pesquise de novo',
|
||||
|
||||
'searchag' => 'Pesquise de novo'
|
||||
);
|
||||
|
||||
$lang ['search'] ['error'] = array(
|
||||
|
||||
'keywords' => 'Você deve especificar pelo menos uma palavra-chave.'
|
||||
);
|
||||
|
||||
$lang ['staticauthor'] = array(
|
||||
// "Published by" in static pages
|
||||
'published_by' => 'Publicado por',
|
||||
'on' => 'em'
|
||||
);
|
||||
|
||||
$lang ['entryauthor'] = array(
|
||||
// "Posted by" in entry pages
|
||||
'posted_by' => 'Postado por',
|
||||
'at' => 'às'
|
||||
);
|
||||
|
||||
$lang ['entry'] = array();
|
||||
@ -83,7 +88,6 @@
|
||||
|
||||
// Login
|
||||
$lang ['login'] = array(
|
||||
|
||||
'head' => 'Login',
|
||||
'fieldset1' => 'Insira seu nome de usuário e senha.',
|
||||
'user' => 'Nome de usuário:',
|
||||
@ -123,18 +127,22 @@
|
||||
'reset' => 'Resetar',
|
||||
'success' => 'Seu comentário foi adicionado com sucesso.',
|
||||
'nocomments' => 'Esta entrada ainda não foi comentada.',
|
||||
'commslock' => 'Os comentários foram desativados para esta entrada.',
|
||||
'commslock' => 'Os comentários foram desativados para esta entrada.'
|
||||
);
|
||||
|
||||
$lang ['comments'] ['error'] = array(
|
||||
'name' => 'Você deve inserir um nome.',
|
||||
'email' => 'Você deve inserir um email válido.',
|
||||
'www' => 'Você deve inserir uma URL válida.',
|
||||
'comment' => 'Você deve inserir um comentário.',
|
||||
'comment' => 'Você deve inserir um comentário.'
|
||||
);
|
||||
|
||||
$lang ['postviews'] = array(
|
||||
// PostView-Plugin
|
||||
'views' => 'vistas'
|
||||
);
|
||||
|
||||
$lang ['date'] ['month'] = array(
|
||||
|
||||
'Janeiro',
|
||||
'Fevereiro',
|
||||
'Março',
|
||||
@ -147,11 +155,9 @@
|
||||
'Outubro',
|
||||
'Novembro',
|
||||
'Dezembro'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['month_abbr'] = array(
|
||||
|
||||
'Jan',
|
||||
'Fev',
|
||||
'Mar',
|
||||
@ -164,31 +170,25 @@
|
||||
'Out',
|
||||
'Nov',
|
||||
'Dez'
|
||||
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday'] = array(
|
||||
|
||||
'Domingo',
|
||||
'Segunda-feira',
|
||||
'Terça-feira',
|
||||
'Quarta-feira',
|
||||
'Quinta-feira',
|
||||
'Sexta-feira',
|
||||
'Sábado',
|
||||
|
||||
'Sábado'
|
||||
);
|
||||
|
||||
$lang ['date'] ['weekday_abbr'] = array(
|
||||
|
||||
'Dom',
|
||||
'Seg',
|
||||
'Ter',
|
||||
'Qua',
|
||||
'Qui',
|
||||
'Sex',
|
||||
'Sab',
|
||||
|
||||
'Sab'
|
||||
);
|
||||
|
||||
?>
|
@ -18,18 +18,18 @@
|
||||
|
||||
<ul class="entry-footer">
|
||||
|
||||
<li class="entry-info">Posted by <span itemprop="author">{$author}</span> at
|
||||
<li class="entry-info">{$lang.entryauthor.posted_by} <span itemprop="author">{$author}</span> {$lang.entryauthor.at}
|
||||
{$date|date_format}
|
||||
|
||||
<span itemprop="articleSection">
|
||||
{if ($categories)} in {$categories|@filed}{/if}
|
||||
{if ($categories)} {$lang.plugin.categories.in} {$categories|@filed}{/if}
|
||||
</span>
|
||||
</li>
|
||||
|
||||
{if !(in_array('commslock', $categories) && !$comments)}
|
||||
<li class="link-comments">
|
||||
<a href="{$id|link:comments_link}#comments">{$comments|tag:comments_number}
|
||||
{if isset($views)}(<strong>{$views}</strong> views){/if}
|
||||
{if isset($views)}(<strong>{$views}</strong> {$lang.postviews.views}){/if}
|
||||
</a>
|
||||
</li>
|
||||
{/if}
|
||||
|
@ -282,6 +282,11 @@ input.maxsize, select.maxsize { width: 99% }
|
||||
/* ===== PREVIEW SETTINGS ===== */
|
||||
#post-preview .entry { padding: 2em; max-height: 20em; overflow: auto }
|
||||
|
||||
.entry-footer {
|
||||
margin: 2em 0 0.5em 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* ===== UPLOAD PANEL ===== */
|
||||
#admin-uploader-filelist {
|
||||
margin: 1em auto;
|
||||
|
@ -1,8 +1,12 @@
|
||||
{entry content=$entry}
|
||||
<div class="entry">
|
||||
{$date|date_format_daily:"<h2 class=\"date\">`$fp_config.locale.dateformat`</h2>"}
|
||||
<h3>{$subject|tag:the_title}</h3>
|
||||
<p class="date">Published by {$author} on {$date|date_format:$fp_config.locale.dateformat} </p>
|
||||
{$content|tag:the_content}
|
||||
<ul class="entry-footer">
|
||||
<li class="entry-info">
|
||||
<p class="date">{$lang.entryauthor.posted_by} {$author} {$lang.entryauhor.on} {$date|date_format} </p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{/entry}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
{static content=$entry}
|
||||
<div class="entry">
|
||||
<h3>{$subject}</h3>
|
||||
<p class="date">Published by {$author} on {$date|date_format:$fp_config.locale.dateformat} </p>
|
||||
{$content}
|
||||
<h3>{$subject|tag:the_title}</h3>
|
||||
<p class="date">{$lang.staticauthor.published_by} {$author} {$lang.staticauthor.on} {$date|date_format_daily} </p>
|
||||
{$content|tag:the_content}
|
||||
</div>
|
||||
{/static}
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
{static}
|
||||
<div id="{$id}" class="entry page-{$id}">
|
||||
<h3>{$subject}</h3>
|
||||
<p class="date">Published by {$author} on {$date|date_format_daily}</p>
|
||||
<p class="date">{$lang.staticauthor.published_by} {$author} {$lang.staticauthor.on} {$date|date_format_daily}</p>
|
||||
|
||||
{$content|tag:the_content}
|
||||
</div>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'Kategorie'
|
||||
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'v'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
|
||||
'subject' => 'Kategorien'
|
||||
|
||||
'subject' => 'Kategorien',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
|
||||
'subject' => 'Κατηγορίες'
|
||||
|
||||
'subject' => 'Κατηγορίες',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'στο'
|
||||
);
|
||||
|
||||
?>
|
||||
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
|
||||
'subject' => 'Categories'
|
||||
|
||||
'subject' => 'Categories',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'Categorías'
|
||||
|
||||
'subject' => 'Categorías',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'en'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'Catégories'
|
||||
|
||||
'subject' => 'Catégories',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'dans'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'Categorie'
|
||||
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'カテゴリ'
|
||||
|
||||
'subject' => 'カテゴリ',
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
|
||||
?>
|
@ -1,9 +1,7 @@
|
||||
<?php
|
||||
|
||||
$lang ['plugin'] ['categories'] = array(
|
||||
|
||||
'subject' => 'Categorie'
|
||||
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'in'
|
||||
);
|
||||
|
||||
?>
|
@ -1,10 +1,8 @@
|
||||
<?php
|
||||
//Terminado 15 de fevereiro de 2020.
|
||||
|
||||
$lang['plugin']['categories'] = array(
|
||||
|
||||
'subject' => 'Categorias'
|
||||
|
||||
// Posted by Frank "in" Categorie FlatPress
|
||||
'in' => 'na'
|
||||
);
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user