Support for localization
This commit is contained in:
parent
51cd71846b
commit
aa1bc50648
3 changed files with 13 additions and 4 deletions
|
@ -34,4 +34,5 @@ $rcc = 'no';
|
|||
$nav_drawer = 'yes';
|
||||
// Set here the name of your theme. Read the documentation for more themes
|
||||
$theme = 'material-light';
|
||||
?>
|
||||
// Set here your language. The file must exist in the lang directory
|
||||
$language = "en";
|
|
@ -27,6 +27,7 @@ THE SOFTWARE.
|
|||
|
||||
<?php
|
||||
include 'config.php';
|
||||
include './lang/' . $language . ".php";
|
||||
require_once 'res/php/Parsedown.php';
|
||||
require_once 'res/php/ArticleGenerator.php';
|
||||
require_once './res/php/BlogListGenerator.php';
|
||||
|
@ -67,7 +68,7 @@ THE SOFTWARE.
|
|||
<?php
|
||||
if ($getarticle == "") {
|
||||
echo "<section>";
|
||||
echo "<div class='nav-item-static'>Blogs of $blogtitle:</div>";
|
||||
echo "<div class='nav-item-static'>$LANG_Blogs_Of" . " " . "$blogtitle:</div>";
|
||||
$blogs = scandir("./blogs/");
|
||||
foreach ($blogs as $blog) {
|
||||
if (strlen($blog) >= 3 && substr($blog, -3) == ".md") {
|
||||
|
@ -183,12 +184,12 @@ THE SOFTWARE.
|
|||
</div>
|
||||
<div class="fabmenu">
|
||||
<div class="subfab">
|
||||
<a href='mailto:?subject=<?php echo $blogtitle; ?>&body=Check out this blog: <?php echo $url; ?>' target="blank">
|
||||
<a href='mailto:?subject=<?php echo $blogtitle; ?>&body=<?php echo $LANG_Check_out_this_blog;?>: <?php echo $url; ?>' target="blank">
|
||||
<img src="./res/img/email.svg" class="subfab-img" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="subfab">
|
||||
<a href='https://twitter.com/intent/tweet?text=Check out: <?php echo $url; ?>&original_referer=' target="blank">
|
||||
<a href='https://twitter.com/intent/tweet?text=<?php echo $LANG_Check_out;?>: <?php echo $url; ?>&original_referer=' target="blank">
|
||||
<img src="./res/img/twitter.svg" class="subfab-img" />
|
||||
</a>
|
||||
</div>
|
||||
|
|
7
lang/en.php
Normal file
7
lang/en.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
// This is the default language file for PHP
|
||||
|
||||
$LANG_Blogs_Of = "Blogs of";
|
||||
$LANG_Check_out_this_blog = "Check out this blog";
|
||||
$LANG_Check_out = "Check out";
|
Reference in a new issue