Merge branch 'master' of https://github.com/flatpressblog/flatpress
This commit is contained in:
commit
0e211fd794
11
CHANGELOG.md
11
CHANGELOG.md
@ -8,6 +8,7 @@
|
||||
- Added [SECURITY.md](https://github.com/flatpressblog/flatpress/blob/master/SECURITY.md)
|
||||
- [README](https://github.com/flatpressblog/flatpress/blob/master/README.md): added "help and support" section
|
||||
- Re-activated useful "Stats" panel in Admin Area / Entries
|
||||
- "Follow on Mastodon" added as an alternative to X (Twitter) in the welcome entry
|
||||
|
||||
## Plugins
|
||||
### Additions
|
||||
@ -30,6 +31,14 @@
|
||||
- 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))
|
||||
|
||||
## Setup
|
||||
- Reworked Installer ([#266](https://github.com/flatpressblog/flatpress/issues/266))
|
||||
- Image files, which are not used by the installer, were removed.
|
||||
- In the setup CSS, unused IDs, classes and incorrect references to fonts have been removed.
|
||||
- The installer header now shines in a simple FlatPress style.
|
||||
- Added missing language files for Greek, Spanish and French ([#214](https://github.com/flatpressblog/flatpress/issues/214))
|
||||
- The installer tries to write permissions to the fp-content directory recursively for owners and groups, which had to be done manually before.
|
||||
|
||||
## Themes
|
||||
- Reworked "Leggero v2" style, Admin Area now responsive ([#259](https://github.com/flatpressblog/flatpress/issues/259))
|
||||
- Adjusted the alignment of the calendar widget and the search widget
|
||||
@ -71,6 +80,7 @@
|
||||
- Fixed not-yet-translated phrases in Blog view and Admin Area ([#171](https://github.com/flatpressblog/flatpress/issues/171))
|
||||
- Contact form: Admin notification mail is now localized ([#205](https://github.com/flatpressblog/flatpress/issues/205))
|
||||
- Setup tries to determine local language automatically ([#197](https://github.com/flatpressblog/flatpress/issues/197), [#216](https://github.com/flatpressblog/flatpress/issues/216), [#262](https://github.com/flatpressblog/flatpress/issues/262))
|
||||
- The HTML of the installer now has a lang attribute in the html start tag to specify the language.
|
||||
|
||||
## Bugfixes
|
||||
- Plugin management page: Removed empty warning messages box
|
||||
@ -93,6 +103,7 @@
|
||||
- Possible XSS in comments prevented ([#186](https://github.com/flatpressblog/flatpress/issues/186))
|
||||
- Possible CSRFs in Admin Area prevented ([#64](https://github.com/flatpressblog/flatpress/issues/64))
|
||||
- Possible XSS in FlatPress Installer prevented ([#220](https://github.com/flatpressblog/flatpress/issues/220))
|
||||
- Write permission for others removed by default ([#173](https://github.com/flatpressblog/flatpress/issues/173))
|
||||
|
||||
# 2021-06-19: [FlatPress 1.2.1](https://github.com/flatpressblog/flatpress/releases/tag/1.2.1)
|
||||
## Bugfixes
|
||||
|
@ -4,13 +4,13 @@ FlatPress wouldn't be the great blogging system it is without the help of many v
|
||||
If you think someone's missing here, please let us know.
|
||||
|
||||
## The team
|
||||
FlatPress was initially developed by [Edoardo Vacchi (NoWhereMan)](https://github.com/evacchi "github.com/evacchi"). Edoardo was supported by [Hydra](http://hydra.clans.it/ "hydra.clans.it"), [drudo](https://drudotec.wordpress.com/ "drudotec.wordpress.com"), giulio, [alcor](http://alcor.altervista.org/ "alcor.altervista.org"), and [Tychondriax](http://tychondriax.altervista.org/blog/ "tychondriax.altervista.org").<br>
|
||||
FlatPress was initially developed by [Edoardo Vacchi (NoWhereMan)](https://github.com/evacchi "github.com/evacchi"). Edoardo was supported by Hydra, [drudo](https://drudotec.wordpress.com/ "drudotec.wordpress.com"), giulio, alcor, and Tychondriax.<br>
|
||||
<br>
|
||||
Since 2018, FlatPress is taken care of by [Arvid Zimmermann](https://github.com/azett "github.com/azett").
|
||||
|
||||
## Coding
|
||||
- Piero VDFN introduced the plugins Comment Center, jQuery, and LightBox2.
|
||||
- [Fabrix.xm](https://kirgroup.com/) contributed the Media Manager and Last Comments Admin.
|
||||
- Fabrix.xm contributed the Media Manager and Last Comments Admin.
|
||||
- The SEO Meta Tag Info plugin was built by Don Prince.
|
||||
- [Matthias Mauch](http://www.aadmm.org/)'s [FP-Patch](http://www.aadmm.org/fp-patch/) initially brought FlatPress to PHP 7. Also, he regularly tests FlatPress against new PHP versions.
|
||||
- The XML sitemap for search engines was [initially introduced](https://www.igorkromin.net/index.php/2013/02/18/adding-a-google-compatible-sitemap-to-flatpress/) by [Igor Kromin](https://www.igorkromin.net/).
|
||||
|
@ -18,8 +18,8 @@
|
||||
define('DUMB_MODE_ENABLED', false);
|
||||
// default file permissions
|
||||
// change file to 644 and dir to 755 if your webserver "complains"
|
||||
define('FILE_PERMISSIONS', 0777);
|
||||
define('DIR_PERMISSIONS', 0777);
|
||||
define('FILE_PERMISSIONS', 0775);
|
||||
define('DIR_PERMISSIONS', 0775);
|
||||
|
||||
// first some webserver setup...
|
||||
|
||||
@ -36,10 +36,10 @@ define('ABS_PATH', dirname(__FILE__) . '/');
|
||||
define('FP_DEFAULTS', 'fp-defaults/');
|
||||
|
||||
// all writable directories go here.
|
||||
define('FP_CONTENT', 'fp-content/'); // must be chmodded to 0777
|
||||
define('FP_CONTENT', 'fp-content/'); // must be chmodded to 0775
|
||||
|
||||
// blog configurations files
|
||||
define('CONFIG_DIR', FP_CONTENT . 'config/'); // must be chmodded to 0777
|
||||
define('CONFIG_DIR', FP_CONTENT . 'config/'); // must be chmodded to 0775
|
||||
define('CONFIG_FILE', CONFIG_DIR . 'settings.conf.php');
|
||||
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ $fp_config = array(
|
||||
'dateformat' => '%A, %B %e, %Y',
|
||||
'dateformatshort' => '%Y-%m-%d',
|
||||
'charset' => 'utf-8',
|
||||
'lang' => LANG_DEFAULT . $browserLang
|
||||
'lang' => LANG_DEFAULT
|
||||
),
|
||||
'plugins' => array(
|
||||
'blockparser' => array(
|
||||
|
@ -2,7 +2,7 @@
|
||||
/**
|
||||
* Get the language code from the browser
|
||||
*
|
||||
* @param array Allowed Languages "array('cs-cz','de-de','en-us','it-it','ja-jp','nl-nl','pt-br','sl-si')"
|
||||
* @param array Allowed Languages "array('cs-cz','de-de','en-us','es-es',fr-fr','el-gr','it-it','ja-jp','nl-nl','pt-br','sl-si')"
|
||||
* @param string Default language
|
||||
* @param string Language string from HTTP-Header
|
||||
* @param bool Strict-Mode
|
||||
@ -60,6 +60,6 @@ function getBrowserLanguage($arrAllowedLanguages, $strDefaultLanguage, $strLangV
|
||||
|
||||
// Only enter another language abbreviation here, if the language files are available for FlatPress, the plugins, the admin area and for the setup!
|
||||
// accept the following languages, otherwise fall back to "en-us"
|
||||
$browserLang = getBrowserLanguage(array('cs-cz', 'de-de', 'en-us', 'it-it', 'ja-jp', 'nl-nl', 'pt-br', 'sl-si'), 'en-us');
|
||||
$browserLang = getBrowserLanguage(array('cs-cz', 'de-de', 'en-us', 'es-es', 'fr-fr', 'el-gr', 'it-it', 'ja-jp', 'nl-nl', 'pt-br', 'sl-si'), 'en-us');
|
||||
|
||||
?>
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Zjistit aktualizace',
|
||||
|
||||
'chmod_info' => "Následující oprávnění <strong>nemůžou být</strong>
|
||||
resetované na 0777; pravděpodobně vlastník souborů není stejná osoba jako vlastník webu. Případně můžete ignorovat toto oznámení.",
|
||||
resetované na 0775; pravděpodobně vlastník souborů není stejná osoba jako vlastník webu. Případně můžete ignorovat toto oznámení.",
|
||||
|
||||
);
|
||||
|
||||
|
@ -12,7 +12,7 @@ $lang ['admin'] ['maintain'] ['default'] = array(
|
||||
'opt5' => 'Prüfe auf neue Versionen',
|
||||
|
||||
'chmod_info' => "Die Dateizugriffsrechte <strong>konnten nicht</strong>
|
||||
auf die Default Werte von 0777 zurückgesetzt werden.
|
||||
auf die Default Werte von 0775 zurückgesetzt werden.
|
||||
Normalerweise kann man diesen Hinweis ignorieren."
|
||||
);
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Έλεγχος για αναβαθμίσεις',
|
||||
|
||||
'chmod_info' => "Τα ακόλουθα δικαιώματα αρχείων <strong>δεν μπόρεσαν</strong>
|
||||
να επανέλθουν σε 0777; πιθανότατα ο ιδιοκτήτης των αρχείων δεν είναι ο ίδιος με τον ιδιοκτήτη του διακομιστή. Συνήθως αυτή η ειδοποίηση μπορεί να αγνοηθεί.",
|
||||
να επανέλθουν σε 0775; πιθανότατα ο ιδιοκτήτης των αρχείων δεν είναι ο ίδιος με τον ιδιοκτήτη του διακομιστή. Συνήθως αυτή η ειδοποίηση μπορεί να αγνοηθεί.",
|
||||
|
||||
);
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Check for updates',
|
||||
|
||||
'chmod_info' => "The following file permissions <strong>could not</strong>
|
||||
be reset to 0777; probably file owner is not the same as the
|
||||
be reset to 0775; probably file owner is not the same as the
|
||||
webserver's. Usually you can ignore this notice.",
|
||||
|
||||
);
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Buscar actualizaciones',
|
||||
|
||||
'chmod_info' => "Los siguientes permisos de archivo <strong>no pudieron</strong>
|
||||
ser reiniciados a 0777; probablemente el propietario del archivo no sea el mismo que el
|
||||
ser reiniciados a 0775; probablemente el propietario del archivo no sea el mismo que el
|
||||
del servidor web. Por lo general, puede ignorar este aviso.",
|
||||
|
||||
);
|
||||
|
@ -13,7 +13,7 @@
|
||||
'opt5' => 'Vérifier les mises à jour',
|
||||
|
||||
'chmod_info' => "Les permissions de fichiers (chmod) <strong>ne sont peut-être pas</strong>
|
||||
à 0777; propriétaire du fichier peut-être différent du serveur web.",
|
||||
à 0775; propriétaire du fichier peut-être différent du serveur web.",
|
||||
|
||||
);
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Controllo aggiornamenti',
|
||||
|
||||
'chmod_info' => "I seguenti permessi dei file <strong>non possono</strong>
|
||||
essere ripristinati a 0777; probabilmente il proprietario non è lo stesso del
|
||||
essere ripristinati a 0775; probabilmente il proprietario non è lo stesso del
|
||||
server web. Di solito puoi ignorare questo avviso.",
|
||||
|
||||
);
|
||||
|
@ -14,7 +14,7 @@
|
||||
'opt4' => 'PHP情報を表示します',
|
||||
'opt5' => 'アップデートをチェックします',
|
||||
|
||||
'chmod_info' => "次のファイルのパーミッションを 0777 にリセット<strong>できません</strong>
|
||||
'chmod_info' => "次のファイルのパーミッションを 0775 にリセット<strong>できません</strong>
|
||||
; おそらく、ファイルの所有権者とウェブサーバの権限が異なるのでしょう。
|
||||
でも通常、この通知を無視することができます。",
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
'opt5' => 'Controleren op updates',
|
||||
|
||||
'chmod_info' => "De volgende bestandsmachtigingen <strong>kan niet</strong>
|
||||
worden teruggezet naar 0777; waarschijnlijk is de bestandseigenaar niet hetzelfde als de
|
||||
worden teruggezet naar 0775; waarschijnlijk is de bestandseigenaar niet hetzelfde als de
|
||||
webserver's. Meestal kunt u deze kennisgeving negeren.",
|
||||
|
||||
);
|
||||
|
@ -13,7 +13,7 @@
|
||||
'opt4' => 'Mostre as informações sobre o PHP',
|
||||
'opt5' => 'Procure atualizações',
|
||||
|
||||
'chmod_info' => "As seguintes permissões de arquivo <strong>não puderam</strong> ser redefinidas para 0777; provavelmente o proprietário do arquivo não é o mesmo do servidor da web. Geralmente você pode ignorar este aviso.",
|
||||
'chmod_info' => "As seguintes permissões de arquivo <strong>não puderam</strong> ser redefinidas para 0775; provavelmente o proprietário do arquivo não é o mesmo do servidor da web. Geralmente você pode ignorar este aviso.",
|
||||
|
||||
);
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
'opt5' => 'Preveri posodobitve',
|
||||
|
||||
'chmod_info' => "Naslednja dovoljenja za datoteke <strong>ni mogoče</strong>
|
||||
povrniti na 0777; verjetno lastnik datoteke ni isti kot
|
||||
povrniti na 0775; verjetno lastnik datoteke ni isti kot
|
||||
spletne strežnik. Običajno lahko to obvestilo prezrete.",
|
||||
);
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.9 KiB |
@ -2,9 +2,13 @@
|
||||
/*
|
||||
* LangId: Czech
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => '- Nastavení aplikace'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Setup je uzamčen',
|
||||
'descr' => 'Vypadá to, že jste již spustili instalaci, protože
|
||||
'descr' => 'Vypadá to, že jste již spustili instalaci, protože
|
||||
jsme našli zamčený soubor <code>%s</code>.
|
||||
|
||||
Pokud chcete znovu spustit setup, prosím smažte nejdříve tento soubor.
|
||||
@ -40,7 +44,7 @@ $lang ['step1'] = array(
|
||||
'head' => 'Vítejte ve FlatPressu!',
|
||||
'descr' => 'Děkujeme, že jste si vybrali <strong>FlatPress</strong>.
|
||||
|
||||
Než se začnete bavit na svém zbrusu novém blogu, položíme Vám několik otázek.
|
||||
Než se začnete bavit na svém zbrusu novém blogu, položíme Vám několik otázek.
|
||||
|
||||
Nebojte se, nezabere to moc času.',
|
||||
'descrl1' => 'Vyberte Váš jazyk.',
|
||||
@ -50,7 +54,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
Chcete-li nainstalovat jazykovou sadu, nahrajte obsah balíčku do <code>flatpress/</code>, vše přepište a <a href="./setup.php">spusťte znovu instalaci.</a>.',
|
||||
'descrw' => '<strong>Jediná věc</strong> kterou FlatPress potřebuje k práci, je <em>zapisovatelný</em> adresář.
|
||||
'descrw' => '<strong>Jediná věc</strong> kterou FlatPress potřebuje k práci, je <em>zapisovatelný</em> adresář.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -131,7 +135,7 @@ Statické stránky jsou užitečné při vytváření stránek s obecnými infor
|
||||
|
||||
FlatPress je velmi přizpůsobitelný a podporuje [url=https://wiki.flatpress.org/doc:plugins:standard]pluginy[/url] pro rozšíření jeho výkonu. BBCode je jeden z pluginů.
|
||||
|
||||
Vytvořili jsme další ukázkový obsah, abychom vám ukázali některé skryté funkce a vychytávky FlatPressu :)
|
||||
Vytvořili jsme další ukázkový obsah, abychom vám ukázali některé skryté funkce a vychytávky FlatPressu :)
|
||||
Můžete zde najít dvě statické stránky připravené pro váš obsah:
|
||||
[list]
|
||||
[*][url=static.php?page=about]O mně[/url]
|
||||
@ -144,7 +148,7 @@ Pomocí prvku \'gallery\' můžete dokonce návštěvníkům prezentovat celé g
|
||||
|
||||
[h4]Widgety[/h4]
|
||||
|
||||
V postranním panelu není jediný pevný prvek. Všechny prvky jsou zcela polohovatelné a většina z nich je také přizpůsobitelná.
|
||||
V postranním panelu není jediný pevný prvek. Všechny prvky jsou zcela polohovatelné a většina z nich je také přizpůsobitelná.
|
||||
Tyto prvky se nazývají widgety. Další informace o [url=https://wiki.flatpress.org/doc:tips:widgets]widgetech[/url] a několik tipů, jak získat pěkné efekty, najdete na [url=https://wiki.flatpress.org/]wiki[/url].
|
||||
|
||||
|
||||
@ -162,7 +166,8 @@ S tématem FlatPress-Leggero máte k dispozici 3 šablony stylů - od klasickýc
|
||||
[*]Navštivte [url=https://forum.flatpress.org/]fórum[/url] kde vám poradíme a pomůžeme
|
||||
[*]Stáhněte si [b]šablony vzhledu[/b] od [url=https://wiki.flatpress.org/res:themes]našich uživatelů[/url]!
|
||||
[*]Podívejte se na [url=https://wiki.flatpress.org/res:plugins]neoficiální pluginy[/url]
|
||||
[*]Stáhněte si [url=https://wiki.flatpress.org/res:language]překlady[/url] do dalších jazyků
|
||||
[*]Stáhněte si [url=https://wiki.flatpress.org/res:language]překlady[/url] do dalších jazyků
|
||||
[*]FlatPress můžete sledovat také na [url=https://twitter.com/FlatPress]X (Twitter)[/url] a [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
|
@ -2,24 +2,28 @@
|
||||
/*
|
||||
* LangId: Deutsch
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Einrichtung'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Installation ist gesperrt',
|
||||
'descr' => 'Sieht so aus, als würde die Installation bereits laufen: Die Sperr-Datei <code>%s</code> existiert bereits.
|
||||
'head' => 'Die Einrichtung ist gesperrt',
|
||||
'descr' => 'Sieht so aus, als würde die Einrichtung bereits laufen: Die Sperr-Datei <code>%s</code> existiert bereits.
|
||||
|
||||
Wenn du die Installation noch einmal neu starten möchtest, lösche bitte zuerst diese Datei.
|
||||
Wenn du die Einrichtung noch einmal neu starten möchtest, lösche bitte zuerst diese Datei.
|
||||
|
||||
<strong >Achtung!</strong> Die Datei <code>setup.php</code> und das Verzeichnis <code>setup/</code> sollten nicht auf dem Server bleiben, bitte lösche sie nach Abschluss der Installation!
|
||||
<strong >Achtung!</strong> Die Datei <code>setup.php</code> und das Verzeichnis <code>setup/</code> sollten nicht auf dem Server bleiben. Bitte lösche sie nach Abschluss der Einrichtung!
|
||||
|
||||
<ul>
|
||||
<li><a href="%s">Ok, bring mich zu meinem Blog</a></li>
|
||||
<li><a href="%s">Ich habe die Datei gelöscht, Installation neu starten</a></li>
|
||||
<li><a href="%s">Ich habe die Datei gelöscht. Einrichtung neu starten.</a></li>
|
||||
</ul>'
|
||||
);
|
||||
|
||||
$lang ['err'] = array(
|
||||
'setuprun1' => 'Die Installation läuft.',
|
||||
'setuprun1' => 'Die Einrichtung läuft.',
|
||||
|
||||
'setuprun2' => 'Die Installation läuft bereits: Wenn du der Administrator bist, kannst du ',
|
||||
'setuprun2' => 'Die Einrichtung läuft bereits: Wenn du der Administrator bist, kannst du ',
|
||||
'setuprun3' => ' löschen, um neu zu starten.',
|
||||
'writeerror' => 'Fehler beim Schreiben',
|
||||
|
||||
@ -31,7 +35,7 @@ $lang ['err'] = array(
|
||||
'fppwd2' => 'Die Passwörter stimmen nicht überein.',
|
||||
'email' => ' ist keine gültige E-Mail Adresse.',
|
||||
'www' => ' ist keine gültige URL.',
|
||||
'error' => '<p><big>Fehler!</big>
|
||||
'error' => '<p><big>Fehler!</big>
|
||||
Bei der Bearbeitung des Formulars sind die folgenden Fehler aufgetreten:</p><ul>'
|
||||
);
|
||||
|
||||
@ -49,7 +53,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
Für die Installation eines Sprachpakets lade dessen Inhalt einfach in dein <code>flatpress/</code>-Verzeichnis. Dann <a href="./setup.php">starte die Installation erneut</a>.',
|
||||
'descrw' => '<strong>Das Einzige</strong>, was du für den Betrieb von FlatPress benötigst, ist ein <em>beschreibbares</em> Verzeichnis.
|
||||
'descrw' => '<strong>Das Einzige</strong>, was du für den Betrieb von FlatPress benötigst, ist ein <em>beschreibbares</em> Verzeichnis.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -66,9 +70,9 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Fertig',
|
||||
'descr' => '<strong>Das war\'s schon.</strong>
|
||||
'descr' => '<strong>Das war\'s schon.</strong>
|
||||
|
||||
Nicht zu glauben?
|
||||
Nicht zu glauben?
|
||||
|
||||
Nein, tatsächlich <strong>geht es jetzt erst richtig los</strong>! Aber das Bloggen ist nun <em>deine</em> Aufgabe ;)
|
||||
|
||||
@ -98,18 +102,18 @@ $lang ['samplecontent'] ['menu'] ['content'] = '[list]
|
||||
[/list]';
|
||||
|
||||
$lang ['samplecontent'] ['entry'] ['subject'] = 'Willkommen bei FlatPress!';
|
||||
$lang ['samplecontent'] ['entry'] ['content'] = 'Das ist ein Beispiel-Beitrag, er zeigt dir einige Funktionen von [url=https://www.flatpress.org]FlatPress[/url].
|
||||
$lang ['samplecontent'] ['entry'] ['content'] = 'Das ist ein Beispiel-Beitrag. Er zeigt dir einige Funktionen von [url=https://www.flatpress.org]FlatPress[/url].
|
||||
|
||||
Das "more"-Element erlaubt es dir, vom Anriss des Beitrags zum kompletten Artikel zu springen.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Textformatierung[/h4]
|
||||
|
||||
In FlatPress formatierst du deine Inhalte mit [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Mit BBCode geht das sehr einfach. Beispiele gefällig? [b] macht [b]fetten Text[/b], [i] [i]kursiven[/i].
|
||||
|
||||
[quote]Mit dem [b]quote[/b]-Element lassen sich Zitate auszeichnen. [/quote]
|
||||
[quote]Mit dem [b]quote[/b]-Element lassen sich Zitate auszeichnen.[/quote]
|
||||
|
||||
[code]Das \'code\'-Element erzeugt einen Abschnitt mit fester Zeichenbreite.
|
||||
Es kann auch
|
||||
@ -165,7 +169,7 @@ Du möchtest gern mehr über FlatPress wissen?
|
||||
[*]Besuche das [url=https://forum.flatpress.org/]Supportforum[/url] für Unterstützung und den Kontakt zu anderen FlatPress-Benutzern.
|
||||
[*]Lade dir großartige von der Community erstellte [b]Themes[/b] aus dem [url=https://wiki.flatpress.org/res:themes]Wiki[/url] herunter.
|
||||
[*]Dort gibt es auch tolle [url=https://wiki.flatpress.org/res:plugins]Plugins[/url].
|
||||
[*]FlatPress kannst du auch [url=https://twitter.com/FlatPress]auf Twitter folgen[/url].
|
||||
[*]FlatPress kannst du auch auf [url=https://twitter.com/FlatPress]X (Twitter)[/url] und [url=https://fosstodon.org/@flatpress]Mastodon[/url] folgen.
|
||||
[/list]
|
||||
|
||||
|
||||
@ -184,7 +188,7 @@ Du möchtest gern mehr über FlatPress wissen?
|
||||
|
||||
[url=login.php]Logge dich ein[/url], um im [url=admin.php]Administrationsbereicht[/url] mit dem Bloggen zu beginnen.
|
||||
|
||||
Viel Spaß! :)
|
||||
Viel Spaß! :)
|
||||
|
||||
[i]Das [url=https://www.flatpress.org]FlatPress[/url]-Team[/i]
|
||||
|
||||
|
200
setup/lang/lang.el-gr.php
Normal file
200
setup/lang/lang.el-gr.php
Normal file
@ -0,0 +1,200 @@
|
||||
<?php
|
||||
/*
|
||||
* LangId: Greek
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Ρύθμιση'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Η ρύθμιση είναι κλειδωμένη',
|
||||
'descr' => 'Φαίνεται ότι η ρύθμιση τρέχει ήδη: Το αρχείο κλειδώματος <code>%s</code> υπάρχει ήδη.
|
||||
|
||||
Αν θέλετε να επανεκκινήσετε την εγκατάσταση, διαγράψτε πρώτα αυτό το αρχείο.
|
||||
|
||||
<strong >Προσοχή!</strong> Το αρχείο <code>setup.php</code> και ο κατάλογος <code>setup/</code> δεν πρέπει να παραμείνουν στον διακομιστή. Παρακαλούμε διαγράψτε τα μετά την ολοκλήρωση της εγκατάστασης!
|
||||
|
||||
<ul>
|
||||
<li><a href="%s">Εντάξει, πήγαινέ με στο blog μου</a></li>
|
||||
<li><a href="%s">Έχω διαγράψει το αρχείο. Επανεκκίνηση της εγκατάστασης.</a></li>
|
||||
</ul>'
|
||||
);
|
||||
|
||||
$lang ['err'] = array(
|
||||
'setuprun1' => 'Η εγκατάσταση εκτελείται.',
|
||||
|
||||
'setuprun2' => 'Η εγκατάσταση εκτελείται ήδη: Εάν είστε διαχειριστής, μπορείτε να διαγράψετε το ',
|
||||
'setuprun3' => ' για επανεκκίνηση.',
|
||||
'writeerror' => 'Σφάλμα γραφής',
|
||||
|
||||
'fpuser1' => ' δεν είναι έγκυρος χρήστης.
|
||||
Το όνομα χρήστη πρέπει να είναι αλφαριθμητικό και δεν πρέπει να περιέχει κενά.',
|
||||
'fpuser2' => ' δεν είναι έγκυρος χρήστης.
|
||||
Το όνομα χρήστη μπορεί να περιέχει μόνο γράμματα, αριθμούς και 1 υπογράμμιση.',
|
||||
'fppwd' => 'Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον 6 χαρακτήρες και όχι κενά.',
|
||||
'fppwd2' => 'Οι κωδικοί πρόσβασης δεν ταιριάζουν.',
|
||||
'email' => ' δεν είναι έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.',
|
||||
'www' => ' δεν είναι έγκυρη διεύθυνση URL.',
|
||||
'error' => '<p><big>Σφάλμα!</big>
|
||||
Κατά την επεξεργασία της φόρμας προέκυψαν τα ακόλουθα σφάλματα:</p><ul>'
|
||||
);
|
||||
|
||||
$lang ['step1'] = array(
|
||||
'head' => 'Καλώς ήρθατε στην FlatPress!',
|
||||
'descr' => 'Σας ευχαριστούμε που επιλέξατε την <strong>FlatPress</strong>.
|
||||
|
||||
Πριν ξεκινήσετε με το ολοκαίνουργιο ιστολόγιό σας, πρέπει να καθορίσετε μερικά μικρά πράγματα.
|
||||
|
||||
Αλλά μην ανησυχείτε, δεν θα πάρει πολύ χρόνο!',
|
||||
'descrl1' => 'Επιλέξτε τη γλώσσα σας.',
|
||||
'descrl2' => '<a class="hint" onclick="toggleinfo();">Δεν υπάρχει στη λίστα;</a>',
|
||||
'descrlang' => 'Αν δεν βρείτε τη γλώσσα σας στη λίστα, δείτε αν υπάρχει <a href="https://wiki.flatpress.org/res:language">κατάλληλο πακέτο γλώσσας</a>:
|
||||
|
||||
<pre>%s</pre>
|
||||
|
||||
Για να εγκαταστήσετε ένα γλωσσικό πακέτο, απλά φορτώστε τα περιεχόμενά του στον κατάλογο <code>flatpress/</code>. Στη συνέχεια, κάντε <a href="./setup.php">επανεκκίνηση της εγκατάστασης</a>.',
|
||||
'descrw' => '<strong>Το μόνο πράγμα</strong> που χρειάζεστε για να τρέξετε το FlatPress είναι ένας <em>εγγράψιμος</em> κατάλογος.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
|
||||
$lang ['step2'] = array(
|
||||
'head' => 'Δημιουργία χρήστη',
|
||||
'descr' => 'Σχεδόν έτοιμο! Απομένουν μόνο οι ακόλουθες λεπτομέρειες:',
|
||||
'fpuser' => 'Όνομα χρήστη',
|
||||
'fppwd' => 'Κωδικός πρόσβασης',
|
||||
'fppwd2' => 'Κωδικός πρόσβασης (επανάληψη)',
|
||||
'www' => 'Αρχική σελίδα',
|
||||
'email' => 'Ηλεκτρονικό ταχυδρομείο'
|
||||
);
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Έτοιμο',
|
||||
'descr' => '<strong>Αυτό ήταν όλο.</strong>
|
||||
|
||||
Δεν πρέπει να γίνει πιστευτή?
|
||||
|
||||
Όχι, στην πραγματικότητα <strong>μόλις αρχίζει</strong>! Αλλά το blogging είναι πλέον <em>η δουλειά σας</em> ;)
|
||||
|
||||
<p style="color:#cc0000">Προσοχή: Για μεγαλύτερη άνεση και ασφάλεια, συνιστούμε να διαμορφώσετε τις οδηγίες για τον διακομιστή σας στην περιοχή διαχείρισης χρησιμοποιώντας το πρόσθετο PrettyURL.</p>
|
||||
|
||||
<ul>
|
||||
<li>Στην <a href="%s">κυρίως σελίδα του ιστολογίου σας</a></li>
|
||||
<li>Καλή διασκέδαση στο blogging! <a href="%s">Συνδεθείτε τώρα</a></li>
|
||||
<li>Θέλετε να μας επαινέσετε ή να μας επικρίνετε? Επισκεφθείτε μας στη διεύθυνση <a href="https://www.flatpress.org/">FlatPress.org</a>!</li>
|
||||
</ul>
|
||||
|
||||
Σας ευχαριστούμε που επιλέξατε την FlatPress!'
|
||||
);
|
||||
|
||||
$lang ['buttonbar'] = array(
|
||||
'next' => 'Περαιτέρω >'
|
||||
);
|
||||
|
||||
$lang ['samplecontent'] = array();
|
||||
|
||||
$lang ['samplecontent'] ['menu'] ['subject'] = 'Μενού';
|
||||
$lang ['samplecontent'] ['menu'] ['content'] = '[list]
|
||||
[*][url=?]Αρχική σελίδα[/url]
|
||||
[*][url=?paged=1]Blog[/url]
|
||||
[*][url=static.php?page=about]Σχετικά με το[/url]
|
||||
[*][url=contact.php]Επικοινωνία[/url]
|
||||
[/list]';
|
||||
|
||||
$lang ['samplecontent'] ['entry'] ['subject'] = 'Καλώς ήρθατε στην FlatPress!';
|
||||
$lang ['samplecontent'] ['entry'] ['content'] = 'Αυτό είναι ένα δείγμα ανάρτησης. Σας δείχνει μερικές από τις λειτουργίες του [url=https://www.flatpress.org]FlatPress[/url].
|
||||
|
||||
Το στοιχείο "more" σας επιτρέπει να μεταβείτε από το περίγραμμα του άρθρου στο πλήρες άρθρο.
|
||||
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Μορφοποίηση κειμένου[/h4]
|
||||
|
||||
Στο FlatPress μορφοποιείτε το περιεχόμενό σας με [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Αυτό είναι πολύ εύκολο με το BBCode. Θέλετε μερικά παραδείγματα; [b] κάνει [b]έντονο κείμενο[/b], [i] [i]πλάγιο[/i].
|
||||
|
||||
[quote]Το στοιχείο [b]quote[/b] μπορεί να χρησιμοποιηθεί για τη σήμανση εισαγωγικών.[/quote]
|
||||
|
||||
[code]Το στοιχείο \'code\' δημιουργεί ένα τμήμα με σταθερό πλάτος χαρακτήρων.
|
||||
Μπορεί επίσης να
|
||||
να αναπαριστά εσοχές.[/code]
|
||||
|
||||
Τα στοιχεία \'img\' (εικόνες) και \'url\' (σύνδεσμοι) έχουν ειδικές επιλογές. Μπορείτε να μάθετε περισσότερα σχετικά με αυτό στο [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url].
|
||||
|
||||
|
||||
[h4]Καταχωρήσεις (άρθρα ιστολογίου) και στατικές σελίδες[/h4]
|
||||
|
||||
Αυτή είναι μια καταχώρηση, ενώ η [url=static.php?page=about]Σχετικά με το[/url] είναι μια [b]στατική σελίδα[/b]. Μια στατική σελίδα, σε αντίθεση με μια καταχώρηση, δεν μπορεί να σχολιαστεί και δεν εμφανίζεται στις λίστες των καταχωρήσεων του ιστολογίου.
|
||||
|
||||
Οι στατικές σελίδες είναι χρήσιμες για γενικές πληροφορίες, για παράδειγμα μια σταθερή αρχική σελίδα ή το αποτύπωμα. Θα μπορούσατε ακόμη και να απαρνηθείτε εντελώς τις λειτουργίες του ιστολογίου και να χρησιμοποιήσετε το FlatPress για να δημιουργήσετε έναν ιστότοπο με μόνο στατικές σελίδες.
|
||||
|
||||
Στην [url=admin.php]περιοχή διαχείρισης[/url] μπορείτε να δημιουργήσετε καταχωρήσεις και στατικές σελίδες - και να ορίσετε αν η αρχική σελίδα του ιστολογίου σας FlatPress θα είναι μια στατική σελίδα ή η επισκόπηση του ιστολογίου.
|
||||
|
||||
|
||||
[h4]Plugins[/h4]
|
||||
|
||||
Μπορείτε να προσαρμόσετε εκτενώς το FlatPress στις ανάγκες σας επεκτείνοντάς το με [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. Το BBCode, για παράδειγμα, είναι ένα plugin.
|
||||
|
||||
Εδώ είναι μερικά ακόμα δείγματα περιεχομένου που σας δείχνουν ακόμα περισσότερα χαρακτηριστικά του FlatPress :)
|
||||
|
||||
Δύο στατικές σελίδες είναι ήδη έτοιμες για εσάς:
|
||||
[list]
|
||||
[*][url=static.php?page=about]Σχετικά με το[/url]
|
||||
[*][url=static.php?page=menu]Μενού[/url] (Το περιεχόμενο αυτής της στατικής σελίδας εμφανίζεται επίσης στην πλαϊνή μπάρα του ιστολογίου σας - αυτή είναι η μαγεία του [b]blockparser widget[/b]. Το [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] έχει πληροφορίες σχετικά με αυτό, και πολλά άλλα!)
|
||||
[/list]
|
||||
|
||||
Με το πρόσθετο [b]PhotoSwipe-Plugin[/b] μπορείτε τώρα να τοποθετήσετε τις εικόνες σας ακόμα πιο εύκολα, είτε ως float="left"- είτε ως float="right" ευθυγραμμισμένη μεμονωμένη εικόνα, που περιβάλλεται από το κείμενο.
|
||||
Μπορείτε ακόμη και να παρουσιάσετε ολόκληρες γκαλερί στους επισκέπτες σας με το στοιχείο \'gallery\'. Μπορείτε να μάθετε πόσο εύκολο είναι [url="https://wiki.flatpress.org/res:plugins:photoswipe"]εδώ[/url].
|
||||
|
||||
|
||||
[h4]Widgets[/h4]
|
||||
|
||||
Κανένα από τα στοιχεία στην πλαϊνή μπάρα του ιστολογίου σας δεν είναι σταθερό, μπορείτε να τα μετακινήσετε, να τα αφαιρέσετε και να προσθέσετε νέα στην περιοχή διαχείρισης.
|
||||
|
||||
Αυτά τα στοιχεία ονομάζονται [b]widgets[/b]. Φυσικά, το FlatPress Wiki έχει πολλές χρήσιμες πληροφορίες σχετικά με αυτό το θέμα [url=https://wiki.flatpress.org/doc:tips:widgets]επίσης[/url].
|
||||
|
||||
|
||||
[h4]Θέματα[/h4]
|
||||
|
||||
[gallery="images/Leggero-Themepreview/" width="140"]
|
||||
Με το θέμα FlatPress Leggero έχετε στη διάθεσή σας 3 πρότυπα στυλ - από κλασικό έως μοντέρνο. Αυτά τα πρότυπα είναι μια θαυμάσια αρχή για να δημιουργήσετε κάτι δικό σας.
|
||||
|
||||
[h4]Ακόμα περισσότερο[/h4]
|
||||
|
||||
Θα θέλατε να μάθετε περισσότερα για το FlatPress?
|
||||
|
||||
[list]
|
||||
[*]Υποστηρίξτε το έργο με μια [url=http://www.flatpress.org/home/static.php?page=donate]μικρή δωρεά[/url].
|
||||
[*]Στο [url=https://www.flatpress.org/?x]blog του έργου[/url] μπορείτε να μάθετε τι συμβαίνει αυτή τη στιγμή στο έργο FlatPress.
|
||||
[*]Επισκεφθείτε το [url=https://forum.flatpress.org/]Φόρουμ υποστήριξης[/url] για υποστήριξη και επικοινωνία με άλλους χρήστες του FlatPress.
|
||||
[*]Κατεβάστε σπουδαία θέματα [b]δημιουργημένα από την κοινότητα[/b] από το [url=https://wiki.flatpress.org/res:themes]Wiki[/url].
|
||||
[*]Υπάρχουν επίσης σπουδαία [url=https://wiki.flatpress.org/res:plugins]plugins[/url] εκεί.
|
||||
[*]Μπορείτε επίσης να ακολουθήσετε την FlatPress στα [url=https://twitter.com/FlatPress]X (Twitter)[/url] και [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Πώς μπορώ να υποστηρίξω το FlatPress?[/h4]
|
||||
|
||||
[list]
|
||||
[*][url=https://www.flatpress.org/contact/]Αναφέρετε[/url] σφάλματα που έχουν εμφανιστεί ή στείλτε μας προτάσεις για βελτίωση.
|
||||
[*]Οι προγραμματιστές είναι ευπρόσδεκτοι να μας υποστηρίξουν στο [url="https://github.com/flatpressblog/flatpress"]GitHub[/url].
|
||||
[*]Μεταφράστε το FlatPress και την τεκμηρίωσή του στη [url=https://wiki.flatpress.org/res:language]γλώσσα σας[/url].
|
||||
[*]Γίνετε μέλος της κοινότητας του FlatPress στο [url=https://forum.flatpress.org/]Φόρουμ υποστήριξης[/url].
|
||||
[*]Πείτε στον κόσμο πόσο σπουδαίο είναι το FlatPress! :)
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Λοιπόν, τι κάνουμε τώρα?[/h4]
|
||||
|
||||
[url=login.php]Συνδεθείτε[/url] για να ξεκινήσετε να γράφετε ιστολόγια στην [url=admin.php]Έκθεση διαχείρισης[/url].
|
||||
|
||||
Καλή διασκέδαση! :)
|
||||
|
||||
[i]Η ομάδα [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
';
|
||||
|
||||
$lang ['samplecontent'] ['about'] ['subject'] = 'Σχετικά με το';
|
||||
$lang ['samplecontent'] ['about'] ['content'] = "Γράψτε κάτι για τον εαυτό σας και αυτό το ιστολόγιο εδώ. ([url=admin.php?p=static&action=write&page=about]Δούλεψε με![/url])";
|
||||
|
||||
?>
|
@ -2,6 +2,10 @@
|
||||
/*
|
||||
* LangId: English
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Setup'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Setup has been locked',
|
||||
'descr' => 'It looks like you already run setup, because
|
||||
@ -21,7 +25,7 @@ $lang ['step1'] = array(
|
||||
'head' => 'Welcome to FlatPress!',
|
||||
'descr' => 'Thank you for choosing <strong>FlatPress</strong>.
|
||||
|
||||
Before you can start having fun with your brand new blog, we have to ask you a very few questions.
|
||||
Before you can start having fun with your brand new blog, we have to ask you a very few questions.
|
||||
|
||||
Don\'t worry, it won\'t take you long!',
|
||||
'descrl1' => 'Select your language.',
|
||||
@ -31,7 +35,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
To install the language pack, upload the content of the package in your <code>flatpress/</code>, and overwrite all, then <a href="./setup.php">restart this setup</a>.',
|
||||
'descrw' => 'The <strong>only thing</strong> you need for FlatPress to work is a <em>writable</em> directory.
|
||||
'descrw' => 'The <strong>only thing</strong> you need for FlatPress to work is a <em>writable</em> directory.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -48,9 +52,9 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Done',
|
||||
'descr' => '<strong>End of the story</strong>.
|
||||
'descr' => '<strong>End of the story</strong>.
|
||||
|
||||
Unbelievable?
|
||||
Unbelievable?
|
||||
|
||||
And you\'re right: <strong>the story has just begun</strong>, but <strong>writing is up to you</strong>!
|
||||
|
||||
@ -84,14 +88,14 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted
|
||||
|
||||
The more tag allows you to create a "jump" between an excerpt and the complete article.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Styling[/h4]
|
||||
|
||||
The default way to style and format your content is [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc.
|
||||
|
||||
[quote]There are also [b]quote[/b] blocks to display your favourite quotations. [/quote]
|
||||
[quote]There are also [b]quote[/b] blocks to display your favourite quotations.[/quote]
|
||||
|
||||
[code]And \'code\' displays your snippets in a monospaced fashion.
|
||||
It also supports
|
||||
@ -111,7 +115,7 @@ Static pages are useful to create general information pages. You can also make o
|
||||
|
||||
FlatPress is very customizable, and supports [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] to extend its power. BBCode is a plugin itself.
|
||||
|
||||
We have created some more sample content, to show you some of the FP well hidden functions and gems :)
|
||||
We have created some more sample content, to show you some of the FP well hidden functions and gems :)
|
||||
You can find two [b]static pages[/b] ready to accept your contents:
|
||||
[list]
|
||||
[*][url=static.php?page=about]About me[/url]
|
||||
@ -140,11 +144,12 @@ With the FlatPress-Leggero theme you have 3 style templates at your disposal - f
|
||||
Want to see more?
|
||||
|
||||
[list]
|
||||
[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world
|
||||
[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat
|
||||
[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world.
|
||||
[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat.
|
||||
[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]!
|
||||
[*]Check out the [url=https://wiki.flatpress.org/res:plugins]unofficial plugins[/url]
|
||||
[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language
|
||||
[*]Check out the [url=https://wiki.flatpress.org/res:plugins]plugins[/url].
|
||||
[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language.
|
||||
[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
@ -164,7 +169,7 @@ Want to see more?
|
||||
|
||||
Now you can [url=login.php]Login[/url] to get to the [url=admin.php]Administration Area[/url] and start posting!
|
||||
|
||||
Have fun! :)
|
||||
Have fun! :)
|
||||
|
||||
[i]The [url=https://www.flatpress.org]FlatPress[/url] Team[/i]
|
||||
|
||||
|
200
setup/lang/lang.es-es.php
Normal file
200
setup/lang/lang.es-es.php
Normal file
@ -0,0 +1,200 @@
|
||||
<?php
|
||||
/*
|
||||
* LangId: Spanish
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Configuración'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'La instalación está bloqueada',
|
||||
'descr' => 'Parece que la instalación ya está en marcha: El fichero de bloqueo <code>%s</code> ya existe.
|
||||
|
||||
Si desea reiniciar la instalación, borre primero este fichero.
|
||||
|
||||
<strong >Atención!</strong> El fichero <code>setup.php</code> y el directorio <code>setup/</code> no deben permanecer en el servidor. Por favor, elimínelos después de completar la instalación.
|
||||
|
||||
<ul>
|
||||
<li><a href="%s">Ok, llévame a mi blog</a></li>
|
||||
<li><a href="%s">He borrado el archivo. Reinicie la instalación.</a></li>
|
||||
</ul>'
|
||||
);
|
||||
|
||||
$lang ['err'] = array(
|
||||
'setuprun1' => 'La instalación está en marcha.',
|
||||
|
||||
'setuprun2' => 'La instalación ya está en marcha: Si eres el administrador, puedes borrar ',
|
||||
'setuprun3' => ' para reiniciar.',
|
||||
'writeerror' => 'Error de escritura',
|
||||
|
||||
'fpuser1' => ' no es un usuario válido.
|
||||
El nombre de usuario debe ser alfanumérico y no debe contener espacios.',
|
||||
'fpuser2' => ' no es un usuario válido.
|
||||
El nombre de usuario sólo puede contener letras, números y un guión bajo.',
|
||||
'fppwd' => 'La contraseña debe contener al menos 6 caracteres y ningún espacio.',
|
||||
'fppwd2' => 'Las contraseñas no coinciden.',
|
||||
'email' => ' no es una dirección de correo electrónico válida.',
|
||||
'www' => ' no es una URL válida.',
|
||||
'error' => '<p><big>Error!</big>
|
||||
Se han producido los siguientes errores al procesar el formulario:</p><ul>'
|
||||
);
|
||||
|
||||
$lang ['step1'] = array(
|
||||
'head' => 'Bienvenido a FlatPress!',
|
||||
'descr' => 'Gracias por haber elegido el <strong>FlatPress</strong>.
|
||||
|
||||
Antes de empezar con su flamante blog, debe concretar algunas pequeñas cosas.
|
||||
|
||||
Pero no se preocupe, no tardará mucho.',
|
||||
'descrl1' => 'Elige tu idioma.',
|
||||
'descrl2' => '<a class="hint" onclick="toggleinfo();">No está en la lista?</a>',
|
||||
'descrlang' => 'Si no encuentras tu idioma en la lista, comprueba si existe <a href="https://wiki.flatpress.org/res:language">un paquete de idiomas adecuado</a> :
|
||||
|
||||
<pre>%s</pre>
|
||||
|
||||
Para instalar un paquete de idioma, simplemente carga su contenido en tu directorio <code>flatpress/</code>. A continuación, <a href="./setup.php">inicie de nuevo la instalación</a>.',
|
||||
'descrw' => '<strong>Lo único</strong> que necesita para ejecutar FlatPress es un directorio <em>escribible</em>.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
|
||||
$lang ['step2'] = array(
|
||||
'head' => 'Crear usuario',
|
||||
'descr' => 'Casi listo! Sólo quedan los siguientes detalles:',
|
||||
'fpuser' => 'Nombre de usuario',
|
||||
'fppwd' => 'Contraseña',
|
||||
'fppwd2' => 'Contraseña (Repetición)',
|
||||
'www' => 'Página de inicio',
|
||||
'email' => 'Correo electrónico'
|
||||
);
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Fertig',
|
||||
'descr' => '<strong>Eso fue todo.</strong>
|
||||
|
||||
No es creíble?
|
||||
|
||||
No, en <strong>realidad acaba de empezar</strong>! Pero bloguear es <em>tu</em> trabajo ahora ;)
|
||||
|
||||
<p style="color:#cc0000">Atención: Para mayor comodidad y seguridad, le recomendamos configurar las instrucciones para su servidor en el área de administración utilizando el plugin PrettyURL.</p>
|
||||
|
||||
<ul>
|
||||
<li>A la <a href="%s">página principal de su blog</a></li>
|
||||
<li>Diviértete blogueando! <a href="%s">Conectarse ahora</a></li>
|
||||
<li>Quiere alabar o criticar? Visítenos en el <a href="https://www.flatpress.org/">FlatPress.org</a>!</li>
|
||||
</ul>
|
||||
|
||||
Gracias por elegir FlatPress!'
|
||||
);
|
||||
|
||||
$lang ['buttonbar'] = array(
|
||||
'next' => 'siguiente paso >'
|
||||
);
|
||||
|
||||
$lang ['samplecontent'] = array();
|
||||
|
||||
$lang ['samplecontent'] ['menu'] ['subject'] = 'Menú';
|
||||
$lang ['samplecontent'] ['menu'] ['content'] = '[list]
|
||||
[*][url=?]Página de inicio[/url]
|
||||
[*][url=?paged=1]Blog[/url]
|
||||
[*][url=static.php?page=about]Acerca de[/url]
|
||||
[*][url=contact.php]Contacto[/url]
|
||||
[/list]';
|
||||
|
||||
$lang ['samplecontent'] ['entry'] ['subject'] = 'Bienvenido a FlatPress!';
|
||||
$lang ['samplecontent'] ['entry'] ['content'] = 'Esta es una entrada de ejemplo. Esto muestra algunas de las funciones del [url=https://www.flatpress.org]FlatPress[/url].
|
||||
|
||||
El elemento "more" le permite saltar del esquema del artículo al artículo completo.
|
||||
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Formato de texto[/h4]
|
||||
|
||||
En FlatPress usted formatea su contenido con [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Esto es muy fácil con BBCode. Ejemplos? [b] hace [b]texto en negrita[/b], [i] [i]cursiva[/i].
|
||||
|
||||
[quote]El elemento [b]quote[/b] puede utilizarse para marcar citas. [/quote]
|
||||
|
||||
[code]El elemento \'code\' crea una sección con un ancho de carácter fijo.
|
||||
También puede
|
||||
representar hendiduras.[/code]
|
||||
|
||||
Los elementos \'img\' (imágenes) y \'url\' (Links) tienen opciones especiales. Encontrará más información al respecto en la [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url].
|
||||
|
||||
|
||||
[h4]Entradas (artículos de blog) y páginas estáticas[/h4]
|
||||
|
||||
Se trata de una entrada, mientras que [url=static.php?page=about]Acerca de[/url] es una [b]página estática[/b]. Una página estática, a diferencia de una entrada, no puede comentarse y no aparece en los listados de entradas del blog.
|
||||
|
||||
Las páginas estáticas son útiles para información general, por ejemplo una página de inicio fija o el pie de imprenta. Incluso podría prescindir por completo de las funciones de blog y utilizar FlatPress para crear un sitio web con sólo páginas estáticas.
|
||||
|
||||
En el [url=admin.php]área de administración[/url] puedes crear entradas y páginas estáticas - y definir si la página de inicio de tu blog FlatPress debe ser una página estática o la vista general del blog.
|
||||
|
||||
|
||||
[h4]Plugins[/h4]
|
||||
|
||||
Puede personalizar ampliamente FlatPress según sus necesidades ampliándolo con [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. BBCode, por ejemplo, es un Plugin.
|
||||
|
||||
Aquí tiene más ejemplos de contenido que le muestran aún más funciones de FlatPress :)
|
||||
|
||||
Dos páginas estáticas ya están preparadas para usted:
|
||||
[list]
|
||||
[*][url=static.php?page=about]Acerca de[/url]
|
||||
[*][url=static.php?page=menu]Menú[/url] (El contenido de esta página estática también aparece en la barra lateral de tu blog: esa es la magia del [b]widget blockparser[/b]. El [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] tiene información sobre esto, ¡y mucho más!)
|
||||
[/list]
|
||||
|
||||
Con el plugin [b]PhotoSwipe[/b] ahora puedes colocar tus imágenes aún más fácilmente, ya sea como una sola imagen alineada float="left"- o float="right" rodeada por el texto.
|
||||
Incluso puede presentar galerías enteras a sus visitantes con el elemento \'gallery\'. Puede comprobar lo fácil que es [url="https://wiki.flatpress.org/res:plugins:photoswipe"]aquí[/url].
|
||||
|
||||
|
||||
[h4]Widgets[/h4]
|
||||
|
||||
Ninguno de los elementos de la barra lateral de tu blog es fijo, puedes moverlos, eliminarlos y añadir otros nuevos en el área de administración.
|
||||
|
||||
Estos elementos se denominan [b]Widgets[/b]. Por supuesto, la Wiki de FlatPress también tiene mucha información útil [url=https://wiki.flatpress.org/doc:tips:widgets]sobre este tema[/url].
|
||||
|
||||
|
||||
[h4]Temas[/h4]
|
||||
|
||||
[gallery="images/Leggero-Themepreview/" width="140"]
|
||||
Con el tema Leggero de FlatPress tiene a su disposición 3 plantillas de estilo, desde clásico hasta moderno. Estas plantillas son un magnífico comienzo para crear algo propio.
|
||||
|
||||
[h4]Más información[/h4]
|
||||
|
||||
Desea obtener más información sobre FlatPress?
|
||||
|
||||
[list]
|
||||
[*]Apoye el proyecto con una [url=http://www.flatpress.org/home/static.php?page=donate]pequeña donación[/url].
|
||||
[*]En el [url=https://www.flatpress.org/?x]blog del proyecto[/url] podrá enterarse de lo que ocurre actualmente en el proyecto FlatPress.
|
||||
[*]Visite el [url=https://forum.flatpress.org/]foro de soporte[/url] para obtener soporte y contactar con otros usuarios de FlatPress.
|
||||
[*]Descargue magníficos [b]temas[/b] creados por la comunidad desde la [url=https://wiki.flatpress.org/res:themes]Wiki[/url].
|
||||
[*]También hay grandes [url=https://wiki.flatpress.org/res:plugins]Plugins[/url] allí.
|
||||
[*]También puede seguir a FlatPress en [url=https://twitter.com/FlatPress]X (Twitter)[/url] y [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Cómo puedo apoyar a FlatPress?[/h4]
|
||||
|
||||
[list]
|
||||
[*][url=https://www.flatpress.org/contact/]Informe[/url] de los errores que se hayan producido o envíenos sugerencias de mejora.
|
||||
[*]Invitamos a los programadores a que nos apoyen en [url="https://github.com/flatpressblog/flatpress"]GitHub[/url].
|
||||
[*]Traduzca FlatPress y su documentación a [url=https://wiki.flatpress.org/res:language]su idioma[/url].
|
||||
[*]Forme parte de la comunidad FlatPress en el [url=https://forum.flatpress.org/]Foro de soporte[/url].
|
||||
[*]Cuéntale al mundo lo genial que es FlatPress! :)
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Y ahora qué?[/h4]
|
||||
|
||||
[url=login.php]Inicie sesión[/url] para empezar a bloguear en el [url=admin.php]área de administración[/url].
|
||||
|
||||
Que te diviertas! :)
|
||||
|
||||
[i]El equipo [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
';
|
||||
|
||||
$lang ['samplecontent'] ['about'] ['subject'] = 'Acerca de';
|
||||
$lang ['samplecontent'] ['about'] ['content'] = "Escribe aquí algo sobre ti y sobre este blog. ([url=admin.php?p=static&action=write&page=about]Edítame![/url])";
|
||||
|
||||
?>
|
200
setup/lang/lang.fr-fr.php
Normal file
200
setup/lang/lang.fr-fr.php
Normal file
@ -0,0 +1,200 @@
|
||||
<?php
|
||||
/*
|
||||
* LangId: Français
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Configuration'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'La configuration est verrouillée',
|
||||
'descr' => 'On dirait que la configuration est déjà en place: Le fichier de blocage <code>%s</code> existe déjà.
|
||||
|
||||
Si tu veux redémarrer l'installation, supprime d'abord ce fichier.
|
||||
|
||||
<strong>Attention!</strong> Le fichier <code>setup.php</code> et le répertoire <code>setup/</code> ne doivent pas rester sur le serveur. Merci de les supprimer une fois la configuration terminée!
|
||||
|
||||
<ul>
|
||||
<li><a href="%s">Ok, amène-moi à mon blog</a></li>
|
||||
<li><a href="%s">J\'ai supprimé le fichier. Redémarrer le setup.</a></li>
|
||||
</ul>'
|
||||
);
|
||||
|
||||
$lang ['err'] = array(
|
||||
'setuprun1' => 'La configuration est en cours.',
|
||||
|
||||
'setuprun2' => 'La configuration est déjà en cours: si tu es l\'administrateur, tu peux supprimer ',
|
||||
'setuprun3' => ' pour redémarrer.',
|
||||
'writeerror' => 'Erreur d\'écriture',
|
||||
|
||||
'fpuser1' => ' n\'est pas un utilisateur valide.
|
||||
Le nom d\'utilisateur doit être alphanumérique et ne doit pas contenir d\'espaces.',
|
||||
'fpuser2' => ' n\'est pas un utilisateur valide.
|
||||
Le nom d\'utilisateur ne peut contenir que des lettres, des chiffres et 1 trait de soulignement.',
|
||||
'fppwd' => 'Le mot de passe doit contenir au moins 6 caractères et ne doit pas comporter d\'espaces.',
|
||||
'fppwd2' => 'Les mots de passe ne correspondent pas.',
|
||||
'email' => ' n\'est pas une adresse e-mail valide.',
|
||||
'www' => ' n\'est pas une URL valide',
|
||||
'error' => '<p><big>Erreur!</big>
|
||||
Les erreurs suivantes sont survenues lors du traitement du formulaire :</p><ul>'
|
||||
);
|
||||
|
||||
$lang ['step1'] = array(
|
||||
'head' => 'Bienvenue chez FlatPress!',
|
||||
'descr' => 'Merci d\'avoir choisi <strong>FlatPress</strong>.
|
||||
|
||||
Avant de pouvoir commencer ton tout nouveau blog, tu dois encore indiquer quelques petites choses.
|
||||
|
||||
Mais ne t\'inquiète pas, ça ne durera pas longtemps !',
|
||||
'descrl1' => 'Choisis ta langue.',
|
||||
'descrl2' => '<a class="hint" onclick="toggleinfo();">Pas dans la liste ?</a>',
|
||||
'descrlang' => 'Si tu ne trouves pas ta langue dans la liste, regarde s\'il existe <a href="https://wiki.flatpress.org/res:language">un pack de langue correspondant</a>:
|
||||
|
||||
<pre>%s</pre>
|
||||
|
||||
Pour installer un pack de langue, il suffit de télécharger son contenu dans ton répertoire <code>flatpress/</code>. Puis <a href="./setup.php">redémarre la configuration</a>.',
|
||||
'descrw' => '<strong>La seule</strong> chose dont tu as besoin pour faire fonctionner FlatPress est un répertoire <em>inscriptible</em>.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
|
||||
$lang ['step2'] = array(
|
||||
'head' => 'Créer un utilisateur',
|
||||
'descr' => 'Presque terminé ! Il ne reste plus que les détails suivants:',
|
||||
'fpuser' => 'Nom d\'utilisateur',
|
||||
'fppwd' => 'Mot de passe',
|
||||
'fppwd2' => 'Mot de passe (répétition)',
|
||||
'www' => 'Page d\'accueil',
|
||||
'email' => 'Courrier électronique'
|
||||
);
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Prêt',
|
||||
'descr' => '<strong>C\'est tout.</strong>
|
||||
|
||||
Pas croyable?
|
||||
|
||||
Non, en fait, <strong>c\'est maintenant que ça commence vraiment</strong>! Mais le blogging est maintenant <em>ton</em> devoir ;)
|
||||
|
||||
<p style="color:#cc0000">Attention: pour plus de confort et de sécurité, nous recommandons de configurer les instructions pour ton serveur dans la zone d\'administration à l\'aide du plug-in PrettyURL.</p>
|
||||
|
||||
<ul>
|
||||
<li>Vers la <a href="%s">page principale de ton blog</a></li>
|
||||
<li>Bon blog! <a href="%s">Connectez-vous maintenant</a></li>
|
||||
<li>Tu souhaites faire part de tes compliments ou de tes critiques? Visite-nous sur <a href="https://www.flatpress.org/">FlatPress.org</a>!</li>
|
||||
</ul>
|
||||
|
||||
Merci d\'avoir choisi FlatPress!'
|
||||
);
|
||||
|
||||
$lang ['buttonbar'] = array(
|
||||
'next' => 'Continuer >'
|
||||
);
|
||||
|
||||
$lang ['samplecontent'] = array();
|
||||
|
||||
$lang ['samplecontent'] ['menu'] ['subject'] = 'Menu';
|
||||
$lang ['samplecontent'] ['menu'] ['content'] = '[list]
|
||||
[*][url=?]Page d\'accueil[/url]
|
||||
[*][url=?paged=1]Blog[/url]
|
||||
[*][url=static.php?page=about]Sur[/url]
|
||||
[*][url=contact.php]Contact[/url]
|
||||
[/list]';
|
||||
|
||||
$lang ['samplecontent'] ['entry'] ['subject'] = 'Bienvenue chez FlatPress!';
|
||||
$lang ['samplecontent'] ['entry'] ['content'] = 'Voici un exemple de contribution. Il te montre quelques fonctions de [url=https://www.flatpress.org]FlatPress[/url].
|
||||
|
||||
L\'élément "more" te permet de passer du résumé de l\'article à l\'article complet.
|
||||
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Mise en forme du texte[/h4]
|
||||
|
||||
Dans FlatPress, tu formates ton contenu avec [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (Bulletin-Board-Code). Avec le BBCode, c\'est très facile. Vous voulez des exemples? [b] fait [b]du texte en gras[/b], [i] [i]du texte en italique[/i].
|
||||
|
||||
[quote]L\'élément [b]quote[/b] permet de marquer les citations.[/quote]
|
||||
|
||||
[code]L\'élément \'code\' crée une section avec une largeur de caractère fixe.
|
||||
Il peut également
|
||||
représenter des indentations.[/code]
|
||||
|
||||
Les éléments \'img\' (images) et \'url\' (liens) ont des options spéciales. Pour en savoir plus, consulte le [url=https://wiki.flatpress.org/doc:plugins:bbcode]FlatPress-Wiki[/url].
|
||||
|
||||
|
||||
[h4]Entrées (articles de blog) et pages statiques[/h4]
|
||||
|
||||
Ceci est une entrée, alors que [url=static.php?page=about]Sur[/url] est une [b]page statique[/b]. Contrairement à une entrée, une page statique ne peut pas être commentée et n\'apparaît pas non plus dans les listes d\'entrées du blog.
|
||||
|
||||
Les pages statiques sont utiles pour les informations générales, par exemple une page d\'accueil fixe ou les mentions légales. On pourrait même renoncer complètement aux fonctions de blog et créer avec FlatPress un site web avec uniquement des pages statiques.
|
||||
|
||||
Dans la [url=admin.php]zone d\'administration[/url] tu peux créer des entrées et des pages statiques - et définir si la page d\'accueil de ton blog FlatPress doit être une page statique ou l\'aperçu du blog.
|
||||
|
||||
|
||||
[h4]Plugins[/h4]
|
||||
|
||||
Tu peux adapter FlatPress de manière complète à tes besoins en l\'enrichissant de [url=https://wiki.flatpress.org/doc:plugins:standard]Plugins[/url]. Le BBCode, par exemple, est un plugin.
|
||||
|
||||
Voici un autre exemple de contenu qui te montre encore plus de fonctions FlatPress :)
|
||||
|
||||
Deux pages statiques sont déjà préparées pour toi:
|
||||
[list]
|
||||
[*][url=static.php?page=about]Sur[/url]
|
||||
[*][url=static.php?page=menu]Menu[/url] (Le contenu de cette page statique apparaît également dans la barre latérale de ton blog - c\'est la magie du [b]widget Blockparser[/b]. Le [url=http://wiki.flatpress.org/]FlatPress-Wiki[/url] a des informations à ce sujet, et bien plus encore!)
|
||||
[/list]
|
||||
|
||||
Avec le plugin [b]PhotoSwipe-Plugin[/b] tu peux désormais placer encore plus facilement tes images, au choix en tant qu\'image individuelle orientée float="left"- ou float="right" ,entourée par le texte.
|
||||
Tu peux même présenter des galeries entières à tes visiteurs grâce à l\'élément \'gallery\'. Tu découvriras ici [url="https://wiki.flatpress.org/res:plugins:photoswipe"]à quel point c\'est simple[/url].
|
||||
|
||||
|
||||
[h4]Widgets[/h4]
|
||||
|
||||
Aucun des éléments de la barre latérale de ton blog n\'est fixe, tu peux les déplacer, les supprimer et en ajouter de nouveaux dans la zone d\'administration.
|
||||
|
||||
Ces éléments sont appelés [b]Widgets[/b]. Bien entendu, le wiki FlatPress dispose également de [url=https://wiki.flatpress.org/doc:tips:widgets]nombreuses informations utiles sur ce sujet[/url].
|
||||
|
||||
|
||||
[h4]Thèmes[/h4]
|
||||
|
||||
[gallery="images/Leggero-Themepreview/" width="140"]
|
||||
Avec le thème FlatPress Leggero, tu disposes de 3 modèles de style - du classique au moderne. Ces modèles sont un excellent point de départ pour créer quelque chose de personnel.
|
||||
|
||||
[h4]Encore plus[/h4]
|
||||
|
||||
Tu souhaites en savoir plus sur FlatPress?
|
||||
|
||||
[list]
|
||||
[*]Soutenez le projet avec un [url=http://www.flatpress.org/home/static.php?page=donate]petit don[/url].
|
||||
[*]Le [url=https://www.flatpress.org/?x]blog du projet[/url] te permet de savoir ce qui se passe actuellement dans le projet FlatPress.
|
||||
[*]Visite le [url=https://forum.flatpress.org/]forum de support[/url] pour obtenir de l\'aide et entrer en contact avec d\'autres utilisateurs de FlatPress.
|
||||
[*]Télécharge de superbes [b]thèmes[/b] créés par la communauté à partir du [url=https://wiki.flatpress.org/res:themes]Wiki[/url].
|
||||
[*]On y trouve également de superbes [url=https://wiki.flatpress.org/res:plugins]plugins[/url].
|
||||
[*]Tu peux aussi suivre FlatPress sur [url=https://twitter.com/FlatPress]X (Twitter)[/url] et [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Comment puis-je soutenir FlatPress?[/h4]
|
||||
|
||||
[list]
|
||||
[*][url=https://www.flatpress.org/contact/]Signale[/url] les erreurs survenues ou envoie-nous des propositions d\'amélioration.
|
||||
[*]Les programmeurs sont invités à nous rejoindre sur [url="https://github.com/flatpressblog/flatpress"]GitHub[/url].
|
||||
[*]Traduis FlatPress et sa documentation dans [url=https://wiki.flatpress.org/res:language]ta langue[/url].
|
||||
[*]Rejoignez la communauté FlatPress sur le [url=https://forum.flatpress.org/]forum de support[/url].
|
||||
[*]Dis au monde entier à quel point FlatPress est génial! :)
|
||||
[/list]
|
||||
|
||||
|
||||
[h4]Alors, et maintenant ?[/h4]
|
||||
|
||||
[url=login.php]Connecte-toi[/url] pour commencer à bloguer dans [url=admin.php]Rapport d\'administration[/url].
|
||||
|
||||
Amusez-vous bien! :)
|
||||
|
||||
[i]L\'équipe de [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
';
|
||||
|
||||
$lang ['samplecontent'] ['about'] ['subject'] = 'Sur';
|
||||
$lang ['samplecontent'] ['about'] ['content'] = "Écris ici quelque chose sur toi et sur ce blog. ([url=admin.php?p=static&action=write&page=about]Travaille-moi![/url])";
|
||||
|
||||
?>
|
@ -2,9 +2,13 @@
|
||||
/*
|
||||
* LangId: Italian
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Impostazioni'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'L\'installazione è stata bloccata',
|
||||
'descr' => 'Sembra che tu abbia già avviato l\'installazione, perché
|
||||
'descr' => 'Sembra che tu abbia già avviato l\'installazione, perché
|
||||
abbiamo trovato il lockfile <code>%s</code>.
|
||||
|
||||
Se vuoi far ripartire l\'installazione, elimina prima questo file.
|
||||
@ -40,7 +44,7 @@ $lang ['step1'] = array(
|
||||
'head' => 'Benvenuto in FlatPress!',
|
||||
'descr' => 'Grazie per aver scelto <strong>FlatPress</strong>.
|
||||
|
||||
Prima che tu ti diverta con il tuo blog nuovo di zecca, dobbiamo farti qualche domanda.
|
||||
Prima che tu ti diverta con il tuo blog nuovo di zecca, dobbiamo farti qualche domanda.
|
||||
|
||||
Non preoccuparti, non ci vorrà molto!',
|
||||
'descrl1' => 'Seleziona la tua lingua.',
|
||||
@ -50,7 +54,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
Per installare il pacchetto di lingua, carica il contenuto del pacchetto nela tua copia di <code>flatpress/</code>, e sovrascrivi tutto, poi <a href="./setup.php">riavvia questa installazione</a>.',
|
||||
'descrw' => 'L\'<strong>unica cosa</strong> di cui ha bisogno FlatPress per funzionare è una cartella <em>scrivibile</em>.
|
||||
'descrw' => 'L\'<strong>unica cosa</strong> di cui ha bisogno FlatPress per funzionare è una cartella <em>scrivibile</em>.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -67,9 +71,9 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Finito',
|
||||
'descr' => '<strong>Fine della storia</strong>.
|
||||
'descr' => '<strong>Fine della storia</strong>.
|
||||
|
||||
Non ci credi?
|
||||
Non ci credi?
|
||||
|
||||
E hai ragione: <strong>la storia è appena cominciata</strong>, ma <strong>sta a te scriverla</strong>!
|
||||
|
||||
@ -103,14 +107,14 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Questo è un articolo di prova,
|
||||
|
||||
Il tag more ti consente di creare un "salto" tra un estratto e l\'articolo completo.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Aspetto[/h4]
|
||||
|
||||
Il modo predefinito dell\'aspetto e del contenuto dell\'articolo è [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode è un modo facile per dare un aspetto elegante ai tuoi articoli. Sono consentiti i codici più comuni, come [b] per [b]grassetto[/b] (html: strong), [i] per [i]corsivo[/i] (html: em), ecc.
|
||||
|
||||
[quote]Ci sono anche i blocchi [b]citazione[/b] per mostrare le tue citazioni preferite. [/quote]
|
||||
[quote]Ci sono anche i blocchi [b]citazione[/b] per mostrare le tue citazioni preferite.[/quote]
|
||||
|
||||
[code]E il tag \'code\' mmostra dei pezzetti di codice in uno stile monospaziale.
|
||||
Inoltre supporta
|
||||
@ -130,7 +134,7 @@ Le pagine statiche sono utili per creare pagine di informazioni generali. Puoi a
|
||||
|
||||
FlatPress è molto personalizzabile e supporta dei [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] per estenderne le funzioni. BBCode stesso è un plugin.
|
||||
|
||||
Abbiamo creato altri contenuti di esempio per mostrarvi alcune delle funzioni ben nascoste di FP e chicche :)
|
||||
Abbiamo creato altri contenuti di esempio per mostrarvi alcune delle funzioni ben nascoste di FP e chicche :)
|
||||
Puoi trovare due [b]pagine statiche[/b] pronte per accettare i tuoi contenuti:
|
||||
[list]
|
||||
[*][url=static.php?page=about]Chi sono[/url]
|
||||
@ -143,7 +147,7 @@ Con il plugin [b]PhotoSwipe[/b] è ora possibile posizionare le immagini in modo
|
||||
|
||||
[h4]Widget[/h4]
|
||||
|
||||
Non c\'è un singolo elemento fisso nelle barre laterali. Tutti gli elementi che si trovano nelle barre circondando questo testo sono completamente riposizionabili, e molti di loro sono personalizzabili. Alcun temi forniscono anche uno specifico pannello nel pannello di controllo.
|
||||
Non c\'è un singolo elemento fisso nelle barre laterali. Tutti gli elementi che si trovano nelle barre circondando questo testo sono completamente riposizionabili, e molti di loro sono personalizzabili. Alcun temi forniscono anche uno specifico pannello nel pannello di controllo.
|
||||
|
||||
Questi elementi si chiamano [b]widget[/b]. Per saperne di più sui widget e [url=https://wiki.flatpress.org/doc:tips:widgets]alcuni consigli[/url] per ottenere dei bellissimi effetti, dai un\'occhiata sul [url=https://wiki.flatpress.org/]wiki[/url].
|
||||
|
||||
@ -159,12 +163,13 @@ Con il tema FlatPress-Leggero avete a disposizione 3 modelli di stile, dal class
|
||||
Vuoi saperne di più?
|
||||
|
||||
[list]
|
||||
[*]Sostenete il progetto con una [url=http://www.flatpress.org/home/static.php?page=donate]piccola donazione
|
||||
[*]Segui il [url=https://www.flatpress.org/?x]blog ufficiale[/url] per sapere cosa succede nel mondo di FlatPress
|
||||
[*]Visita il [url=https://forum.flatpress.org/]forum[/url] per assistenza e chiacchierare un po\'
|
||||
[*]Sostenete il progetto con una [url=http://www.flatpress.org/home/static.php?page=donate]piccola donazione.
|
||||
[*]Segui il [url=https://www.flatpress.org/?x]blog ufficiale[/url] per sapere cosa succede nel mondo di FlatPress.
|
||||
[*]Visita il [url=https://forum.flatpress.org/]forum[/url] per assistenza e chiacchierare un po\'.
|
||||
[*]Scarica [b]magnifici temi[/b] dagli [url=https://wiki.flatpress.org/res:themes]invii di altri utenti[/url]!
|
||||
[*]Dai un\'occhiata ai [url=https://wiki.flatpress.org/res:plugins]plugin non ufficiali[/url]
|
||||
[*]Scarica [url=https://wiki.flatpress.org/res:language]il pacchetto di traduzione[/url] per la tua lingua
|
||||
[*]Dai un\'occhiata ai [url=https://wiki.flatpress.org/res:plugins]plugin[/url].
|
||||
[*]Scarica [url=https://wiki.flatpress.org/res:language]il pacchetto di traduzione[/url] per la tua lingua.
|
||||
[*]Potete seguire FlatPress anche su [url=https://twitter.com/FlatPress]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
@ -183,7 +188,7 @@ Vuoi saperne di più?
|
||||
|
||||
Ora puoi [url=login.php]connetterti[/url]per andare al [url=admin.php]Pannello di Controllo[/url] e iniziare a scrivere!
|
||||
|
||||
Buon divertimento! :)
|
||||
Buon divertimento! :)
|
||||
|
||||
[i]Il Team di [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
|
@ -2,6 +2,10 @@
|
||||
/*
|
||||
* LangId: Japanese
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => '機関'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'セットアップは中断されました.',
|
||||
'descr' => 'ロックファイル「<code>%s</code>」がサーバ上に存在しますので,
|
||||
@ -110,14 +114,14 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'This is a sample entry, posted
|
||||
|
||||
The more tag allows you to create a "jump" between an excerpt and the complete article.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Styling[/h4]
|
||||
|
||||
The default way to style and format your content is [url=http://wiki.flatpress.org/doc:plugins:bbcode]BBcode[/url] (bulletin board code). BBCode is an easy way to style your posts. Most common codes are allowed. Like [b] for [b]bold[/b] (html: strong), [i] for [i]italics[/i] (html: em), etc.
|
||||
|
||||
[quote]There are also [b]quote[/b] blocks to display your favourite quotations. [/quote]
|
||||
[quote]There are also [b]quote[/b] blocks to display your favourite quotations.[/quote]
|
||||
|
||||
[code]And \'code\' displays your snippets in a monospaced fashion.
|
||||
It also supports
|
||||
@ -166,12 +170,13 @@ With the FlatPress-Leggero theme you have 3 style templates at your disposal - f
|
||||
Want to see more?
|
||||
|
||||
[list]
|
||||
[*]Support the project with a [url=http://www.flatpress.org/home/static.php?page=donate]small donation[/url]
|
||||
[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world
|
||||
[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat
|
||||
[*]Support the project with a [url=http://www.flatpress.org/home/static.php?page=donate]small donation[/url].
|
||||
[*]Follow the [url=https://www.flatpress.org/?x]official blog[/url] to know what\'s going on in the FlatPress world.
|
||||
[*]Visit the [url=https://forum.flatpress.org/]forum[/url] for support and chit-chat.
|
||||
[*]Get [b]great themes[/b] from [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]!
|
||||
[*]Check out the [url=https://wiki.flatpress.org/res:plugins]unofficial plugins[/url]
|
||||
[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language
|
||||
[*]Check out the [url=https://wiki.flatpress.org/res:plugins]plugins[/url].
|
||||
[*]Get [url=https://wiki.flatpress.org/res:language]translation pack[/url] for your language.
|
||||
[*]You can also follow FlatPress on [url=https://twitter.com/FlatPress]X (Twitter)[/url] and [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
|
@ -2,6 +2,10 @@
|
||||
/*
|
||||
* LangId: Nederlands
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Instelling'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Setup is vergrendeld',
|
||||
'descr' => 'Het lijkt erop dat je de installatie al hebt uitgevoerd, omdat
|
||||
@ -40,7 +44,7 @@ $lang ['step1'] = array(
|
||||
'head' => 'Welkom bij FlatPress!',
|
||||
'descr' => 'Bedankt dat je gekozen hebt voor <strong>FlatPress</strong>.
|
||||
|
||||
Voordat je plezier kunt maken met je gloednieuwe blog, moeten we je een paar vragen stellen.
|
||||
Voordat je plezier kunt maken met je gloednieuwe blog, moeten we je een paar vragen stellen.
|
||||
|
||||
Maak je geen zorgen, het zal niet lang duren!',
|
||||
'descrl1' => 'Kies je taal.',
|
||||
@ -50,7 +54,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
Als je het taalpakket wilt installeren, uploadt de inhoud van het pakket in jouw <code>flatpress/</code>, en overschrijf alles, dan <a href="./setup.php">herstart de setup</a>.',
|
||||
'descrw' => 'Het <strong>enige</strong> wat je nodig hebt voor FlatPress om mee te werken <em>beschrijfbare</em> directorie.
|
||||
'descrw' => 'Het <strong>enige</strong> wat je nodig hebt voor FlatPress om mee te werken <em>beschrijfbare</em> directorie.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -67,7 +71,7 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Klaar',
|
||||
'descr' => '<strong>Einde van dit verhaal</strong>.
|
||||
'descr' => '<strong>Einde van dit verhaal</strong>.
|
||||
|
||||
Ongelofelijk?
|
||||
|
||||
@ -103,7 +107,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Dit is een voorbeeld vermelding
|
||||
|
||||
Hoe met een tag je in staat stelt om een "sprong" te maken tussen een fragment en het volledige artikel.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Styling[/h4]
|
||||
@ -129,7 +133,7 @@ Statische pagina zijn nuttig om algemene informatie te geven. Je kunt van een va
|
||||
|
||||
FlatPress is zeer aanpasbaar en ondersteunt [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] om zijn kracht uit te breiden. BBCode is een plugin op zich zelf.
|
||||
|
||||
We hebben wat meer voorbeeld inhoud gemaakt, om je enkele van de FP goed verborgen functies en bouwstenen te laten zien :)
|
||||
We hebben wat meer voorbeeld inhoud gemaakt, om je enkele van de FP goed verborgen functies en bouwstenen te laten zien :)
|
||||
Je kunt twee [b]statische paginas[/b] vinden die klaar zijn om in je inhoud te accepteren:
|
||||
[list]
|
||||
[*][url=static.php?page=about]About me[/url]
|
||||
@ -142,7 +146,7 @@ Je kunt zelfs het element "galerij" gebruiken om hele galerijen aan je bezoekers
|
||||
|
||||
[h4]Widgets[/h4]
|
||||
|
||||
Er is geen enkel vast element in de zijbalk(en). Alle elementen die je kunt vinden in de balken die deze tekst aansturen, zijn volledig positioneerbaar en de meeste zijn ook aanpasbaar. Sommige thema\'s bieden zelfs een paneelinterface in het beheergebied.
|
||||
Er is geen enkel vast element in de zijbalk(en). Alle elementen die je kunt vinden in de balken die deze tekst aansturen, zijn volledig positioneerbaar en de meeste zijn ook aanpasbaar. Sommige thema\'s bieden zelfs een paneelinterface in het beheergebied.
|
||||
|
||||
Deze elementen worden genoemd [b]widgets[/b]. Voor meer over widgets en [url=https://wiki.flatpress.org/doc:tips:widgets]some tips[/url] om leuke effecten te krijgen, kijk dan eens naar de [url=https://wiki.flatpress.org/]wiki[/url].
|
||||
|
||||
@ -158,12 +162,13 @@ Met het FlatPress-Leggero thema heb je 3 stijlsjablonen tot je beschikking - van
|
||||
Wil je meer zien?
|
||||
|
||||
[list]
|
||||
[*]Steun het project met een [url=http://www.flatpress.org/home/static.php?page=donate]kleine donatie
|
||||
[*]Volg de [url=https://www.flatpress.org/?x]official blog[/url] om te weten wat is gaande in de FlatPress wereld
|
||||
[*]Bezoek de [url=https://forum.flatpress.org/]forum[/url] voor ondersteuning
|
||||
[*]Steun het project met een [url=http://www.flatpress.org/home/static.php?page=donate]kleine donatie.
|
||||
[*]Volg de [url=https://www.flatpress.org/?x]official blog[/url] om te weten wat is gaande in de FlatPress wereld.
|
||||
[*]Bezoek de [url=https://forum.flatpress.org/]forum[/url] voor ondersteuning.
|
||||
[*]Krijg [b]mooie themas[/b] van [url=https://wiki.flatpress.org/res:themes]other users\' submissions[/url]!
|
||||
[*]Bekijk de [url=https://wiki.flatpress.org/res:plugins]unofficial plugins[/url]
|
||||
[*]Krijg [url=https://wiki.flatpress.org/res:language]translation pack[/url] voor jouw taal
|
||||
[*]Bekijk de [url=https://wiki.flatpress.org/res:plugins]plugins[/url].
|
||||
[*]Krijg [url=https://wiki.flatpress.org/res:language]translation pack[/url] voor jouw taal.
|
||||
[*]Je kunt FlatPress ook volgen op [url=https://twitter.com/FlatPress]X (Twitter)[/url] en [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
@ -182,7 +187,7 @@ Wil je meer zien?
|
||||
|
||||
Nu kan je [url=login.php]Login[/url] om bij de [url=admin.php]Administration Area[/url] en begin met vermeldingen maken!
|
||||
|
||||
Veel plezier! :)
|
||||
Veel plezier! :)
|
||||
|
||||
[i]The [url=https://www.flatpress.org]FlatPress[/url] Team[/i]
|
||||
|
||||
|
@ -4,6 +4,10 @@
|
||||
*/
|
||||
|
||||
// TERMINADO!
|
||||
$lang ['setup'] = array(
|
||||
'setup' => '- Configuração'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'A instalação foi bloqueada.',
|
||||
'descr' => 'Parece que você já executou a instalação, porque
|
||||
@ -52,7 +56,7 @@ $lang ['step1'] = array(
|
||||
<pre>%s</pre>
|
||||
|
||||
Para instalar o pacote de idiomas, faça o upload do conteúdo do pacote no seu <code>flatpress/</code>, e substitua tudo, depois <a href="./setup.php">reinicie esse setup</a>.',
|
||||
'descrw' => 'A <strong>única coisa</strong> que você precisa para o FlatPress funcionar é uma pasta <em>gravável</em>.
|
||||
'descrw' => 'A <strong>única coisa</strong> que você precisa para o FlatPress funcionar é uma pasta <em>gravável</em>.
|
||||
|
||||
<pre>%s</pre>'
|
||||
);
|
||||
@ -69,7 +73,7 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Pronto!',
|
||||
'descr' => '<strong>Fim da história!</strong>.
|
||||
'descr' => '<strong>Fim da história!</strong>.
|
||||
|
||||
Inacreditável?
|
||||
|
||||
@ -105,7 +109,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'Esta é uma entrada de amostra,
|
||||
|
||||
A tag \'more\' permite criar um "salto" entre um trecho e o artigo completo.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Estilo[/h4]
|
||||
@ -123,17 +127,17 @@ img e url tag têm opções especiais. Pode descobrir mais no [url=https://wiki.
|
||||
|
||||
Isso e um post, enquanto [url=static.php?page=about]Sobre[/url] é uma [b]página estática[/b]. Uma página estática é uma página que não pode ser comentada e que não aparece junto com os posts normais do blog.
|
||||
|
||||
Páginas estáticas são úteis para criar páginas de informações gerais. Você também pode tornar uma dessas páginas a [b]página inicial[/b] para seus visitantes. Isso significa que, com o FlatPress, você também pode executar um site completo que não seja de blog. A opção de tornar uma página estática sua página inicial está no [b]painel de opções[/b] da [url=admin.php]área de administração[/ url].
|
||||
Páginas estáticas são úteis para criar páginas de informações gerais. Você também pode tornar uma dessas páginas a [b]página inicial[/b] para seus visitantes. Isso significa que, com o FlatPress, você também pode executar um site completo que não seja de blog. A opção de tornar uma página estática sua página inicial está no [b]painel de opções[/b] da [url=admin.php]área de administração[/ url].
|
||||
|
||||
|
||||
[h4]Plugins[/h4]
|
||||
|
||||
O FlatPress é muito personalizável e suporta [url=https://wiki.flatpress.org/doc:plugins:standard]plugins[/url] para ampliar seu poder. BBCode é um plugin em si.
|
||||
|
||||
Criamos mais conteúdo de amostra, para mostrar algumas das funções e gemas bem escondidas do FP. :)
|
||||
Criamos mais conteúdo de amostra, para mostrar algumas das funções e gemas bem escondidas do FP. :)
|
||||
Pode encontrar duas [b]páginas estáticas[/b] prontas para aceitar seu conteúdo:
|
||||
[list]
|
||||
[*][url=static.php?page=about]Sobree[/url]
|
||||
[*][url=static.php?page=about]Sobre[/url]
|
||||
[*][url=static.php?page=menu]Menu[/url] (observe que os links nesta página também aparecerão na sua barra lateral - esta é a mágica do widget [b]blockparser[/b]. Consulte [url=http://wiki.flatpress.org/doc: faq ]o FAQ[/url] para isso e muito mais!)
|
||||
[/list]
|
||||
|
||||
@ -143,11 +147,11 @@ Você pode até mesmo usar o elemento "galeria" para apresentar galerias inteira
|
||||
|
||||
[h4]Widgets[/h4]
|
||||
|
||||
Não há um único elemento fixo nos sidebar(s). Todos os elementos que você pode encontrar nos sidebar nesta página são completamente posicionáveis e a maioria deles também é personalizável. Alguns temas ainda fornecem uma interface de painel na área de administração.
|
||||
Não há um único elemento fixo nos sidebar(s). Todos os elementos que você pode encontrar nos sidebar nesta página são completamente posicionáveis e a maioria deles também é personalizável. Alguns temas ainda fornecem uma interface de painel na área de administração.
|
||||
|
||||
Esses elementos são chamados de [b]widgets[/b]. Para mais informações sobre widgets e [url=https://wiki.flatpress.org/doc: tips: widgets]algumas dicas[/url] para obter bons efeitos, dê uma olhada no [url=https://wiki.flatpress .org/]FP wiki[/url].
|
||||
|
||||
[h4] Temas[/h4]
|
||||
[h4]Temas[/h4]
|
||||
|
||||
[galeria="images/Leggero-Themepreview/" width="140"]
|
||||
Com o tema FlatPress-Leggero você tem à sua disposição 3 modelos de estilo - do clássico ao moderno. Estes modelos são um começo maravilhoso para criar algo próprio.
|
||||
@ -163,7 +167,8 @@ Want to see more?
|
||||
[*]Visite [url=https://forum.flatpress.org/]o forum[/url] para obter suporte e bate-papo.
|
||||
[*]Obtenha [b]ótimos temas[/b] em [url=https://wiki.flatpress.org/res: themes] enviadas de outros usuários[/url]!
|
||||
[*]Confira [url=https://wiki.flatpress.org/res: plugins]os plugins não oficiais.[/url]!
|
||||
[*]Obtenha [url=https://wiki.flatpress.org/res: language]o pacote de tradução[/url] para o seu idioma.
|
||||
[*]Obtenha [url=https://wiki.flatpress.org/res: language]o pacote de tradução[/url] para o seu idioma.
|
||||
[*]Você também pode seguir o FlatPress em [url=https://twitter.com/FlatPress]X (Twitter)[/url] e [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
@ -182,7 +187,7 @@ Want to see more?
|
||||
|
||||
Agora pode [url=login.php]entrar[/url] para acessar [url=admin.php]o painel de controle[/url] e comece a postar!!
|
||||
|
||||
Diverta-se! :-)
|
||||
Diverta-se! :-)
|
||||
|
||||
[i]A Tripulação de [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
|
@ -2,6 +2,10 @@
|
||||
/*
|
||||
* LangId: Slovenian
|
||||
*/
|
||||
$lang ['setup'] = array(
|
||||
'setup' => 'Nastavitev'
|
||||
);
|
||||
|
||||
$lang ['locked'] = array(
|
||||
'head' => 'Namestitev je zaklenjena',
|
||||
'descr' => 'Zdi se, da se namestitev že izvaja: Datoteka zaklepa <code>%s</code> že obstaja.
|
||||
@ -47,7 +51,7 @@ $lang ['step2'] = array(
|
||||
|
||||
$lang ['step3'] = array(
|
||||
'head' => 'Pripravljen',
|
||||
'descr' => '<strong>To je to.</strong>
|
||||
'descr' => '<strong>To je to.</strong>
|
||||
|
||||
Ne gre verjeti?
|
||||
|
||||
@ -71,7 +75,7 @@ $lang ['buttonbar'] = array(
|
||||
$lang ['samplecontent'] = array();
|
||||
|
||||
$lang ['samplecontent'] ['menu'] ['subject'] = 'Meni';
|
||||
$lang ['samplecontent'] ['menu'] ['content'] = '[seznam]
|
||||
$lang ['samplecontent'] ['menu'] ['content'] = '[list]
|
||||
[*][url=?]Domača stran[/url]
|
||||
[*][url=?paged=1]Blog[/url]
|
||||
[*][url=static.php?page=about]O[/url]
|
||||
@ -83,7 +87,7 @@ $lang ['samplecontent'] ['entry'] ['content'] = 'To je vzorčna objava, ki vam p
|
||||
|
||||
Element "more" vam omogoča preskok z osnutka članka na celoten članek.
|
||||
|
||||
[more]
|
||||
[more]
|
||||
|
||||
|
||||
[h4]Oblikovanje besedila[/h4]
|
||||
@ -146,7 +150,7 @@ S temo FlatPress Leggero imate na voljo 3 slogovne predloge - od klasične do mo
|
||||
[*]Obiščite [url=https://forum.flatpress.org/]podporni forum[/url] za podporo in stik z drugimi uporabniki FlatPress.
|
||||
[*]Iz [url=https://wiki.flatpress.org/res:themes]wikija[/url] lahko prenesete odlične [b]teme[/b], ki jih je ustvarila skupnost.
|
||||
[*]Obstajajo tudi odlični [url=https://wiki.flatpress.org/res:plugins]vtičniki[/url] tam.
|
||||
[*]FlatPressu lahko sledite tudi [url=https://twitter.com/FlatPress]na Twitterju[/url].
|
||||
[*]FlatPressu lahko sledite tudi na [url=https://twitter.com/FlatPress]X (Twitterju)[/url] in [url=https://fosstodon.org/@flatpress]Mastodon[/url].
|
||||
[/list]
|
||||
|
||||
|
||||
@ -165,7 +169,7 @@ S temo FlatPress Leggero imate na voljo 3 slogovne predloge - od klasične do mo
|
||||
|
||||
[url=login.php]Prijavite se[/url] in začnite pisati blog v [url=admin.php]Administrativno poročilo[/url].
|
||||
|
||||
Zabavajte se! :)
|
||||
Zabavajte se! :)
|
||||
|
||||
[i]Ekipa podjetja [url=https://www.flatpress.org]FlatPress[/url][/i]
|
||||
|
||||
|
@ -1,5 +1,37 @@
|
||||
<?php
|
||||
$language = @$_POST ['language']? $_POST ['language'] : $browserLang;
|
||||
error_reporting($_SERVER ["SERVER_NAME"] == "localhost" ? E_ALL : 0);
|
||||
|
||||
// Changing file/directory permissions recursively
|
||||
$start_dir = FP_CONTENT; // Starting directory
|
||||
$perms ['file'] = FILE_PERMISSIONS; // chmod value for files
|
||||
$perms ['folder'] = DIR_PERMISSIONS; // chmod value for folders
|
||||
|
||||
function chmod_file_folder($dir) {
|
||||
global $perms;
|
||||
|
||||
$dh = @opendir($dir);
|
||||
|
||||
if ($dh) {
|
||||
|
||||
while (false !== ($file = readdir($dh))) {
|
||||
|
||||
if ($file != "." && $file != "..") {
|
||||
|
||||
$fullpath = $dir . '/' . $file;
|
||||
if (!is_dir($fullpath)) {
|
||||
|
||||
chmod($fullpath, $perms ['file']);
|
||||
} else {
|
||||
chmod($fullpath, $perms ['folder']);
|
||||
chmod_file_folder($fullpath);
|
||||
}
|
||||
}
|
||||
}
|
||||
closedir($dh);
|
||||
}
|
||||
}
|
||||
|
||||
$language = @$_POST ['language'] ?$_POST ['language'] : $browserLang;
|
||||
|
||||
$lf = "lang.$language.php";
|
||||
if (!preg_match('|^lang\.[a-z]{2}-[a-z]{2}\.php$|', $lf))
|
||||
|
@ -1,273 +1,118 @@
|
||||
/* Default WordPress by Dave Shea || http://mezzoblue.com
|
||||
Modifications by Matthew Mullenweg || http://photomatt.net
|
||||
This is just a basic layout, with only the bare minimum defined.
|
||||
Please tweak this and make it your own. :)
|
||||
/*
|
||||
===================
|
||||
FlatPress Setup CSS
|
||||
===================
|
||||
|
||||
Name: Leggero v2
|
||||
Author: NoWhereMan, Dave Shea, Matthew Mullenweg and Fraenkiman
|
||||
Version: 1.0.1
|
||||
Module: setup.css
|
||||
*/
|
||||
|
||||
/*base blue: #263962*/
|
||||
|
||||
|
||||
a {
|
||||
color: #3b68bf;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #3b68bf;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #3b5d9f;
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
acronym, abbr {
|
||||
border-bottom: 1px dashed #333;
|
||||
}
|
||||
|
||||
acronym, abbr, span.caps {
|
||||
cursor: help;
|
||||
font-size: 90%;
|
||||
letter-spacing: .07em;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 5px solid #ccc;
|
||||
margin-left: 1.5em;
|
||||
padding-left: 5px;
|
||||
}
|
||||
@viewport { width: device-width }
|
||||
|
||||
body {
|
||||
background: #fff ; /* url('../imgs/tile.png') repeat-x; */
|
||||
background: #fff;
|
||||
color: #535c6f;
|
||||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
font-size: 70%;
|
||||
text-align: center;
|
||||
-webkit-text-size-adjust: none;
|
||||
-moz-text-size-adjust: none;
|
||||
text-size-adjust: none
|
||||
}
|
||||
|
||||
#main {
|
||||
margin: auto;
|
||||
width: 500px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
cite {
|
||||
font-size: 90%;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font: 160%, bold, Georgia, Times, 'Times New Roman', serif;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
border-bottom: dotted 1px #eee;
|
||||
font: 200%, bold, Georgia, Times, 'Times New Roman', serif;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
big {
|
||||
color:red;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ol#comments li p {
|
||||
font-size: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
ol#commentlist li {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
margin: 4px;
|
||||
border: thin dotted #e0e5ef;
|
||||
background-color:#eff4ff;
|
||||
|
||||
}
|
||||
|
||||
#pagesubtitle {
|
||||
color: #ddd;
|
||||
font-style: italic;
|
||||
font-family: Georgia, Times, 'Times New Roman', serif;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
/* classes used by the_meta() */
|
||||
ul.post-meta {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.post-meta span.post-meta-key {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.credit {
|
||||
/*background: #263962;
|
||||
color: #fff;*/
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
clear:both;
|
||||
|
||||
padding-top:20px;
|
||||
|
||||
width: 85%
|
||||
|
||||
}
|
||||
|
||||
|
||||
.feedback {
|
||||
color: #ccc;
|
||||
text-align: right;
|
||||
margin-top: 2em;
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
.meta li, ul.post-meta li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.meta ul {
|
||||
display: inline;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.meta, .meta a {
|
||||
color: #808080;
|
||||
font-weight: normal;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.storytitle {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.storytitle a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
.storycontent {
|
||||
|
||||
/* clear floats */
|
||||
|
||||
overflow: hidden;
|
||||
_height:1%; /*ie hack*/
|
||||
}
|
||||
|
||||
.post {
|
||||
padding: 0.2em 1em;
|
||||
background: #fff;
|
||||
border: solid thin #ddd;
|
||||
}
|
||||
|
||||
#navigation {
|
||||
margin-left: 6.2%;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
|
||||
.alignleft {
|
||||
float:left;
|
||||
}
|
||||
|
||||
.alignright, #buttonbar {
|
||||
float:right;
|
||||
}
|
||||
|
||||
#buttonbar {
|
||||
padding: 0;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#commentform #name, #commentform #email, #commentform #url, #commentform textarea {
|
||||
background: #fff;
|
||||
border: 1px solid #333;
|
||||
padding: .2em;
|
||||
}
|
||||
|
||||
|
||||
fieldset {
|
||||
padding: 0.4em;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 99%;
|
||||
font: normal 1em 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
|
||||
background: #fff;
|
||||
border: 1px solid #333;
|
||||
padding: .2em;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#commentlist li ul {
|
||||
border-left: 1px solid #ddd;
|
||||
font-size: 110%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#header {
|
||||
font-family: Georgia, Times, 'Times New Roman', serif;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-size: 300%;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #bbb;
|
||||
border-bottom: 1px solid #bbb
|
||||
}
|
||||
|
||||
#header a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
#main {
|
||||
margin: auto;
|
||||
width: 500px;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
#header a:hover {
|
||||
text-decoration: underline;
|
||||
a { color: #aa4142; text-decoration: none }
|
||||
|
||||
a img { border: none }
|
||||
|
||||
a:hover { color: #aa4142; border-bottom: 1px solid #333 }
|
||||
|
||||
a:visited { color: #aa5152 }
|
||||
|
||||
h1 :nth-child(1) { /* logo-small.gif */
|
||||
vertical-align: bottom;
|
||||
width: 28px;
|
||||
margin: 5px 0
|
||||
}
|
||||
|
||||
h1 :nth-child(2) { color: #535c6f }
|
||||
|
||||
input, select {
|
||||
font-size: 130%;
|
||||
font-family: Georgia, Garamond, 'Times New Roman', Times, serif;
|
||||
border: 1px solid #bbb;
|
||||
background-color: #eee;
|
||||
h1 :nth-child(3) { color: #aa4142 }
|
||||
|
||||
pre, code {
|
||||
font-family: "Lucida Console", Monaco, monospace;
|
||||
font-size: 100%;
|
||||
color: #3b68bf
|
||||
}
|
||||
|
||||
.maxsize {
|
||||
width: 99%;
|
||||
}
|
||||
.storycontent { overflow: hidden }
|
||||
|
||||
.post {
|
||||
padding: 0.2em 1em;
|
||||
background: #eee;
|
||||
border: solid thin #ddd;
|
||||
font-size: 120%;
|
||||
border-radius: 5px
|
||||
}
|
||||
|
||||
dt {
|
||||
width: 30%;
|
||||
width: 40%;
|
||||
margin-top: 1.8em;
|
||||
text-align: right;
|
||||
line-height: 1.5em;
|
||||
line-height: 1.5em
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-top: -1.5em;
|
||||
margin-right: 10%;
|
||||
line-height: 2em;
|
||||
float: right;
|
||||
margin-top: -1.5em;
|
||||
margin-right: 10%;
|
||||
float: right;
|
||||
line-height: 1.5em
|
||||
}
|
||||
|
||||
.info-notice {
|
||||
padding: 1em;
|
||||
dl { margin: 1.8em 0 }
|
||||
|
||||
.alignleft { float: left }
|
||||
|
||||
.alignright, #buttonbar { float: right }
|
||||
|
||||
input, select {
|
||||
font-size: 130%;
|
||||
font-family: sans-serif;
|
||||
border: 1px solid #ddd;
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
input[type=text],
|
||||
input[type=password] {
|
||||
width: 16em;
|
||||
font-size: 100%;
|
||||
background-color: #fff;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
input:hover,
|
||||
input:focus,
|
||||
textarea:hover,
|
||||
textarea:focus { border: 1px solid #aa4142 }
|
||||
|
||||
#buttonbar { padding: 0; margin-top: 1.6em }
|
||||
|
||||
input[type=submit] { cursor: pointer; font-size: 100% }
|
||||
|
||||
#footer { padding-top: 20px }
|
||||
|
@ -1,5 +1,8 @@
|
||||
|
||||
</form>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>FlatPress <?php echo SYSTEM_VER; ?></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,15 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title>Flatpress installer</title>
|
||||
<link href="setup/res/setup.css" type="text/css" rel="stylesheet" /></head>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php echo LANG_DEFAULT; ?>">
|
||||
<head><title>FlatPress <?php echo $lang ['setup'] ['setup']; ?></title>
|
||||
<link href="setup/res/setup.css" type="text/css" rel="stylesheet"></head>
|
||||
<body>
|
||||
<div id="rap">
|
||||
<h1 id="header">FlatPress Installer</h1>
|
||||
<h1 id="header"><img src="<?php echo BLOG_BASEURL; ?>setup/imgs/logo-small.gif" alt="logo-small.gif" title="Logo"><span> Flat</span><span>Press</span> <?php echo $lang ['setup'] ['setup']; ?></h1>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="main">
|
||||
|
||||
|
||||
<form class="storycontent" method="post" action="<?php
|
||||
|
||||
echo BLOG_BASEURL?>setup.php">
|
||||
<form class="storycontent" method="post" action="<?php echo BLOG_BASEURL; ?>setup.php">
|
||||
|
@ -1,8 +1,8 @@
|
||||
<h2><?php echo $l['head']; ?></h2>
|
||||
<h2><?php echo $l ['head']; ?></h2>
|
||||
<div class="post">
|
||||
|
||||
<?php echo wpautop(sprintf(
|
||||
$l['descr'],
|
||||
$l ['descr'],
|
||||
LOCKFILE,
|
||||
BLOG_BASEURL,
|
||||
BLOG_BASEURL . 'setup.php'
|
||||
|
@ -4,23 +4,23 @@
|
||||
$languages = $o->getList();
|
||||
|
||||
?>
|
||||
<h2><?php echo $l['head']; ?></h2>
|
||||
<h2><?php echo $l ['head']; ?></h2>
|
||||
|
||||
<div class="post">
|
||||
|
||||
<input type="hidden" name="setupid" value="<?php echo $setupid; ?>" />
|
||||
<input type="hidden" name="setupid" value="<?php echo $setupid; ?>">
|
||||
|
||||
<?php
|
||||
echo wpautop(sprintf($l['descr'], FP_CONTENT));
|
||||
echo wpautop(sprintf($l ['descr'], FP_CONTENT));
|
||||
|
||||
|
||||
if ($err)
|
||||
echo wpautop(sprintf($l['descrw'], FP_CONTENT));
|
||||
echo wpautop(sprintf($l ['descrw'], FP_CONTENT));
|
||||
|
||||
?>
|
||||
<div id="buttonbar">
|
||||
<input type="submit" name="start" id="start"
|
||||
value="<?php echo $lang['buttonbar']['next']; ?>" />
|
||||
value="<?php echo $lang ['buttonbar'] ['next']; ?>">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<h2><?php echo $l['head']; ?></h2>
|
||||
<h2><?php echo $l ['head']; ?></h2>
|
||||
<div class="errors">
|
||||
|
||||
<input type="hidden" name="setupid" value="<?php echo $setupid; ?>" />
|
||||
<input type="hidden" name="language" value="<?php echo $language; ?>" />
|
||||
<input type="hidden" name="setupid" value="<?php echo $setupid; ?>">
|
||||
<input type="hidden" name="language" value="<?php echo $language; ?>">
|
||||
|
||||
<?php
|
||||
if ($err) {
|
||||
@ -25,51 +25,51 @@
|
||||
|
||||
<div class="post">
|
||||
|
||||
<?php echo wpautop(sprintf($l['descr'], FP_CONTENT)); ?>
|
||||
<?php echo wpautop(sprintf($l ['descr'], FP_CONTENT)); ?>
|
||||
|
||||
<dl>
|
||||
|
||||
<dt>
|
||||
<label for="username"> <?php echo $l['fpuser']; ?> </label>
|
||||
<label for="username"> <?php echo $l ['fpuser']; ?> </label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="username" name="fpuser" />
|
||||
<input type="text" id="username" name="fpuser">
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
<label for="password"> <?php echo $l['fppwd']; ?> </label>
|
||||
<label for="password"> <?php echo $l ['fppwd']; ?> </label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="password" id="password" name="fppwd" />
|
||||
<input type="password" id="password" name="fppwd">
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
<label for="password2"> <?php echo $l['fppwd2']; ?> </label>
|
||||
<label for="password2"> <?php echo $l ['fppwd2']; ?> </label>
|
||||
</dt>
|
||||
|
||||
<dd>
|
||||
<input type="password" id="password2" name="fppwd2" />
|
||||
<input type="password" id="password2" name="fppwd2">
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
<label for="www"> <?php echo $l['www']; ?> </label>
|
||||
<label for="www"> <?php echo $l ['www']; ?> </label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="www" name="www" value="<?php echo BLOG_BASEURL ; ?>" />
|
||||
<input type="text" id="www" name="www" value="<?php echo BLOG_BASEURL; ?>">
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
<label for="email"> <?php echo $l['email']; ?> </label>
|
||||
<label for="email"> <?php echo $l ['email']; ?> </label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="email" name="email" />
|
||||
<input type="text" id="email" name="email">
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<div id="buttonbar">
|
||||
<input type="submit" name="start" id="start"
|
||||
value="<?php echo $lang['buttonbar']['next']; ?>" />
|
||||
value="<?php echo $lang ['buttonbar'] ['next']; ?>">
|
||||
</div>
|
||||
|
||||
</div>
|
@ -1,6 +1,6 @@
|
||||
<h2><?php echo $l['head']; ?></h2>
|
||||
<h2><?php echo $l ['head']; ?></h2>
|
||||
<div class="post">
|
||||
|
||||
<?php echo wpautop(sprintf($l['descr'], BLOG_BASEURL, BLOG_BASEURL . 'login.php')); ?>
|
||||
<?php echo wpautop(sprintf($l ['descr'], BLOG_BASEURL, BLOG_BASEURL . 'login.php')); ?>
|
||||
|
||||
</div>
|
Loading…
x
Reference in New Issue
Block a user