Merge remote-tracking branch 'dignajar/master'

This commit is contained in:
Frédéric K 2016-02-27 22:43:35 +01:00
commit 61079f1b57
80 changed files with 723 additions and 396 deletions

View File

@ -1,14 +1,14 @@
[Bludit](http://www.bludit.com/) [Bludit](https://www.bludit.com/)
================================ ================================
**Fast**, **simple**, **extensible** and **flat file** CMS. **Fast**, **simple**, **extensible** and **flat file** CMS.
Bludit is a simple web application to make your own **blog** or **site** in seconds, it's completly **free and open source**. Bludit uses flat-files (text files in JSON format) to store the posts and pages, you don't need to install or configure a database. Bludit is a simple web application to make your own **blog** or **site** in seconds, it's completly **free and open source**. Bludit uses flat-files (text files in JSON format) to store the posts and pages, you don't need to install or configure a database.
- [Documentation](http://docs.bludit.com) - [Documentation](https://docs.bludit.com)
- [Help and Support](http://forum.bludit.com) - [Help and Support](https://forum.bludit.com)
- [Plugins](https://github.com/dignajar/bludit-plugins) - [Plugins](https://plugins.bludit.com)
- [Themes](https://github.com/dignajar/bludit-themes) - [Themes](https://github.com/dignajar/bludit-themes)
- [More plugins and themes](http://forum.bludit.com/viewforum.php?f=14) - [More plugins and themes](https://forum.bludit.com/viewforum.php?f=14)
Social networks Social networks
--------------- ---------------
@ -36,7 +36,7 @@ You only need a web server with PHP support.
Installation guide Installation guide
------------------ ------------------
1. Download the latest version from http://www.bludit.com/bludit_latest.zip 1. Download the latest version from https://s3.amazonaws.com/bludit-s3/bludit-builds/bludit_latest.zip
2. Extract the zip file into a directory like `bludit`. 2. Extract the zip file into a directory like `bludit`.
3. Upload the directory `bludit` to your hosting server. 3. Upload the directory `bludit` to your hosting server.
4. Done! 4. Done!

View File

@ -118,6 +118,14 @@ li.bludit-logo {
/* ----------- BLUDIT ----------- */ /* ----------- BLUDIT ----------- */
body {
overflow-y: scroll;
}
.bludit-navbar {
}
#logo { #logo {
background: #f4f4f4; background: #f4f4f4;
padding:20px 0; padding:20px 0;
@ -150,6 +158,10 @@ button.delete-button:hover {
margin-bottom: 25px; margin-bottom: 25px;
} }
table.statistics tr:last-child td {
border-bottom: none !important;
}
/* ----------- ALERT ----------- */ /* ----------- ALERT ----------- */
#alert { #alert {
@ -196,7 +208,7 @@ button.delete-button:hover {
#jstagList span.select { #jstagList span.select {
margin-top: 5px; margin-top: 5px;
margin-right: 5px; margin-right: 5px;
padding: 1px 15px; padding: 2px 15px;
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
border-radius: 3px; border-radius: 3px;

View File

@ -1,9 +0,0 @@
.autocomplete-suggestions {
text-align: left; cursor: default; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);
/* core styles should not be changed */
position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }

View File

@ -20,14 +20,12 @@
<link rel="stylesheet" type="text/css" href="./css/default.css?version=<?php echo BLUDIT_VERSION ?>"> <link rel="stylesheet" type="text/css" href="./css/default.css?version=<?php echo BLUDIT_VERSION ?>">
<link rel="stylesheet" type="text/css" href="./css/jquery.datetimepicker.css?version=<?php echo BLUDIT_VERSION ?>"> <link rel="stylesheet" type="text/css" href="./css/jquery.datetimepicker.css?version=<?php echo BLUDIT_VERSION ?>">
<link rel="stylesheet" type="text/css" href="./css/jquery.auto-complete.css?version=<?php echo BLUDIT_VERSION ?>">
<!-- Javascript --> <!-- Javascript -->
<script charset="utf-8" src="./js/jquery.min.js?version=<?php echo BLUDIT_VERSION ?>"></script> <script charset="utf-8" src="./js/jquery.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
<script charset="utf-8" src="./js/uikit/uikit.min.js?version=<?php echo BLUDIT_VERSION ?>"></script> <script charset="utf-8" src="./js/uikit/uikit.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
<script charset="utf-8" src="./js/uikit/upload.min.js?version=<?php echo BLUDIT_VERSION ?>"></script> <script charset="utf-8" src="./js/uikit/upload.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
<script charset="utf-8" src="./js/jquery.datetimepicker.js?version=<?php echo BLUDIT_VERSION ?>"></script> <script charset="utf-8" src="./js/jquery.datetimepicker.js?version=<?php echo BLUDIT_VERSION ?>"></script>
<script charset="utf-8" src="./js/jquery.auto-complete.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
<!-- Plugins --> <!-- Plugins -->
<?php Theme::plugins('adminHead') ?> <?php Theme::plugins('adminHead') ?>
@ -56,7 +54,7 @@ $(document).ready(function() {
</div> </div>
<!-- Navbar --> <!-- Navbar -->
<nav class="uk-navbar"> <nav class="uk-navbar bludit-navbar">
<!-- Navbar for Desktop --> <!-- Navbar for Desktop -->
<div class="uk-container uk-container-center uk-hidden-small"> <div class="uk-container uk-container-center uk-hidden-small">
@ -168,4 +166,4 @@ $(document).ready(function() {
<?php Theme::plugins('adminBodyEnd') ?> <?php Theme::plugins('adminBodyEnd') ?>
</body> </body>
</html> </html>

6
bl-kernel/admin/themes/default/init.php Executable file → Normal file
View File

@ -27,7 +27,7 @@ class HTML {
// Prevent the form submit when press enter key. // Prevent the form submit when press enter key.
$("form").keypress(function(e) { $("form").keypress(function(e) {
if (e.which == 13) { if( (e.which == 13) && (e.target.type !== "textarea") ) {
return false; return false;
} }
}); });
@ -87,7 +87,7 @@ class HTML {
$html .= '<div id="jstagList">'; $html .= '<div id="jstagList">';
foreach($args['allTags'] as $tag) { foreach($args['allTags'] as $tag) {
$html .= '<span class="'.( in_array($tag, $args['selectedTags'])?'select':'unselect' ).'">'.$tag.'</span>'; $html .= '<span data-tag="'.$tag.'" class="'.( in_array($tag, $args['selectedTags'])?'select':'unselect' ).'">'.$tag.'</span>';
} }
$html .= '</div>'; $html .= '</div>';
@ -195,7 +195,7 @@ class HTML {
$html .= '<div class="empty-images uk-block uk-text-center uk-block-muted" '.( !empty($thumbnailList)?'style="display:none"':'' ).'>'.$L->g('There are no images').'</div>'; $html .= '<div class="empty-images uk-block uk-text-center uk-block-muted" '.( !empty($thumbnailList)?'style="display:none"':'' ).'>'.$L->g('There are no images').'</div>';
$html .= ' $html .= '
<a data-uk-modal href="#bludit-images-v8" class="moreImages uk-button">'.$L->g('More images').'</a> <a data-uk-modal href="#bludit-images-v8" class="moreImages uk-button"><i class="uk-icon-folder-o"></i> '.$L->g('More images').'</a>
</div> </div>
'; ';

View File

@ -1,3 +0,0 @@
// jQuery autoComplete v1.0.7
// https://github.com/Pixabay/jQuery-autoComplete
!function(e){e.fn.autoComplete=function(t){var o=e.extend({},e.fn.autoComplete.defaults,t);return"string"==typeof t?(this.each(function(){var o=e(this);"destroy"==t&&(e(window).off("resize.autocomplete",o.updateSC),o.off("blur.autocomplete focus.autocomplete keydown.autocomplete keyup.autocomplete"),o.data("autocomplete")?o.attr("autocomplete",o.data("autocomplete")):o.removeAttr("autocomplete"),e(o.data("sc")).remove(),o.removeData("sc").removeData("autocomplete"))}),this):this.each(function(){function t(e){var t=s.val();if(s.cache[t]=e,e.length&&t.length>=o.minChars){for(var a="",c=0;c<e.length;c++)a+=o.renderItem(e[c],t);s.sc.html(a),s.updateSC(0)}else s.sc.hide()}var s=e(this);s.sc=e('<div class="autocomplete-suggestions '+o.menuClass+'"></div>'),s.data("sc",s.sc).data("autocomplete",s.attr("autocomplete")),s.attr("autocomplete","off"),s.cache={},s.last_val="",s.updateSC=function(t,o){if(s.sc.css({top:s.offset().top+s.outerHeight(),left:s.offset().left,width:s.outerWidth()}),!t&&(s.sc.show(),s.sc.maxHeight||(s.sc.maxHeight=parseInt(s.sc.css("max-height"))),s.sc.suggestionHeight||(s.sc.suggestionHeight=e(".autocomplete-suggestion",s.sc).first().outerHeight()),s.sc.suggestionHeight))if(o){var a=s.sc.scrollTop(),c=o.offset().top-s.sc.offset().top;c+s.sc.suggestionHeight-s.sc.maxHeight>0?s.sc.scrollTop(c+s.sc.suggestionHeight+a-s.sc.maxHeight):0>c&&s.sc.scrollTop(c+a)}else s.sc.scrollTop(0)},e(window).on("resize.autocomplete",s.updateSC),s.sc.appendTo("body"),s.sc.on("mouseleave",".autocomplete-suggestion",function(){e(".autocomplete-suggestion.selected").removeClass("selected")}),s.sc.on("mouseenter",".autocomplete-suggestion",function(){e(".autocomplete-suggestion.selected").removeClass("selected"),e(this).addClass("selected")}),s.sc.on("mousedown",".autocomplete-suggestion",function(t){var a=e(this),c=a.data("val");return(c||a.hasClass("autocomplete-suggestion"))&&(s.val(c),o.onSelect(t,c,a),s.sc.hide()),!1}),s.on("blur.autocomplete",function(){try{over_sb=e(".autocomplete-suggestions:hover").length}catch(t){over_sb=0}over_sb?s.is(":focus")||setTimeout(function(){s.focus()},20):(s.last_val=s.val(),s.sc.hide(),setTimeout(function(){s.sc.hide()},350))}),o.minChars||s.on("focus.autocomplete",function(){s.last_val="\n",s.trigger("keyup.autocomplete")}),s.on("keydown.autocomplete",function(t){if((40==t.which||38==t.which)&&s.sc.html()){var a,c=e(".autocomplete-suggestion.selected",s.sc);return c.length?(a=40==t.which?c.next(".autocomplete-suggestion"):c.prev(".autocomplete-suggestion"),a.length?(c.removeClass("selected"),s.val(a.addClass("selected").data("val"))):(c.removeClass("selected"),s.val(s.last_val),a=0)):(a=40==t.which?e(".autocomplete-suggestion",s.sc).first():e(".autocomplete-suggestion",s.sc).last(),s.val(a.addClass("selected").data("val"))),s.updateSC(0,a),!1}if(27==t.which)s.val(s.last_val).sc.hide();else if(13==t.which||9==t.which){var c=e(".autocomplete-suggestion.selected",s.sc);c.length&&s.sc.is(":visible")&&(o.onSelect(t,c.data("val"),c),setTimeout(function(){s.sc.hide()},20))}}),s.on("keyup.autocomplete",function(a){if(!~e.inArray(a.which,[13,27,35,36,37,38,39,40])){var c=s.val();if(c.length>=o.minChars){if(c!=s.last_val){if(s.last_val=c,clearTimeout(s.timer),o.cache){if(c in s.cache)return void t(s.cache[c]);for(var l=1;l<c.length-o.minChars;l++){var i=c.slice(0,c.length-l);if(i in s.cache&&!s.cache[i].length)return void t([])}}s.timer=setTimeout(function(){o.source(c,t)},o.delay)}}else s.last_val=c,s.sc.hide()}})})},e.fn.autoComplete.defaults={source:0,minChars:3,delay:150,cache:1,menuClass:"",renderItem:function(e,t){t=t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&");var o=new RegExp("("+t.split(" ").join("|")+")","gi");return'<div class="autocomplete-suggestion" data-val="'+e+'">'+e.replace(o,"<b>$1</b>")+"</div>"},onSelect:function(e,t,o){}}}(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -65,7 +65,7 @@
<div class="uk-panel uk-panel-box"> <div class="uk-panel uk-panel-box">
<h4><?php $L->p('Statistics') ?></h4> <h4><?php $L->p('Statistics') ?></h4>
<table class="uk-table"> <table class="uk-table statistics">
<tbody> <tbody>
<tr> <tr>
<td><?php $Language->p('Posts') ?></td> <td><?php $Language->p('Posts') ?></td>
@ -128,4 +128,4 @@
</div> </div>
</div> </div>

26
bl-kernel/admin/views/edit-user.php Executable file → Normal file
View File

@ -72,36 +72,36 @@ if($Login->role()==='admin') {
'tip'=>$L->g('email-will-not-be-publicly-displayed') 'tip'=>$L->g('email-will-not-be-publicly-displayed')
)); ));
HTML::legend(array('value'=>$L->g('Social networks'))); HTML::legend(array('value'=>$L->g('Social networks links')));
HTML::formInputText(array( HTML::formInputText(array(
'name'=>'twitterUsername', 'name'=>'twitter',
'label'=>$L->g('Twitter username'), 'label'=>'Twitter',
'value'=>$_User->twitterUsername(), 'value'=>$_User->twitter(),
'class'=>'uk-width-1-2 uk-form-medium', 'class'=>'uk-width-1-2 uk-form-medium',
'tip'=>'' 'tip'=>''
)); ));
HTML::formInputText(array( HTML::formInputText(array(
'name'=>'facebookUsername', 'name'=>'facebook',
'label'=>$L->g('Facebook username'), 'label'=>'Facebook',
'value'=>$_User->facebookUsername(), 'value'=>$_User->facebook(),
'class'=>'uk-width-1-2 uk-form-medium', 'class'=>'uk-width-1-2 uk-form-medium',
'tip'=>'' 'tip'=>''
)); ));
HTML::formInputText(array( HTML::formInputText(array(
'name'=>'googleUsername', 'name'=>'googlePlus',
'label'=>$L->g('Google username'), 'label'=>'Google+',
'value'=>$_User->googleUsername(), 'value'=>$_User->googlePlus(),
'class'=>'uk-width-1-2 uk-form-medium', 'class'=>'uk-width-1-2 uk-form-medium',
'tip'=>'' 'tip'=>''
)); ));
HTML::formInputText(array( HTML::formInputText(array(
'name'=>'instagramUsername', 'name'=>'instagram',
'label'=>$L->g('Instagram username'), 'label'=>'Instagram',
'value'=>$_User->instagramUsername(), 'value'=>$_User->instagram(),
'class'=>'uk-width-1-2 uk-form-medium', 'class'=>'uk-width-1-2 uk-form-medium',
'tip'=>'' 'tip'=>''
)); ));

View File

@ -44,10 +44,57 @@ HTML::formOpen(array('class'=>'uk-form-horizontal'));
'tip'=>$L->g('you-can-add-a-small-text-on-the-bottom') 'tip'=>$L->g('you-can-add-a-small-text-on-the-bottom')
)); ));
HTML::legend(array('value'=>$L->g('Social networks links')));
HTML::formInputText(array(
'name'=>'twitter',
'label'=>'Twitter',
'value'=>$Site->twitter(),
'class'=>'uk-width-1-2 uk-form-medium',
'placeholder'=>'https://twitter.com/USERNAME',
'tip'=>''
));
HTML::formInputText(array(
'name'=>'facebook',
'label'=>'Facebook',
'value'=>$Site->facebook(),
'class'=>'uk-width-1-2 uk-form-medium',
'placeholder'=>'https://www.facebook.com/USERNAME',
'tip'=>''
));
HTML::formInputText(array(
'name'=>'googlePlus',
'label'=>'Google+',
'value'=>$Site->googlePlus(),
'class'=>'uk-width-1-2 uk-form-medium',
'placeholder'=>'https://plus.google.com/+USERNAME',
'tip'=>''
));
HTML::formInputText(array(
'name'=>'instagram',
'label'=>'Instagram',
'value'=>$Site->googlePlus(),
'class'=>'uk-width-1-2 uk-form-medium',
'placeholder'=>'https://www.instagram.com/USERNAME',
'tip'=>''
));
HTML::formInputText(array(
'name'=>'github',
'label'=>'Github',
'value'=>$Site->github(),
'class'=>'uk-width-1-2 uk-form-medium',
'placeholder'=>'https://github.com/USERNAME',
'tip'=>''
));
echo '<div class="uk-form-row"> echo '<div class="uk-form-row">
<div class="uk-form-controls"> <div class="uk-form-controls">
<button type="submit" class="uk-button uk-button-primary">'.$L->g('Save').'</button> <button type="submit" class="uk-button uk-button-primary">'.$L->g('Save').'</button>
</div> </div>
</div>'; </div>';
HTML::formClose(); HTML::formClose();

View File

@ -1,10 +1,10 @@
<?php defined('BLUDIT') or die('Bludit CMS.'); <?php defined('BLUDIT') or die('Bludit CMS.');
// Bludit version // Bludit version
define('BLUDIT_VERSION', 'githubVersion'); define('BLUDIT_VERSION', '1.1.2');
define('BLUDIT_CODENAME', ''); define('BLUDIT_CODENAME', 'The Dig');
define('BLUDIT_RELEASE_DATE', ''); define('BLUDIT_RELEASE_DATE', '2016-02-26');
define('BLUDIT_BUILD', '20160201'); define('BLUDIT_BUILD', '20160226');
// Debug mode // Debug mode
define('DEBUG_MODE', TRUE); define('DEBUG_MODE', TRUE);
@ -56,8 +56,8 @@ if(!defined('JSON_PRETTY_PRINT')) {
define('JSON_PRETTY_PRINT', 128); define('JSON_PRETTY_PRINT', 128);
} }
// Alert status ok // Protecting against Symlink attacks.
define('CHECK_SYMBOLIC_LINKS', FALSE); define('CHECK_SYMBOLIC_LINKS', TRUE);
// Alert status ok // Alert status ok
define('ALERT_STATUS_OK', 0); define('ALERT_STATUS_OK', 0);

View File

@ -107,6 +107,7 @@ class dbPosts extends dbJSON
// The user is always who is loggued. // The user is always who is loggued.
$args['username'] = Session::get('username'); $args['username'] = Session::get('username');
if( Text::isEmpty($args['username']) ) { if( Text::isEmpty($args['username']) ) {
Log::set(__METHOD__.LOG_SEP.'The session does not have the username.');
return false; return false;
} }
@ -271,6 +272,7 @@ class dbPosts extends dbJSON
return false; return false;
} }
Log::set(__METHOD__.LOG_SEP.'Posts from the user '.$username.' were delete.');
return true; return true;
} }
@ -293,6 +295,7 @@ class dbPosts extends dbJSON
return false; return false;
} }
Log::set(__METHOD__.LOG_SEP.'Posts linked to another user.');
return true; return true;
} }
@ -343,6 +346,7 @@ class dbPosts extends dbJSON
return false; return false;
} }
Log::set(__METHOD__.LOG_SEP.'New post published from scheduler.');
return true; return true;
} }
@ -443,6 +447,8 @@ class dbPosts extends dbJSON
{ {
$valueFromFile = $Post->getField($f); $valueFromFile = $Post->getField($f);
Log::set(__METHOD__.LOG_SEP.'Field from file: '.$f);
if($f=='tags') { if($f=='tags') {
// Generate tags array. // Generate tags array.
$this->db[$key]['tags'] = $this->generateTags($valueFromFile); $this->db[$key]['tags'] = $this->generateTags($valueFromFile);
@ -480,7 +486,11 @@ class dbPosts extends dbJSON
return false; return false;
} }
if($this->db!=$db) {
Log::set(__METHOD__.LOG_SEP.'New posts added from Cli Mode');
}
return $this->db!=$db; return $this->db!=$db;
} }
} }

View File

@ -23,7 +23,12 @@ class dbSite extends dbJSON
'emailFrom'=> array('inFile'=>false, 'value'=>''), 'emailFrom'=> array('inFile'=>false, 'value'=>''),
'dateFormat'=> array('inFile'=>false, 'value'=>'F j, Y'), 'dateFormat'=> array('inFile'=>false, 'value'=>'F j, Y'),
'timeFormat'=> array('inFile'=>false, 'value'=>'g:i a'), 'timeFormat'=> array('inFile'=>false, 'value'=>'g:i a'),
'currentBuild'=> array('inFile'=>false, 'value'=>0) 'currentBuild'=> array('inFile'=>false, 'value'=>0),
'twitter'=> array('inFile'=>false, 'value'=>''),
'facebook'=> array('inFile'=>false, 'value'=>''),
'googlePlus'=> array('inFile'=>false, 'value'=>''),
'instagram'=> array('inFile'=>false, 'value'=>''),
'github'=> array('inFile'=>false, 'value'=>'')
); );
function __construct() function __construct()
@ -101,6 +106,31 @@ class dbSite extends dbJSON
return $this->url().ltrim($filter, '/'); return $this->url().ltrim($filter, '/');
} }
public function twitter()
{
return $this->getField('twitter');
}
public function facebook()
{
return $this->getField('facebook');
}
public function instagram()
{
return $this->getField('instagram');
}
public function github()
{
return $this->getField('github');
}
public function googlePlus()
{
return $this->getField('googlePlus');
}
// Returns the site title. // Returns the site title.
public function title() public function title()
{ {

View File

@ -25,6 +25,10 @@ class dbTags extends dbJSON
foreach($this->db['postsIndex'] as $tagSlug=>$tagInfo) { foreach($this->db['postsIndex'] as $tagSlug=>$tagInfo) {
$tmp[$tagSlug] = $tagInfo['name']; $tmp[$tagSlug] = $tagInfo['name'];
} }
// Sort low to high, by value.
natcasesort($tmp);
return $tmp; return $tmp;
} }
@ -93,4 +97,4 @@ class dbTags extends dbJSON
return true; return true;
} }
} }

View File

@ -13,10 +13,10 @@ class dbUsers extends dbJSON
'registered'=> array('inFile'=>false, 'value'=>'1985-03-15 10:00'), 'registered'=> array('inFile'=>false, 'value'=>'1985-03-15 10:00'),
'tokenEmail'=> array('inFile'=>false, 'value'=>''), 'tokenEmail'=> array('inFile'=>false, 'value'=>''),
'tokenEmailTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'), 'tokenEmailTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'),
'twitterUsername'=> array('inFile'=>false, 'value'=>''), 'twitter'=> array('inFile'=>false, 'value'=>''),
'facebookUsername'=> array('inFile'=>false, 'value'=>''), 'facebook'=> array('inFile'=>false, 'value'=>''),
'googleUsername'=> array('inFile'=>false, 'value'=>''), 'googlePlus'=> array('inFile'=>false, 'value'=>''),
'instagramUsername'=> array('inFile'=>false, 'value'=>'') 'instagram'=> array('inFile'=>false, 'value'=>'')
); );
function __construct() function __construct()

View File

@ -5,10 +5,16 @@ class Email {
// Returns TRUE if the mail was successfully accepted for delivery, FALSE otherwise. // Returns TRUE if the mail was successfully accepted for delivery, FALSE otherwise.
public static function send($args) public static function send($args)
{ {
$now = time();
$headers = array(); $headers = array();
$headers[] = 'MIME-Version: 1.0'; $headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=utf-8'; $headers[] = 'Content-type: text/html; charset=utf-8';
$headers[] = 'From: '.$args['from']; $headers[] = 'From: '.$args['from'];
$headers[] = 'Reply-To: '.$args['from'];
$headers[] = 'Return-Path: '.$args['from'];
$headers[] = 'message-id: <'.$now.'webmaster@'.DOMAIN.'>';
$headers[] = 'X-Mailer: PHP/'.phpversion(); $headers[] = 'X-Mailer: PHP/'.phpversion();
$message = '<html> $message = '<html>

View File

@ -4,7 +4,7 @@ class Log {
public static function set($text, $type=0) public static function set($text, $type=0)
{ {
error_log($text, $type); error_log('('.BLUDIT_VERSION.')'.$text, $type);
} }
} }

View File

@ -2,11 +2,14 @@
class Theme { class Theme {
// NEW public static function favicon($file='favicon.png', $path=HTML_PATH_THEME_IMG, $typeIcon=true, $echo=true)
public static function favicon($file='favicon.png', $path=HTML_PATH_THEME_IMG, $echo=true)
{ {
$tmp = '<link rel="shortcut icon" href="'.$path.$file.'" type="image/x-icon">'.PHP_EOL; $type = 'image/png';
if($typeIcon) {
$type = 'image/x-icon';
}
$tmp = '<link rel="shortcut icon" href="'.$path.$file.'" type="'.$type.'">'.PHP_EOL;
if($echo) { if($echo) {
echo $tmp; echo $tmp;
@ -51,9 +54,28 @@ class Theme {
return $tmp; return $tmp;
} }
public static function title($title, $echo=true) public static function title($title=false, $echo=true)
{ {
$tmp = '<title>'.$title.'</title>'.PHP_EOL; global $Url;
global $Post, $Page;
global $Site;
$tmp = $title;
if(empty($title))
{
if( $Url->whereAmI()=='post' ) {
$tmp = $Post->title().' - '.$Site->title();
}
elseif( $Url->whereAmI()=='page' ) {
$tmp = $Page->title().' - '.$Site->title();
}
else {
$tmp = $Site->title();
}
}
$tmp = '<title>'.$tmp.'</title>'.PHP_EOL;
if($echo) { if($echo) {
echo $tmp; echo $tmp;
@ -62,9 +84,28 @@ class Theme {
return $tmp; return $tmp;
} }
public static function description($description, $echo=true) public static function description($description=false, $echo=true)
{ {
$tmp = '<meta name="description" content="'.$description.'">'.PHP_EOL; global $Url;
global $Post, $Page;
global $Site;
$tmp = $description;
if(empty($description))
{
if( $Url->whereAmI()=='post' ) {
$tmp = $Post->description();
}
elseif( $Url->whereAmI()=='page' ) {
$tmp = $Page->description();
}
else {
$tmp = $Site->description();
}
}
$tmp = '<meta name="description" content="'.$tmp.'">'.PHP_EOL;
if($echo) { if($echo) {
echo $tmp; echo $tmp;

View File

@ -47,6 +47,17 @@ var menuV8 = new function() {
} }
// This function is the default to add the image to the textarea.
// Only call when the textarea doesn't have a HTML Editor enabled.
function editorAddImageDefault(filename) {
var textarea = $("#jscontent");
var imgHTML = '<img src="'+filename+'" alt="">';
textarea.val(textarea.val() + imgHTML);
}
$(document).ready(function() { $(document).ready(function() {
// Click on document. // Click on document.
@ -87,8 +98,13 @@ $(document).ready(function() {
// Insert image // Insert image
$("body").on("click", "#bludit-menuV8-insert", function(e) { $("body").on("click", "#bludit-menuV8-insert", function(e) {
// This function is defined in each editor plugin. if(typeof editorAddImage == 'function') {
editorAddImage( menuV8.getFilename() ); // This function is defined in each editor plugin.
editorAddImage( menuV8.getFilename() );
}
else {
editorAddImageDefault( menuV8.getFilename() );
}
}); });

View File

@ -8,7 +8,16 @@ function insertTag() {
return true; return true;
} }
$("#jstagList").append("<span class=\"select\">"+newTag+"</span>"); var findTag = $("span[data-tag]").filter(function() {
return $(this).attr('data-tag').toLowerCase() == newTag.toLowerCase();
});
if( findTag.length > 0 ) {
findTag.removeClass("unselect").addClass("select");
}
else {
$("#jstagList").append("<span data-tag=\""+newTag+"\" class=\"select\">"+newTag+"</span>");
}
// Clean the input. // Clean the input.
$("#jstagInput").val(""); $("#jstagInput").val("");

View File

@ -61,24 +61,24 @@ class User
return $this->getField('registered'); return $this->getField('registered');
} }
public function twitterUsername() public function twitter()
{ {
return $this->getField('twitterUsername'); return $this->getField('twitter');
} }
public function facebookUsername() public function facebook()
{ {
return $this->getField('facebookUsername'); return $this->getField('facebook');
} }
public function googleUsername() public function googlePlus()
{ {
return $this->getField('googleUsername'); return $this->getField('googlePlus');
} }
public function instagramUsername() public function instagram()
{ {
return $this->getField('instagramUsername'); return $this->getField('instagram');
} }
public function profilePicture($absolute=true) public function profilePicture($absolute=true)

View File

@ -7,7 +7,7 @@
"last-update": "2015-11-18", "last-update": "2015-11-18",
"author": "Христо Дипчиков", "author": "Христо Дипчиков",
"email": "", "email": "",
"website": "www.hristodipchikov.tk" "website": "http://www.hristodipchikov.tk"
}, },
"username": "Потребителско име", "username": "Потребителско име",
@ -113,7 +113,7 @@
"you-can-add-a-site-description-to-provide": "Можете да добавите кратко описание или биография на сайта.", "you-can-add-a-site-description-to-provide": "Можете да добавите кратко описание или биография на сайта.",
"you-can-add-a-small-text-on-the-bottom": "Можете да добавите кратък текст в долната част на всяка страница. Например: авторско право, собственик, дати и т.н..", "you-can-add-a-small-text-on-the-bottom": "Можете да добавите кратък текст в долната част на всяка страница. Например: авторско право, собственик, дати и т.н..",
"number-of-posts-to-show-per-page": "Изберете желаният брой публикации на страница.", "number-of-posts-to-show-per-page": "Изберете желаният брой публикации на страница.",
"the-url-of-your-site": "Абсолютен адрес на вашия блог. Пример http://www.domain.com/directory/.", "the-url-of-your-site": "Абсолютен адрес на вашия блог. Пример https://www.domain.com/directory/.",
"add-or-edit-description-tags-or": "Добавяне или редактиране на описание, eтикети или модифициране URL.", "add-or-edit-description-tags-or": "Добавяне или редактиране на описание, eтикети или модифициране URL.",
"select-your-sites-language": "Изберете системен език.", "select-your-sites-language": "Изберете системен език.",
"select-a-timezone-for-a-correct": "Изберете часова зона за правилтото показване на дата / час.", "select-a-timezone-for-a-correct": "Изберете часова зона за правилтото показване на дата / час.",
@ -141,8 +141,8 @@
"whats-next": "Какво следва?", "whats-next": "Какво следва?",
"manage-your-bludit-from-the-admin-panel": "Управлявайте вашият Bludit от [Администраторският панел](./admin/)", "manage-your-bludit-from-the-admin-panel": "Управлявайте вашият Bludit от [Администраторският панел](./admin/)",
"follow-bludit-on": "Последвайте Bludit в", "follow-bludit-on": "Последвайте Bludit в",
"visit-the-support-forum": "Посети [форум](http://forum.bludit.com) за подръжка", "visit-the-support-forum": "Посети [форум](https://forum.bludit.com) за подръжка",
"read-the-documentation-for-more-information": "Прочети [документацията](http://docs.bludit.com) за повече информация", "read-the-documentation-for-more-information": "Прочети [документацията](https://docs.bludit.com) за повече информация",
"share-with-your-friends-and-enjoy": "Споделете с приятелите си", "share-with-your-friends-and-enjoy": "Споделете с приятелите си",
"the-page-has-not-been-found": "Страницата не е намерена.", "the-page-has-not-been-found": "Страницата не е намерена.",
"error": "Грешна", "error": "Грешна",
@ -198,7 +198,7 @@
"advanced-settings": "Разширени настройки", "advanced-settings": "Разширени настройки",
"manage-users": "Управление на потребители", "manage-users": "Управление на потребители",
"view-and-edit-your-profile": "Преглед и редактиране на профила ви.", "view-and-edit-your-profile": "Преглед и редактиране на профила ви.",
"password-must-be-at-least-6-characters-long": "Паролата трябва да е с дължина най-малко 6 символа", "password-must-be-at-least-6-characters-long": "Паролата трябва да е с дължина най-малко 6 символа",
"images": "Изображения", "images": "Изображения",
"upload-image": "Прикачи изображение", "upload-image": "Прикачи изображение",
@ -219,19 +219,19 @@
"date-and-time-formats": "Формат дата и час", "date-and-time-formats": "Формат дата и час",
"activate": "Активиране", "activate": "Активиране",
"deactivate": "Деактивиране", "deactivate": "Деактивиране",
"cover-image": "Обложка", "cover-image": "Обложка",
"blog": "Блог", "blog": "Блог",
"more-images": "Още изображения", "more-images": "Още изображения",
"click-here-to-cancel": "Кликнете тук, за да отмените.", "click-here-to-cancel": "Кликнете тук, за да отмените.",
"type-the-tag-and-press-enter": "Напишете етикет и натиснете клавиша Enter.", "type-the-tag-and-press-enter": "Напишете етикет и натиснете клавиша Enter.",
"manage-your-bludit-from-the-admin-panel": "Управлявайте вашият Bludit от [admin area]({{ADMIN_AREA_LINK}})", "manage-your-bludit-from-the-admin-panel": "Управлявайте вашият Bludit от [admin area]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Няма изображения", "there-are-no-images":"Няма изображения",
"click-on-the-image-for-options": "Кликнете върху изображението за опции.", "click-on-the-image-for-options": "Кликнете върху изображението за опции.",
"set-as-cover-image": "Задай като обложка ", "set-as-cover-image": "Задай като обложка ",
"delete-image": "Изтрий на изображенито", "delete-image": "Изтрий изображенито",
"image-description": "Описание на изображението " "image-description": "Описание на изображението "
} }

View File

@ -3,10 +3,10 @@
{ {
"native": "Deutsch (Schweiz)", "native": "Deutsch (Schweiz)",
"english-name": "German", "english-name": "German",
"last-update": "2016-01-23", "last-update": "2016-02-15",
"author": "Clickwork", "author": "Clickwork",
"email": "egoetschel@clickwork.ch", "email": "egoetschel@clickwork.ch",
"website": "https://www.clickwork.ch" "website": "http://www.clickwork.ch"
}, },
"username": "Benutzername", "username": "Benutzername",
@ -139,8 +139,8 @@
"congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!", "congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!",
"whats-next": "Und so geht es weiter:", "whats-next": "Und so geht es weiter:",
"follow-bludit-on": "Folge Bludit bei", "follow-bludit-on": "Folge Bludit bei",
"visit-the-support-forum": "Besuche das [Forum](http://forum.bludit.com), um Hilfe zu erhalten.", "visit-the-support-forum": "Besuche das [Forum](https://forum.bludit.com), um Hilfe zu erhalten.",
"read-the-documentation-for-more-information": "Lies die [Dokumentation](http://docs.bludit.com) und das [Bludit-Tutorial](https://bludit-tutorial.ch) für weitere Informationen.", "read-the-documentation-for-more-information": "Lies die [Dokumentation](https://docs.bludit.com) und das [Bludit-Tutorial](https://bludit-tutorial.ch) für weitere Informationen.",
"share-with-your-friends-and-enjoy": "Erzähle deinen Freunden von Bludit und habe Spass daran.", "share-with-your-friends-and-enjoy": "Erzähle deinen Freunden von Bludit und habe Spass daran.",
"the-page-has-not-been-found": "Die Seite wurde nicht gefunden.", "the-page-has-not-been-found": "Die Seite wurde nicht gefunden.",
"error": "Fehler", "error": "Fehler",
@ -165,7 +165,7 @@
"plugin-label": "Titel auf der Website", "plugin-label": "Titel auf der Website",
"enabled": "Aktiviert", "enabled": "Aktiviert",
"disabled": "Deaktiviert", "disabled": "Deaktiviert",
"cli-mode": "CLI-Modus", "cli-mode": "Kommandozeilen-Modus",
"command-line-mode": "Kommandozeilen-Modus", "command-line-mode": "Kommandozeilen-Modus",
"enable-the-command-line-mode-if-you-add-edit": "Verwende den Kommandozeilen-Modus, wenn du Beiträge und Seiten im Dateisystem hinzufügen, ändern oder löschen möchtest.", "enable-the-command-line-mode-if-you-add-edit": "Verwende den Kommandozeilen-Modus, wenn du Beiträge und Seiten im Dateisystem hinzufügen, ändern oder löschen möchtest.",
"configure": "Konfiguration", "configure": "Konfiguration",
@ -183,7 +183,7 @@
"emails-will-be-sent-from-this-address":"E-Mails werden mit dieser E-Mail-Adresse als Absender verschickt.", "emails-will-be-sent-from-this-address":"E-Mails werden mit dieser E-Mail-Adresse als Absender verschickt.",
"bludit-login-access-code": "BLUDIT - Zugangscode", "bludit-login-access-code": "BLUDIT - Zugangscode",
"check-your-inbox-for-your-login-access-code":"Der Zugangscode wurde dir geschickt.", "check-your-inbox-for-your-login-access-code":"Der Zugangscode wurde dir geschickt.",
"there-was-a-problem-sending-the-email":"Es besteht ein Pronlem mit dem Verschicken dieser E-Mail.", "there-was-a-problem-sending-the-email":"Es besteht ein Problem mit dem Verschicken dieser E-Mail.",
"back-to-login-form": "Zurück zum Login", "back-to-login-form": "Zurück zum Login",
"send-me-a-login-access-code": "Zugangscode zuschicken", "send-me-a-login-access-code": "Zugangscode zuschicken",
"get-login-access-code": "Zugangscode schicken", "get-login-access-code": "Zugangscode schicken",
@ -205,7 +205,7 @@
"date-format": "Datumsformat", "date-format": "Datumsformat",
"time-format": "Zeitformat", "time-format": "Zeitformat",
"chat-with-developers-and-users-on-gitter":"Chatte mit Entwicklern und Benutzern bei [Gitter](https://gitter.im/dignajar/bludit)", "chat-with-developers-and-users-on-gitter":"Chatte mit Entwicklern und Benutzern bei [Gitter](https://gitter.im/dignajar/bludit)",
"this-is-a-brief-description-of-yourself-our-your-site":"Dies ist eine kurze Beschreibung, wer du bist, oder deiner Website. Um diesen Text zu ändern, gehe im Admin-Panel zu den Einstellungen und konfiguriere unter \"Plugins\" das Plugin \"Über\".", "this-is-a-brief-description-of-yourself-our-your-site":"Dies ist eine kurze Beschreibung, wer du bist, oder deiner Website. Um diesen Text zu ändern, gehe im Admin-Panel zu den Einstellungen und bearbeite sie unter \"Plugins\" das Plugin \"Über\".",
"profile-picture": "Profil-Bild", "profile-picture": "Profil-Bild",
"the-about-page-is-very-important": "Die Seite \"Über\" ist wichtig und wirkungsvoll beispielsweise für zukünfige Kunden und Partner. Für alle, die wissen möchten, wer hinter der Website steht, ist die \"Über\"-Seite die erste Informationsquelle.", "the-about-page-is-very-important": "Die Seite \"Über\" ist wichtig und wirkungsvoll beispielsweise für zukünfige Kunden und Partner. Für alle, die wissen möchten, wer hinter der Website steht, ist die \"Über\"-Seite die erste Informationsquelle.",
"change-this-pages-content-on-the-admin-panel": "Der Inhalt dieser Seite kann im Admin-Panel unter \"Verwaltung\" > \"Seiten\" geändert werden.", "change-this-pages-content-on-the-admin-panel": "Der Inhalt dieser Seite kann im Admin-Panel unter \"Verwaltung\" > \"Seiten\" geändert werden.",

View File

@ -3,10 +3,10 @@
{ {
"native": "Deutsch (Deutschland)", "native": "Deutsch (Deutschland)",
"english-name": "German", "english-name": "German",
"last-update": "2016-01-23", "last-update": "2016-02-15",
"author": "Clickwork", "author": "Clickwork",
"email": "egoetschel@clickwork.ch", "email": "egoetschel@clickwork.ch",
"website": "https://www.clickwork.ch" "website": "http://www.clickwork.ch"
}, },
"username": "Benutzername", "username": "Benutzername",
@ -139,8 +139,8 @@
"congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!", "congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!",
"whats-next": "Und so geht es weiter:", "whats-next": "Und so geht es weiter:",
"follow-bludit-on": "Folge Bludit bei", "follow-bludit-on": "Folge Bludit bei",
"visit-the-support-forum": "Besuche das [Forum](http://forum.bludit.com), um Hilfe zu erhalten.", "visit-the-support-forum": "Besuche das [Forum](https://forum.bludit.com), um Hilfe zu erhalten.",
"read-the-documentation-for-more-information": "Lies die [Dokumentation](http://docs.bludit.com) und das [Bludit-Tutorial](https://bludit-tutorial.ch) für weitere Informationen.", "read-the-documentation-for-more-information": "Lies die [Dokumentation](https://docs.bludit.com) und das [Bludit-Tutorial](https://bludit-tutorial.ch) für weitere Informationen.",
"share-with-your-friends-and-enjoy": "Erzähle deinen Freunden von Bludit und habe Spaß daran.", "share-with-your-friends-and-enjoy": "Erzähle deinen Freunden von Bludit und habe Spaß daran.",
"the-page-has-not-been-found": "Die Seite wurde nicht gefunden.", "the-page-has-not-been-found": "Die Seite wurde nicht gefunden.",
"error": "Fehler", "error": "Fehler",
@ -165,7 +165,7 @@
"plugin-label": "Titel auf der Website", "plugin-label": "Titel auf der Website",
"enabled": "Aktiviert", "enabled": "Aktiviert",
"disabled": "Deaktiviert", "disabled": "Deaktiviert",
"cli-mode": "CLI-Modus", "cli-mode": "Kommandozeilen-Modus",
"command-line-mode": "Kommandozeilen-Modus", "command-line-mode": "Kommandozeilen-Modus",
"enable-the-command-line-mode-if-you-add-edit": "Verwende den Kommandozeilen-Modus, wenn du Beiträge und Seiten im Dateisystem hinzufügen, ändern oder löschen möchtest.", "enable-the-command-line-mode-if-you-add-edit": "Verwende den Kommandozeilen-Modus, wenn du Beiträge und Seiten im Dateisystem hinzufügen, ändern oder löschen möchtest.",
"configure": "Konfiguration", "configure": "Konfiguration",
@ -205,7 +205,7 @@
"date-format": "Datumsformat", "date-format": "Datumsformat",
"time-format": "Zeitformat", "time-format": "Zeitformat",
"chat-with-developers-and-users-on-gitter":"Chatte mit Entwicklern und Benutzern bei [Gitter](https://gitter.im/dignajar/bludit)", "chat-with-developers-and-users-on-gitter":"Chatte mit Entwicklern und Benutzern bei [Gitter](https://gitter.im/dignajar/bludit)",
"this-is-a-brief-description-of-yourself-our-your-site":"Dies ist eine kurze Beschreibung, wer du bist, oder deiner Website. Um diesen Text zu ändern, gehe im Admin-Panel zu den Einstellungen und konfiguriere unter \"Plugins\" das Plugin \"Über\".", "this-is-a-brief-description-of-yourself-our-your-site":"Dies ist eine kurze Beschreibung, wer du bist, oder deiner Website. Um diesen Text zu ändern, gehe im Admin-Panel zu den Einstellungen und bearbeite sie unter \"Plugins\" das Plugin \"Über\".",
"profile-picture": "Profil-Bild", "profile-picture": "Profil-Bild",
"the-about-page-is-very-important": "Die Seite \"Über\" ist wichtig und wirkungsvoll beispielsweise für zukünfige Kunden und Partner. Für alle, die wissen möchten, wer hinter der Website steht, ist die \"Über\"-Seite die erste Informationsquelle.", "the-about-page-is-very-important": "Die Seite \"Über\" ist wichtig und wirkungsvoll beispielsweise für zukünfige Kunden und Partner. Für alle, die wissen möchten, wer hinter der Website steht, ist die \"Über\"-Seite die erste Informationsquelle.",
"change-this-pages-content-on-the-admin-panel": "Der Inhalt dieser Seite kann im Admin-Panel unter \"Verwaltung\" > \"Seiten\" geändert werden.", "change-this-pages-content-on-the-admin-panel": "Der Inhalt dieser Seite kann im Admin-Panel unter \"Verwaltung\" > \"Seiten\" geändert werden.",

12
bl-languages/en_US.json Executable file → Normal file
View File

@ -140,8 +140,8 @@
"whats-next": "What's Next", "whats-next": "What's Next",
"follow-bludit-on": "Follow Bludit on", "follow-bludit-on": "Follow Bludit on",
"visit-the-support-forum": "Visit the [forum](http://forum.bludit.com) for support", "visit-the-support-forum": "Visit the [forum](https://forum.bludit.com) for support",
"read-the-documentation-for-more-information": "Read the [documentation](http://docs.bludit.com) for more information", "read-the-documentation-for-more-information": "Read the [documentation](https://docs.bludit.com) for more information",
"share-with-your-friends-and-enjoy": "Share with your friends and enjoy", "share-with-your-friends-and-enjoy": "Share with your friends and enjoy",
"the-page-has-not-been-found": "The page has not been found.", "the-page-has-not-been-found": "The page has not been found.",
"error": "Error", "error": "Error",
@ -234,10 +234,6 @@
"set-as-cover-image": "Set as cover image", "set-as-cover-image": "Set as cover image",
"delete-image": "Delete image", "delete-image": "Delete image",
"image-description": "Image description", "image-description": "Image description",
"social-networks": "Social networks", "social-networks-links": "Social networks links"
"twitter-username": "Twitter username",
"facebook-username": "Facebook username",
"google-username": "Google username",
"instagram-username": "Instagram username"
} }

View File

@ -140,8 +140,8 @@
"whats-next": "Siguientes pasos", "whats-next": "Siguientes pasos",
"follow-bludit-on": "Siga Bludit en", "follow-bludit-on": "Siga Bludit en",
"visit-the-support-forum": "Visite el [foro](http://forum.bludit.com) para soporte", "visit-the-support-forum": "Visite el [foro](https://forum.bludit.com) para soporte",
"read-the-documentation-for-more-information": "Lea la [documentación](http://docs.bludit.com) para mas información", "read-the-documentation-for-more-information": "Lea la [documentación](https://docs.bludit.com) para mas información",
"share-with-your-friends-and-enjoy": "Compartí con tus amigos y a disfrutar", "share-with-your-friends-and-enjoy": "Compartí con tus amigos y a disfrutar",
"the-page-has-not-been-found": "La página no fue encontrada.", "the-page-has-not-been-found": "La página no fue encontrada.",
"error": "Error", "error": "Error",
@ -232,5 +232,7 @@
"click-on-the-image-for-options": "Clic en la imagen para las opciones.", "click-on-the-image-for-options": "Clic en la imagen para las opciones.",
"set-as-cover-image": "Establecer como portada", "set-as-cover-image": "Establecer como portada",
"delete-image": "Eliminar imagen", "delete-image": "Eliminar imagen",
"image-description": "Descripción de la imagen" "image-description": "Descripción de la imagen",
"social-networks-links": "Redes sociales enlaces"
} }

8
bl-languages/fr_FR.json Executable file → Normal file
View File

@ -140,8 +140,8 @@
"whats-next": "pour la prochaine étape", "whats-next": "pour la prochaine étape",
"manage-your-bludit-from-the-admin-panel": "Gérez Bludit dans la [zone dadministration](./admin/)", "manage-your-bludit-from-the-admin-panel": "Gérez Bludit dans la [zone dadministration](./admin/)",
"follow-bludit-on": "Suivez Bludit sur", "follow-bludit-on": "Suivez Bludit sur",
"visit-the-support-forum": "Visitez le [forum](http://forum.bludit.com) de support", "visit-the-support-forum": "Visitez le [forum](https://forum.bludit.com) de support",
"read-the-documentation-for-more-information": "Lisez la [documentation](http://docs.bludit.com) pour plus dinformation", "read-the-documentation-for-more-information": "Lisez la [documentation](https://docs.bludit.com) pour plus dinformation",
"share-with-your-friends-and-enjoy": "Partagez avec vos amis et apprécier !", "share-with-your-friends-and-enjoy": "Partagez avec vos amis et apprécier !",
"the-page-has-not-been-found": "La page na pas été trouvée.", "the-page-has-not-been-found": "La page na pas été trouvée.",
"error": "Erreur", "error": "Erreur",
@ -234,10 +234,10 @@
"set-as-cover-image": "Définir comme image de couverture", "set-as-cover-image": "Définir comme image de couverture",
"delete-image": "Supprimer limage", "delete-image": "Supprimer limage",
"image-description": "Description de limage", "image-description": "Description de limage",
"social-networks": "Réseaux sociaux", "social-networks": "Réseaux sociaux",
"twitter-username": "Compte utilisateur Twitter", "twitter-username": "Compte utilisateur Twitter",
"facebook-username": "Compte utilisateur Facebook", "facebook-username": "Compte utilisateur Facebook",
"google-username": "Compte utilisateur Google", "google-username": "Compte utilisateur Google",
"instagram-username": "Compte utilisateur Instagram" "instagram-username": "Compte utilisateur Instagram"
} }

View File

@ -140,8 +140,8 @@
"whats-next": "מה הלאה?", "whats-next": "מה הלאה?",
"manage-your-bludit-from-the-admin-panel": "נהל את Bludit מ[דף הניהול](./admin/)", "manage-your-bludit-from-the-admin-panel": "נהל את Bludit מ[דף הניהול](./admin/)",
"follow-bludit-on": "עקוב אחר Bludit", "follow-bludit-on": "עקוב אחר Bludit",
"visit-the-support-forum": "בקר ב[פורום](http://forum.bludit.com) לתמיכה", "visit-the-support-forum": "בקר ב[פורום](https://forum.bludit.com) לתמיכה",
"read-the-documentation-for-more-information": "קרא את ה[מסמכים](http://docs.bludit.com) למידע נוסף", "read-the-documentation-for-more-information": "קרא את ה[מסמכים](https://docs.bludit.com) למידע נוסף",
"share-with-your-friends-and-enjoy": "שתף עם חבריך", "share-with-your-friends-and-enjoy": "שתף עם חבריך",
"the-page-has-not-been-found": "הדף לא נמצא.", "the-page-has-not-been-found": "הדף לא נמצא.",
"error": "שגיאה", "error": "שגיאה",
@ -211,4 +211,4 @@
"this-is-a-brief-description-of-yourself-our-your-blog":"זהו תאור קצר עליך או על אתרך. בכדי לשנות אותו נווט לדף הניהול->הגדרות->תוספים והגדר את תוסף about", "this-is-a-brief-description-of-yourself-our-your-blog":"זהו תאור קצר עליך או על אתרך. בכדי לשנות אותו נווט לדף הניהול->הגדרות->תוספים והגדר את תוסף about",
"profile-picture": "תמונת פרופיל" "profile-picture": "תמונת פרופיל"
} }

View File

@ -3,7 +3,7 @@
{ {
"native": "Italiano (Italia)", "native": "Italiano (Italia)",
"english-name": "Italian", "english-name": "Italian",
"last-update": "2016-01-22", "last-update": "2016-02-20",
"author": "Daniele La Pira", "author": "Daniele La Pira",
"email": "daniele.lapira@gmail.com", "email": "daniele.lapira@gmail.com",
"website": "https://github.com/danielelapira" "website": "https://github.com/danielelapira"
@ -119,6 +119,7 @@
"you-can-use-this-field-to-define-a-set-of": "Puoi utilizzare questo campo per definire un set di parametri riferiti alla lingua, alla nazione e preferenze speciali.", "you-can-use-this-field-to-define-a-set-of": "Puoi utilizzare questo campo per definire un set di parametri riferiti alla lingua, alla nazione e preferenze speciali.",
"you-can-modify-the-url-which-identifies":"Puoi modificare l'indirizzo URL che identifica una pagina o un articolo utilizzando delle parole chiavi leggibili. Non più di 150 caratteri.", "you-can-modify-the-url-which-identifies":"Puoi modificare l'indirizzo URL che identifica una pagina o un articolo utilizzando delle parole chiavi leggibili. Non più di 150 caratteri.",
"this-field-can-help-describe-the-content": "Quì puoi descrivere il contenuto in poche parole. Non più di 150 caratteri.", "this-field-can-help-describe-the-content": "Quì puoi descrivere il contenuto in poche parole. Non più di 150 caratteri.",
"delete-the-user-and-all-its-posts":"Elimina l'utente e tutti i suoi articoli", "delete-the-user-and-all-its-posts":"Elimina l'utente e tutti i suoi articoli",
"delete-the-user-and-associate-its-posts-to-admin-user": "Elimina l'utente e assegna i suoi articoli all'utente admin", "delete-the-user-and-associate-its-posts-to-admin-user": "Elimina l'utente e assegna i suoi articoli all'utente admin",
"read-more": "Leggi tutto", "read-more": "Leggi tutto",
@ -137,10 +138,10 @@
"first-post": "Primo articolo", "first-post": "Primo articolo",
"congratulations-you-have-successfully-installed-your-bludit": "Congratulazioni, hai installato con successo **Bludit**", "congratulations-you-have-successfully-installed-your-bludit": "Congratulazioni, hai installato con successo **Bludit**",
"whats-next": "Passi successivi", "whats-next": "Passi successivi",
"follow-bludit-on": "Segui Bludit su", "follow-bludit-on": "Segui Bludit su",
"visit-the-support-forum": "Visita il [forum](http://forum.bludit.com) per supporto", "visit-the-support-forum": "Visita il [forum](https://forum.bludit.com) per supporto",
"read-the-documentation-for-more-information": "Leggi la [documentazione](http://docs.bludit.com) per ulteriori informazioni", "read-the-documentation-for-more-information": "Leggi la [documentazione](https://docs.bludit.com) per ulteriori informazioni",
"share-with-your-friends-and-enjoy": "Condividi con i tuoi amici", "share-with-your-friends-and-enjoy": "Condividi con i tuoi amici",
"the-page-has-not-been-found": "La pagina non è stata trovata.", "the-page-has-not-been-found": "La pagina non è stata trovata.",
"error": "Errore", "error": "Errore",
@ -195,7 +196,7 @@
"edit-or-remove-your-blogs-posts": "Modifica o elimina articoli del blog.", "edit-or-remove-your-blogs-posts": "Modifica o elimina articoli del blog.",
"general-settings": "Impostazioni generali", "general-settings": "Impostazioni generali",
"advanced-settings": "Impostazioni avanzate", "advanced-settings": "Impostazioni avanzate",
"manage-users": "Gestisci utenti", "manage-users": "Amministra utenti",
"view-and-edit-your-profile": "Visualizza e modifica il tuo profilo.", "view-and-edit-your-profile": "Visualizza e modifica il tuo profilo.",
"password-must-be-at-least-6-characters-long": "La Password deve contenere almeno 6 caratteri", "password-must-be-at-least-6-characters-long": "La Password deve contenere almeno 6 caratteri",
@ -213,18 +214,26 @@
"change-this-pages-content-on-the-admin-panel": "Cambia il contenuto di questa pagina sul pannello di amministrazione, Amministra -> Pagine e Clicca sulla pagina << about >> per modificare.", "change-this-pages-content-on-the-admin-panel": "Cambia il contenuto di questa pagina sul pannello di amministrazione, Amministra -> Pagine e Clicca sulla pagina << about >> per modificare.",
"about-your-site-or-yourself": "A proposito di te e del tuo sito.", "about-your-site-or-yourself": "A proposito di te e del tuo sito.",
"welcome-to-bludit": "Benvenuti su Bludit", "welcome-to-bludit": "Benvenuti su Bludit",
"site-information": "Informazioni sul sito", "site-information": "Informazioni sul sito",
"date-and-time-formats": "Formati data e ora", "date-and-time-formats": "Formati data e ora",
"activate": "Attiva", "activate": "Attiva",
"deactivate": "Disattiva", "deactivate": "Disattiva",
"cover-image": "Immagine di copertina", "cover-image": "Immagine di copertina",
"blog": "Blog", "blog": "Blog",
"more-images": "Più immagini", "more-images": "Più immagini",
"double-click-on-the-image-to-add-it": "Clicca due volte sull'immagine da inserire.",
"click-here-to-cancel": "Clicca quì per annullare.", "click-here-to-cancel": "Clicca quì per annullare.",
"type-the-tag-and-press-enter": "Scrivi il tag e premi invio.", "type-the-tag-and-press-enter": "Scrivi il tag e premi invio.",
"manage-your-bludit-from-the-admin-panel": "Gestisci Bludit dal [pannello di amministrazione]({{ADMIN_AREA_LINK}})", "add": "Aggiungi",
"there-are-no-images":"Non ci sono immagini" "manage-your-bludit-from-the-admin-panel": "Amministra Bludit dal [pannello di amministrazione]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Non ci sono immagini",
"click-on-the-image-for-options": "Clicca sull'immagine per le opzioni.",
"set-as-cover-image": "Set as cover image",
"delete-image": "Elimima immagine",
"image-description": "Descrizione dell'immagine",
"social-networks-links": "Social Networks"
} }

View File

@ -140,8 +140,8 @@
"whats-next": "この次は", "whats-next": "この次は",
"follow-bludit-on": "Bluditをフォローする", "follow-bludit-on": "Bluditをフォローする",
"visit-the-support-forum": "サポート[フォーラム](http:\/\/forum.bludit.com)(英語)に参加する", "visit-the-support-forum": "サポート[フォーラム](https:\/\/forum.bludit.com)(英語)に参加する",
"read-the-documentation-for-more-information": "詳細について[文書](http:\/\/docs.bludit.com)を読む", "read-the-documentation-for-more-information": "詳細について[文書](https:\/\/docs.bludit.com)を読む",
"share-with-your-friends-and-enjoy": "友人と共有して楽しむ", "share-with-your-friends-and-enjoy": "友人と共有して楽しむ",
"the-page-has-not-been-found": "ページが見つかりません。", "the-page-has-not-been-found": "ページが見つかりません。",
"error": "エラー", "error": "エラー",
@ -228,4 +228,4 @@
"type-the-tag-and-press-enter": "タグを入力してEnterを押します。", "type-the-tag-and-press-enter": "タグを入力してEnterを押します。",
"manage-your-bludit-from-the-admin-panel": "[管理パネル]({{ADMIN_AREA_LINK}})からBluditを管理する", "manage-your-bludit-from-the-admin-panel": "[管理パネル]({{ADMIN_AREA_LINK}})からBluditを管理する",
"there-are-no-images":"画像はありません。" "there-are-no-images":"画像はありません。"
} }

View File

@ -141,8 +141,8 @@
"whats-next": "Apa yang anda boleh lakukan seterusnya?", "whats-next": "Apa yang anda boleh lakukan seterusnya?",
"follow-bludit-on": "Ikut Bludit di", "follow-bludit-on": "Ikut Bludit di",
"visit-the-support-forum": "Lawat [forum](http://forum.bludit.com) untuk bantuan", "visit-the-support-forum": "Lawat [forum](https://forum.bludit.com) untuk bantuan",
"read-the-documentation-for-more-information": "Baca [documentasi](http://docs.bludit.com) untuk maklumat lanjut", "read-the-documentation-for-more-information": "Baca [documentasi](https://docs.bludit.com) untuk maklumat lanjut",
"share-with-your-friends-and-enjoy": "Share with your friends and enjoy", "share-with-your-friends-and-enjoy": "Share with your friends and enjoy",
"share-with-your-friends-and-enjoy": "Kongsi dengan rakan anda dan berseronoklah", "share-with-your-friends-and-enjoy": "Kongsi dengan rakan anda dan berseronoklah",
"the-page-has-not-been-found": "Halaman ini tidak dapat dijumpai.", "the-page-has-not-been-found": "Halaman ini tidak dapat dijumpai.",
@ -230,4 +230,4 @@
"type-the-tag-and-press-enter": "Taipkan tag dan tekan \"enter\".", "type-the-tag-and-press-enter": "Taipkan tag dan tekan \"enter\".",
"manage-your-bludit-from-the-admin-panel": "Uruskan Bludit anda di [panel pentadbir]({{ADMIN_AREA_LINK}})", "manage-your-bludit-from-the-admin-panel": "Uruskan Bludit anda di [panel pentadbir]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Tiada gambar" "there-are-no-images":"Tiada gambar"
} }

View File

@ -141,8 +141,8 @@
"whats-next": "Wat nu", "whats-next": "Wat nu",
"manage-your-bludit-from-the-admin-panel": "Beheer Bludit vanuit [admin area](./admin/)", "manage-your-bludit-from-the-admin-panel": "Beheer Bludit vanuit [admin area](./admin/)",
"follow-bludit-on": "Volg Bludit via", "follow-bludit-on": "Volg Bludit via",
"visit-the-support-forum": "Bezoek het [forum](http://forum.bludit.com) voor ondersteuning", "visit-the-support-forum": "Bezoek het [forum](https://forum.bludit.com) voor ondersteuning",
"read-the-documentation-for-more-information": "Lees de [documentatie](http://docs.bludit.com) voor meer informatie", "read-the-documentation-for-more-information": "Lees de [documentatie](https://docs.bludit.com) voor meer informatie",
"share-with-your-friends-and-enjoy": "Deel met je vrienden en veel plezier", "share-with-your-friends-and-enjoy": "Deel met je vrienden en veel plezier",
"the-page-has-not-been-found": "Pagina is niet gevonden.", "the-page-has-not-been-found": "Pagina is niet gevonden.",
"error": "Error", "error": "Error",
@ -220,4 +220,4 @@
"date-and-time-formats": "Datum en tijd formaat", "date-and-time-formats": "Datum en tijd formaat",
"activate": "Activeer", "activate": "Activeer",
"deactivate": "Deactiveer" "deactivate": "Deactiveer"
} }

View File

@ -1,22 +1,22 @@
{ {
"language-data": "language-data":
{ {
"native": "Polish - Polski", "native": "Polski (Polska)",
"english-name": "Polish", "english-name": "Polish",
"last-update": "2015-12-03", "last-update": "2016-02-14",
"author": "tom-asz", "author": "Dave",
"email": "", "email": "dawid.stawicki@windowslive.com",
"website": "tomektutoria.eu" "website": "http://dave.de/"
}, },
"username": "Użytkownik", "username": "Użytkownik",
"password": "Hasło", "password": "Hasło",
"confirm-password": "Potwierdź hasło", "confirm-password": "Potwierdzenie hasła",
"editor": "Edytor", "editor": "Redaktor",
"dashboard": "Pulpit nawigacyjny", "dashboard": "Kokpit",
"role": "Rola", "role": "Rola",
"post": "Post", "post": "Wpis",
"posts": "Posty", "posts": "Wpisy",
"users": "Użytkownicy", "users": "Użytkownicy",
"administrator": "Administrator", "administrator": "Administrator",
"add": "Dodaj", "add": "Dodaj",
@ -25,55 +25,55 @@
"title": "Tytuł", "title": "Tytuł",
"no-parent": "Bez rodzica", "no-parent": "Bez rodzica",
"edit-page": "Edytuj stronę", "edit-page": "Edytuj stronę",
"edit-post": "Edytuj post", "edit-post": "Edytuj wpis",
"add-a-new-user": "Dodaj nowego użytkownika", "add-a-new-user": "Nowy użytkownik",
"parent": "Rodzic", "parent": "Rodzic",
"friendly-url": "Przyjazny URL", "friendly-url": "Przyjazny odnośnik URL",
"description": "Opis", "description": "Opis",
"posted-by": "Napisane przez", "posted-by": "Napisał(a)",
"tags": "Tagi", "tags": "Tagi",
"position": "Pozycja", "position": "Pozycja",
"save": "Zapisz", "save": "Zapisz",
"draft": "Projekt", "draft": "Szkic",
"delete": "Usuń", "delete": "Usuń",
"registered": "Zarejestrowany", "registered": "Data rejestracji",
"Notifications": "Powiadomienia", "Notifications": "Powiadomienia",
"profile": "Profil", "profile": "Profil",
"email": "Email", "email": "Email",
"settings": "Ustawienia", "settings": "Ustawienia",
"general": "Ogólne", "general": "Ogólne",
"advanced": "Zaawansowane", "advanced": "Zaawansowane",
"regional": "Regionalne", "regional": "Region",
"about": "O nas", "about": "O mnie",
"login": "Zaloguj", "login": "Zaloguj",
"logout": "Wyloguj", "logout": "Wyloguj",
"manage": "Zarządzaj", "manage": "Zarządzanie",
"themes": "Motywy", "themes": "Motywy",
"prev-page": "Poprzednia strona", "prev-page": "Poprzednia strona",
"next-page": "Następna strona", "next-page": "Następna strona",
"configure-plugin": "Skonfiguruj plugin", "configure-plugin": "Konfiguracja wtyczki",
"confirm-delete-this-action-cannot-be-undone": "Potwierdź usunięcie, czynność ta nie może być cofnięta.", "confirm-delete-this-action-cannot-be-undone": "Potwierdzenie usunięcia. Ta operacja jest nieodwracalna.",
"site-title": "Nazwa strony", "site-title": "Nazwa strony",
"site-slogan": "Slogan strony", "site-slogan": "Slogan strony",
"site-description": "Opis strony", "site-description": "Opis strony",
"footer-text": "Tekst w stopce", "footer-text": "Tekst w stopce",
"posts-per-page": "Posty na stronie:", "posts-per-page": "Liczba wpisów na stronę",
"site-url": "Adres strony", "site-url": "Adres URL strony",
"writting-settings": "Ustawienie pisania", "writting-settings": "Ustawienia pisania",
"url-filters": "Filtr URL", "url-filters": "Filtry URL",
"page": "Strona", "page": "Strona",
"pages": "Strony", "pages": "Strony",
"home": "Home", "home": "Strona główna",
"welcome-back": "Witaj ponownie", "welcome-back": "Cześć, ",
"language": "Język", "language": "Język",
"website": "Strona WWW", "website": "Powrót do strony",
"timezone": "Strefa czasowa", "timezone": "Strefa czasowa",
"locale": "Ustawienia regionalne", "locale": "Lokalizacja",
"new-post": "Nowy post", "new-post": "Nowy wpis",
"new-page": "Nowa strona", "new-page": "Nowa strona",
"html-and-markdown-code-supported": "Kod HTML i Markdown obsługiwany", "html-and-markdown-code-supported": "Znaczniki HTML i Markdown są wspierane",
"manage-posts": "Zarządzaj postami", "manage-posts": "Zarządzanie wpisami",
"published-date": "Data opublikowania", "published-date": "Data publikacji",
"modified-date": "Data modyfikacji", "modified-date": "Data modyfikacji",
"empty-title": "Brak tytułu", "empty-title": "Brak tytułu",
"plugins": "Wtyczki", "plugins": "Wtyczki",
@ -85,138 +85,154 @@
"first-name": "Imię", "first-name": "Imię",
"last-name": "Nazwisko", "last-name": "Nazwisko",
"bludit-version": "Wersja Bludit", "bludit-version": "Wersja Bludit",
"powered-by": "Silnik", "powered-by": "Napędza",
"recent-posts": "Najnowsze posty", "recent-posts": "Ostatnie wpisy",
"manage-pages": "Zarządzaj stronami", "manage-pages": "Zarządzanie stronami",
"advanced-options": "Zaawansowane opcje", "advanced-options": "Zaawansowane",
"user-deleted": "Użytkownik usunięty", "user-deleted": "Użytkownik został usunięty",
"page-added-successfully": "Strona dodany pomyślnie", "page-added-successfully": "Strona została pomyślnie dodana",
"post-added-successfully": "Post dodany pomyślnie", "post-added-successfully": "Wpis został pomyślnie dodany",
"the-post-has-been-deleted-successfully": "Post został pomyślnie usunięty", "the-post-has-been-deleted-successfully": "Wpis został pomyślnie usunięty",
"the-page-has-been-deleted-successfully": "Strona została pomyślnie usunięta", "the-page-has-been-deleted-successfully": "Strona została pomyślnie usunięta",
"username-or-password-incorrect": "Nazwa użytkownika lub hasło nieprawidłowe", "username-or-password-incorrect": "Nazwa użytkownika lub hasło jest nieprawidłowe",
"database-regenerated": "Baza danych regenerowana", "database-regenerated": "Baza danych została naprawiona",
"the-changes-have-been-saved": "Zmiany zostały zapisane", "the-changes-have-been-saved": "Zmiany zostały zapisane",
"enable-more-features-at": "Włącz więcej funkcji w", "enable-more-features-at": "Włącz więcej możliwości w",
"username-already-exists": "Nazwa użytkownika już istnieje", "username-already-exists": "Nazwa użytkownika już istnieje",
"username-field-is-empty": "Pole nazwa użytkownika jest puste", "username-field-is-empty": "Nazwa użytkownika nie może być pusta",
"the-password-and-confirmation-password-do-not-match":"Hasło i potwierdzenie hasła nie pasują do siebie", "the-password-and-confirmation-password-do-not-match":"Wprowadzone hasła nie pasują do siebie",
"user-has-been-added-successfully": "Użytkownik został dodany pomyślnie", "user-has-been-added-successfully": "Użytkownik został pomyślnie dodany",
"you-do-not-have-sufficient-permissions": "Nie masz wystarczających uprawnień dostępu do tej strony, skontaktuj się z administratorem.", "you-do-not-have-sufficient-permissions": "Nie masz dostępu do tego. Prosimy o kontakt z administratorem strony.",
"settings-advanced-writting-settings": "Ustawienia->Zaawansowane->Ustawienia pisania", "settings-advanced-writting-settings": "Ustawienia->Zaawansowane->Ustawienia pisania",
"new-posts-and-pages-synchronized": "Nowe posty i strony zsynchronizowane.", "new-posts-and-pages-synchronized": "Nowe wpisy i strony zostały zsynchronizowane.",
"you-can-choose-the-users-privilege": "Możesz wybrać przywilej użytkownika. Edytor może tylko pisać strony i posty.", "you-can-choose-the-users-privilege": "Wybierz przywileje tego użytkownika. Rola redaktora zezwala wyłącznie na tworzenie nowych wpisów i stron.",
"email-will-not-be-publicly-displayed": "E-mail nie będzie wyświetlany publicznie. Zalecany dla odzyskiwania hasła i powiadomień.", "email-will-not-be-publicly-displayed": "Adres email nie zostanie opublikowany, jednak zaleca się jego wprowadzenie w celu odzyskania utraconego hasła oraz powiadomień dostarczanych ze strony.",
"use-this-field-to-name-your-site": "Pole to służy do nazwy witryny, pojawi się na górze każdej stronie.", "use-this-field-to-name-your-site": "Nazwa strony zostanie wyświetlona na każdej podstronie Twojej witryny.",
"use-this-field-to-add-a-catchy-phrase": "Pole to służy do dodawania chwytliwego tytułu na swojej stronie.", "use-this-field-to-add-a-catchy-phrase": "Krótki i chwytliwy slogan Twojej strony.",
"you-can-add-a-site-description-to-provide": "Możesz dodać opis witryny, aby zapewnić krótki życiorys lub opis swojej strony.", "you-can-add-a-site-description-to-provide": "Wprowadź opis strony, aby wyjaśnić jej przeznaczenie.",
"you-can-add-a-small-text-on-the-bottom": "Możesz dodać mały tekst na dole każdej strony. np: prawo autorskie, właściciel, daty, itp", "you-can-add-a-small-text-on-the-bottom": "Krótka informacja wyświetlająca się na każdej podstronie. Dla przykładu: prawa autorskie, właściciel, data, etc.",
"number-of-posts-to-show-per-page": "Wyświetlana iczba postów na stronie.", "number-of-posts-to-show-per-page": "Liczba wpisów wyświetlanych na jednej stronie.",
"the-url-of-your-site": "Adres URL witryny.", "the-url-of-your-site": "Adres URL Twojej strony.",
"add-or-edit-description-tags-or": "Dodać lub edytować opis, tagi lub zmodyfikować przyjazne URL.", "add-or-edit-description-tags-or": "Dodaj lub edytuj opis, tagi oraz zmodyfikuj przyjazne adresy URL.",
"select-your-sites-language": "Wybierz język witryny.", "select-your-sites-language": "Wybierz język strony",
"select-a-timezone-for-a-correct": "Wybierz strefę czasową, dla prawidłowego wyświetlania data / czas na swojej stronie.", "select-a-timezone-for-a-correct": "Wybierz strefę czasową by prawidłowo wyświetlać datę/czas na Twojej stronie.",
"you-can-use-this-field-to-define-a-set-of": "Możesz użyć tego pola, aby zdefiniować zestaw parametrów związanych z językiem, kraju i szczególnych preferencji.", "you-can-use-this-field-to-define-a-set-of": "Możesz użyć to pole, aby zdefiniować parametry związane z językiem, krajem i innymi ustawieniami.",
"you-can-modify-the-url-which-identifies":"Możesz zmienić adres URL, który identyfikuje stronę lub pisać przy użyciu słów kluczowych w postaci czytelnej dla człowieka. Nie więcej niż 150 znaków.", "you-can-modify-the-url-which-identifies":"Możesz zmieniń adres URL wpisu lub strony, aby wyglądał bardziej czytelnie dla człowieka. Nie więcej niż 150 znaków.",
"this-field-can-help-describe-the-content": "To pole może pomóc opisać zawartość w kilku słowach. Nie więcej niż 150 znaków.", "this-field-can-help-describe-the-content": "To pole pomoże krótko opisać Twój wpis w kilku słowach. Nie więcej niż 150 znaków.",
"delete-the-user-and-all-its-posts":"Usuń użytkownika i wszystkich jego posty", "delete-the-user-and-all-its-posts":"Usuń tego użytkownika i wszystkie jego wpisy",
"delete-the-user-and-associate-its-posts-to-admin-user": "Usuń użytkownika i powiązać jego posty do użytkownika administratora", "delete-the-user-and-associate-its-posts-to-admin-user": "Usuń tego użytkownika a wszystkie jego wpisy przypisz administratorowi",
"read-more": "Więcej", "read-more": "Czytaj więcej",
"show-blog": "Zobacz blog", "show-blog": "Blog z wpisami",
"default-home-page": "Domyślna strona główna", "default-home-page": "Domyślna strona główna",
"version": "Wersja", "version": "Wersja",
"there-are-no-drafts": "Brak projektów.", "there-are-no-drafts": "Brak szkiców.",
"create-a-new-article-for-your-blog":"Utwórz nowy artykuł na swoim blogu.", "create-a-new-article-for-your-blog":"Utwórz nowy wpis na Twoim blogu.",
"create-a-new-page-for-your-website":"Tworzenie nowej strony na swojej stronie internetowej.", "create-a-new-page-for-your-website":"Utwórz nową stronę na Twoim blogu.",
"invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciół do współpracy na swojej stronie internetowej.", "invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciela do współpracy",
"change-your-language-and-region-settings":"Zmień ustawienia języka i regionu.", "change-your-language-and-region-settings":"Zmień język i ustawienia regionu strony.",
"language-and-timezone":"Język i strefa czasowa", "language-and-timezone":"Język i czas",
"author": "Autor", "author": "Autor",
"start-here": "Zacznij tutaj", "start-here": "Start",
"install-theme": "Zainstaluj motyw", "install-theme": "Zainstaluj motyw",
"first-post": "Pierwszy post", "first-post": "Pierwszy wpis ",
"congratulations-you-have-successfully-installed-your-bludit": "Gratulacje pomyślnie zainstalowano **Bludit**", "congratulations-you-have-successfully-installed-your-bludit": "Gratulację, Twój **Bludit** został zainstalowany pomyślnie.",
"whats-next": "Co dalej", "whats-next": "Co teraz?",
"manage-your-bludit-from-the-admin-panel": "Zarządzaj Bludit z [obszaru administracyjnego](./admin/)", "manage-your-bludit-from-the-admin-panel": "Zarządzaj blogiem z poziomu [kokpitu](./admin/)",
"follow-bludit-on": "Śledź Bludit na", "follow-bludit-on": "Obserwuj Bludit w serwisach",
"visit-the-support-forum": "Odwiedź [forum](http://forum.bludit.com) wsparcia", "visit-the-support-forum": "Zajrzyj na [forum wsparcia](http://forum.bludit.com) by otrzymać pomoc",
"read-the-documentation-for-more-information": "Przeczytaj [dokumentację](http://docs.bludit.com) po więcej informacji", "read-the-documentation-for-more-information": "Przeczytaj [dokumentacje](http://docs.bludit.com) by dowiedzieć się więcej informacji",
"share-with-your-friends-and-enjoy": "Podziel się z przyjaciółmi i ciesz się z Bludit", "share-with-your-friends-and-enjoy": "udostępnij tę stronę swoim znajomym i baw się dobrze",
"the-page-has-not-been-found": "Strona nie została odnaleziona.", "the-page-has-not-been-found": "Strona nie została odnaleziona.",
"error": "Błąd", "error": "Błąd",
"bludit-installer": "Bludit Instalator", "bludit-installer": "Instalator Bludit",
"welcome-to-the-bludit-installer": "Zapraszamy do instalatora Bludit", "welcome-to-the-bludit-installer": "Witamy w instalatorze Bludit",
"complete-the-form-choose-a-password-for-the-username-admin": "Wpisz hasło dla użytkownika « admin »", "complete-the-form-choose-a-password-for-the-username-admin": "Uzupełnij formularz, wybierz hasło dla użytkownika « admin »",
"password-visible-field": "Hasło, widoczne pola!", "password-visible-field": "Password, visible field!",
"install": "Instaluj", "install": "Zainstaluj",
"choose-your-language": "Wybierz język", "choose-your-language": "Wybierz swój język",
"next": "Dalej", "next": "Dalej",
"the-password-field-is-empty": "Pole hasło jest puste", "the-password-field-is-empty": "Proszę wprowadzić hasło",
"your-email-address-is-invalid":"Twój adres e-mail jest nieprawidłowy.", "your-email-address-is-invalid":"Wprowadzony adres email jest nieprawidłowy.",
"proceed-anyway": "Kontynuuj mimo to!", "proceed-anyway": "Kontynnuj mimo to!",
"drafts":"Projekt", "drafts":"Szkice",
"ip-address-has-been-blocked": "Adres IP został zablokowany.", "ip-address-has-been-blocked": "Adres IP został zablokowany.",
"try-again-in-a-few-minutes": "Spróbuj ponownie za kilka minut.", "try-again-in-a-few-minutes": "Spróbuj ponownie za kilka minut.",
"date": "Data", "date": "Data",
"scheduled": "Zaplanowane", "scheduled": "Zaplanowany",
"publish": "Opublikuj", "publish": "Opublikuj",
"please-check-your-theme-configuration": "Proszę sprawdzić konfigurację szablonu.", "please-check-your-theme-configuration": "Proszę sprawdzić ustawienia motywu.",
"plugin-label": "Etykieta pluginu", "plugin-label": "Etykieta wtyczki",
"enabled": "Włączony", "enabled": "Włączony",
"disabled": "Wyłączony", "disabled": "Wyłączony",
"cli-mode": "Tryb Cli", "cli-mode": "Tryb Cli",
"command-line-mode": "Tryb wiersza poleceń", "command-line-mode": "Wiersz poleceń",
"enable-the-command-line-mode-if-you-add-edit": "Włącz tryb linii poleceń, jeśli dodajesz, edytujesz lub usuwasz posty i strony z systemu plików", "enable-the-command-line-mode-if-you-add-edit": "Włącz wiersz poleceń, kiedy dodajesz, edytujesz lub usuwasz wpisy oraz strony poprzez system plików.",
"configure": "Konfiguruj", "configure": "Konfiguruj",
"uninstall": "Odinstaluj", "uninstall": "Odinstaluj",
"change-password": "Zmień hasło", "change-password": "Zmień hasło",
"to-schedule-the-post-just-select-the-date-and-time": "Aby zaplanować post, po prostu wybierz date i czas.", "to-schedule-the-post-just-select-the-date-and-time": "Aby zaplanować wpis, po prostu wybierz datę i czas.",
"write-the-tags-separated-by-commas": "Dodaj tagi oddzielając je przecinkami.", "write-the-tags-separated-by-commas": "Wprowadź tagi oddzielone przecinkiem.",
"status": "Status", "status": "Status",
"published": "Opublikowane", "published": "Opublikowany",
"scheduled-posts": "Zaplanowane posty", "scheduled-posts": "Zaplanowane wpisy",
"statics": "Statyki", "statistics": "Statystyki",
"name": "Nazwa", "name": "Nazwa",
"email-account-settings":"Ustawienia konta e-mail", "email-account-settings":"Ustawienia konta email",
"sender-email": "E-mail nadawcy", "sender-email": "Adres nadawcy",
"emails-will-be-sent-from-this-address":"Wiadomości e-mail będą wysyłane z tego adresu.", "emails-will-be-sent-from-this-address":"Wszystkie wiadomości email będą wysyłane z tego adresu.",
"bludit-login-access-code": "BLUDIT - Logowanie do kodu dostępu", "bludit-login-access-code": "BLUDIT - kod dostępu logowania",
"check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą dla kodu dostępu do logowania", "check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą",
"there-was-a-problem-sending-the-email":"Wystąpił problem podczas wysyłania wiadomości e-mail", "there-was-a-problem-sending-the-email":"Wystąpił problem z wysłaniem wiadomości",
"back-to-login-form": "Powrót do formularza logowania", "back-to-login-form": "Powrót do logowania",
"send-me-a-login-access-code": "Wyślij mi kod dostępu do logowania", "send-me-a-login-access-code": "Wyślij kod dostępu do logowania",
"get-login-access-code": "Pobierz kod dostępu do logowania", "get-login-access-code": "Otrzymaj kod dostępu logowania",
"email-notification-login-access-code": "<p>To jest powiadomienie z twojej strony {{WEBSITE_NAME}}</p><p>Poprosiłeś o kod dostępu do logowania, należy do kliknąć w link:</p><p>{{LINK}}</p>", "email-notification-login-access-code": "<p>Powiadomienie ze strony {{WEBSITE_NAME}}</p><p>Jeśli zarządałeś kodu dostępu do logowania, zajrzyj na stronę:</p><p>{{LINK}}</p>",
"there-are-no-scheduled-posts": "Nie ma zaplanowanych postów.", "there-are-no-scheduled-posts": "Brak zaplanowanych wpisów.",
"show-password": "Pokaż Hasło", "show-password": "Pokaż hasło",
"edit-or-remove-your=pages": "Edytuj lub usuń swoje strony.", "edit-or-remove-your=pages": "Edytuj lub usuń strony na Twoim blogu.",
"edit-or-remove-your-blogs-posts": "Edytuj lub usuń posty bloga.", "edit-or-remove-your-blogs-posts": "Edytuj lub usuń wpisy na Twoim blogu.",
"general-settings": "Ustawienia ogólne", "general-settings": "Ustawienia",
"advanced-settings": "Ustawienia zaawansowane", "advanced-settings": "Zaawansowane",
"manage-users": "Zarządzaj użytkownikami", "manage-users": "Zarządzanie użytkownikami",
"view-and-edit-your-profile": "Przeglądać i edytować swój profil.", "view-and-edit-your-profile": "Zobacz i edytuj swój profil.",
"password-must-be-at-least-6-characters-long": "Hasło musi mieć co najmniej 6 znaków", "password-must-be-at-least-6-characters-long": "Hasło musi zawierać przynajmniej 6 znaków",
"images": "Obrazy", "images": "Obrazki",
"upload-image": "Wgraj obraz", "upload-image": "Wyślij obrazek",
"drag-and-drop-or-click-here": "Przeciągnij i upuść lub kliknij tutaj", "drag-and-drop-or-click-here": "Przenieś i upuść lub kliknij tutaj",
"insert-image": "Wstaw obraz", "insert-image": "Wprowadź obrazek",
"supported-image-file-types": "Obsługiwane typy plików graficznych", "supported-image-file-types": "Wspierane formaty graficzne",
"date-format": "Format daty", "date-format": "Format daty",
"time-format": "Format czasu", "time-format": "Format czasu",
"chat-with-developers-and-users-on-gitter":"Czat z programistami i użytkownikami [Gitter](https://gitter.im/dignajar/bludit)", "chat-with-developers-and-users-on-gitter":"Dołącz do dyskusji z twórcami i użytkownikami na [Gitter](https://gitter.im/dignajar/bludit)",
"this-is-a-brief-description-of-yourself-our-your-site":"To jest krótki opis siebie lub swojej strony, by zmienić ten tekst przejdż do panelu administratora, ustawienia, wtyczki i skonfigurować wtyczkę O nas.", "this-is-a-brief-description-of-yourself-our-your-site":"To jest krótki opis strony lub Ciebie. Aby zmienić treść tej strony udaj się do kokpitu, a następnie przejdź w ustawienia, wtyczki i wybierz konfigurację na liście O mnie.",
"profile-picture": "Zdjęcie profilowe", "profile-picture": "Zdjęcie profilowe",
"the-about-page-is-very-important": "Strona O nas jest ważnym narzędziem dla potencjalnych klientów i partnerów. Dla tych, którzy się zastanawiają, kto jest na stronie internetowej, twoja informacja o stronie jest pierwszym źródłem informacji.", "the-about-page-is-very-important": "Strona o mnie może okazać się ważnym narzędziem dla potencjalnych klientów i patrtnerów. Ci, którzy będą są zainteresowani sprawdzić, kto prowadzi stronę, najchętniej udadzą się właśnie przeczytać informacje o jej autorze.",
"change-this-pages-content-on-the-admin-panel": "Zmień zawartość tej strony w panelu administratora, zarządzanie, strony i kliknij na stronę opisującą.", "change-this-pages-content-on-the-admin-panel": "Możesz zmienić treść tej strony przechodząc kolejno do kokpitu, zarządzanie, strony.",
"about-your-site-or-yourself": "Informacje o stronie lub o sobie", "about-your-site-or-yourself": "O stronie lub o Tobie",
"welcome-to-bludit": "Witamy w Bludit", "welcome-to-bludit": "Witamy w Bludit",
"site-information": "Informacje o witrynie", "site-information": "Informacje o stronie",
"date-and-time-formats": "Format daty i czasu", "date-and-time-formats": "Format daty i czasu",
"activate": "Aktywuj", "activate": "Aktywuj",
"deactivate": "Dezaktywuj" "deactivate": "Dezaktywuj",
}
"cover-image": "Okładka wpisu",
"blog": "Blog",
"more-images": "Więcej obrazków",
"double-click-on-the-image-to-add-it": "Kliknij dwukrotnie w obrazek by go umieścić we wpisie.",
"click-here-to-cancel": "Anuluj.",
"type-the-tag-and-press-enter": "Wprowadź tag i wciśnij enter.",
"manage-your-bludit-from-the-admin-panel": "Zarządzaj stroną poprzez [kokpit]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Brak obrazków",
"click-on-the-image-for-options": "Kliknij na obrazek, aby wyświetlić więcej opcji.",
"set-as-cover-image": "Ustaw jako okładkę wpisu",
"delete-image": "Usuń",
"image-description": "Opis obrazka",
"social-networks-links": "Odnośniki do serwisów społecznościowych"
}

View File

@ -6,7 +6,7 @@
"last-update": "2015-11-17", "last-update": "2015-11-17",
"author": "Сергей Ворон", "author": "Сергей Ворон",
"email": "sergey@voron.pw", "email": "sergey@voron.pw",
"website": "voron.pw" "website": "http://voron.pw"
}, },
"username": "Логин", "username": "Логин",
@ -118,7 +118,7 @@
"select-a-timezone-for-a-correct": "Выберите часовой пояс для корректного отображения даты и времени на сайте.", "select-a-timezone-for-a-correct": "Выберите часовой пояс для корректного отображения даты и времени на сайте.",
"you-can-use-this-field-to-define-a-set-of": "Вы можете использовать это поле, чтобы определить набор параметров, связанных с языком, страной и особых предпочтений.", "you-can-use-this-field-to-define-a-set-of": "Вы можете использовать это поле, чтобы определить набор параметров, связанных с языком, страной и особых предпочтений.",
"you-can-modify-the-url-which-identifies":"Вы можете изменить URL, который идентифицирует страницу или запись с помощью удобочитаемых ключевых слов. Не более 150 символов.", "you-can-modify-the-url-which-identifies":"Вы можете изменить URL, который идентифицирует страницу или запись с помощью удобочитаемых ключевых слов. Не более 150 символов.",
"this-field-can-help-describe-the-content": "Это поле может помочь описать содержимое в нескольких словах. Не более 150 символов.", "this-field-can-help-describe-the-content": "Это поле может помочь описать содержимое в нескольких словах. Не более 150 символов.",
"delete-the-user-and-all-its-posts":"Удалить пользователя и все его записи", "delete-the-user-and-all-its-posts":"Удалить пользователя и все его записи",
"delete-the-user-and-associate-its-posts-to-admin-user": "Удалить пользователя и связать его записи с администратором", "delete-the-user-and-associate-its-posts-to-admin-user": "Удалить пользователя и связать его записи с администратором",
@ -140,8 +140,8 @@
"whats-next": "Что дальше", "whats-next": "Что дальше",
"manage-your-bludit-from-the-admin-panel": "Управляйте Bludit из [панели управления](./admin/)", "manage-your-bludit-from-the-admin-panel": "Управляйте Bludit из [панели управления](./admin/)",
"follow-bludit-on": "Следуйте за Bludit в", "follow-bludit-on": "Следуйте за Bludit в",
"visit-the-support-forum": "Посетите [форум](http://forum.bludit.com) для получения поддержки", "visit-the-support-forum": "Посетите [форум](https://forum.bludit.com) для получения поддержки",
"read-the-documentation-for-more-information": "Прочтите [документацию](http://docs.bludit.com) для получения большей информации", "read-the-documentation-for-more-information": "Прочтите [документацию](https://docs.bludit.com) для получения большей информации",
"share-with-your-friends-and-enjoy": "Делитесь с друзьями и наслаждайтесь", "share-with-your-friends-and-enjoy": "Делитесь с друзьями и наслаждайтесь",
"the-page-has-not-been-found": "Страница не найдена.", "the-page-has-not-been-found": "Страница не найдена.",
"error": "Ошибка", "error": "Ошибка",
@ -159,7 +159,7 @@
"ip-address-has-been-blocked": "IP адрес заблокирован.", "ip-address-has-been-blocked": "IP адрес заблокирован.",
"try-again-in-a-few-minutes": "Попробуйте еще раз через несколько минут.", "try-again-in-a-few-minutes": "Попробуйте еще раз через несколько минут.",
"date": "Дата", "date": "Дата",
"scheduled": "Запланировано", "scheduled": "Запланировано",
"publish": "Опубликовать", "publish": "Опубликовать",
"please-check-your-theme-configuration": "Пожалуйста, проверьте конфигурацию вашей темы.", "please-check-your-theme-configuration": "Пожалуйста, проверьте конфигурацию вашей темы.",
@ -169,7 +169,7 @@
"cli-mode": "Режим CLI", "cli-mode": "Режим CLI",
"command-line-mode": "Режим командной строки", "command-line-mode": "Режим командной строки",
"enable-the-command-line-mode-if-you-add-edit": "Включите режим командной строки, если вы добавляете, изменяете или удаляете записи и страницы из файловой системы", "enable-the-command-line-mode-if-you-add-edit": "Включите режим командной строки, если вы добавляете, изменяете или удаляете записи и страницы из файловой системы",
"configure": "Настроить", "configure": "Настроить",
"uninstall": "Удалить", "uninstall": "Удалить",
"change-password": "Изменить пароль", "change-password": "Изменить пароль",
@ -214,18 +214,30 @@
"change-this-pages-content-on-the-admin-panel": "Измените содержимое этой страницы в панели управления, Управление, Страницы и нажмите на страницу about.", "change-this-pages-content-on-the-admin-panel": "Измените содержимое этой страницы в панели управления, Управление, Страницы и нажмите на страницу about.",
"about-your-site-or-yourself": "О Вашем сайте или о вас", "about-your-site-or-yourself": "О Вашем сайте или о вас",
"welcome-to-bludit": "Добро пожаловать в Bludit", "welcome-to-bludit": "Добро пожаловать в Bludit",
"site-information": "Информация о сайте", "site-information": "Информация о сайте",
"date-and-time-formats": "Форматы даты и времени", "date-and-time-formats": "Форматы даты и времени",
"activate": "Активировать", "activate": "Активировать",
"deactivate": "Деактивировать", "deactivate": "Деактивировать",
"cover-image": "Обложка", "cover-image": "Обложка",
"blog": "Блог", "blog": "Блог",
"more-images": "Еще изображения", "more-images": "Еще изображения",
"double-click-on-the-image-to-add-it": "Дважды щелкните по изображению, чтобы добавить его.",
"click-here-to-cancel": "Нажмите здесь, чтобы отменить.", "click-here-to-cancel": "Нажмите здесь, чтобы отменить.",
"type-the-tag-and-press-enter": "Введите тег и нажмите клавишу Enter.", "type-the-tag-and-press-enter": "Введите тег и нажмите клавишу Enter.",
"add": "Добавить",
"manage-your-bludit-from-the-admin-panel": "Управляйте Bludit из [панели управления]({{ADMIN_AREA_LINK}})", "manage-your-bludit-from-the-admin-panel": "Управляйте Bludit из [панели управления]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Изображений нет" "there-are-no-images":"Изображений нет",
"click-on-the-image-for-options": "Нажмите на изображение для выбора опций.",
"set-as-cover-image": "Установить как обложку",
"delete-image": "Удалить изображение",
"image-description": "Описание изображения",
"social-networks": "Социальные сети",
"twitter-username": "Имя пользователя в Twitter",
"facebook-username": "Имя пользователя в Facebook",
"google-username": "Имя пользователя в Google",
"instagram-username": "Имя пользователя в Instagram"
} }

View File

@ -6,7 +6,7 @@
"last-update": "2015-12-02", "last-update": "2015-12-02",
"author": "ffahri", "author": "ffahri",
"email": "", "email": "",
"website": "github.com/ffahri" "website": "https://github.com/ffahri"
}, },
"username": "Kullanıcı Adı", "username": "Kullanıcı Adı",
@ -140,8 +140,8 @@
"whats-next": "Sırada Ne Var", "whats-next": "Sırada Ne Var",
"manage-your-bludit-from-the-admin-panel": "Bluditini buradan yönet [yönetici alanı](./admin/)", "manage-your-bludit-from-the-admin-panel": "Bluditini buradan yönet [yönetici alanı](./admin/)",
"follow-bludit-on": "Follow Bludit on", "follow-bludit-on": "Follow Bludit on",
"visit-the-support-forum": "Destek için [forum](http://forum.bludit.com) forumu ziyaret edin", "visit-the-support-forum": "Destek için [forum](https://forum.bludit.com) forumu ziyaret edin",
"read-the-documentation-for-more-information": "Daha fazla bilgi için [documentation](http://docs.bludit.com) dökümanları okuyun", "read-the-documentation-for-more-information": "Daha fazla bilgi için [documentation](https://docs.bludit.com) dökümanları okuyun",
"share-with-your-friends-and-enjoy": "Arkadaşlarına paylaş ve eğlen", "share-with-your-friends-and-enjoy": "Arkadaşlarına paylaş ve eğlen",
"the-page-has-not-been-found": "Sayfa bulunamadı.", "the-page-has-not-been-found": "Sayfa bulunamadı.",
"error": "Hata", "error": "Hata",
@ -219,7 +219,7 @@
"date-and-time-formats": "Tarih ve saat formatları", "date-and-time-formats": "Tarih ve saat formatları",
"activate": "Aktifleştir", "activate": "Aktifleştir",
"deactivate": "Deaktive et", "deactivate": "Deaktive et",
"cover-image": "Kapak resmi", "cover-image": "Kapak resmi",
"blog": "Blog", "blog": "Blog",
"more-images": "Daha çok resim", "more-images": "Daha çok resim",

View File

@ -3,10 +3,10 @@
{ {
"native": "Українська (Україна)", "native": "Українська (Україна)",
"english-name": "Ukrainian", "english-name": "Ukrainian",
"last-update": "2016-01-23", "last-update": "2016-02-20",
"author": "Allec Bernz", "author": "Allec Bernz",
"email": "admin@allec.info", "email": "admin@allec.info",
"website": "allec.info" "website": "http://allec.info"
}, },
"username": "Ім'я користувача", "username": "Ім'я користувача",
@ -37,7 +37,7 @@
"draft": "Чернетка", "draft": "Чернетка",
"delete": "Видалити", "delete": "Видалити",
"registered": "Зареєстрований", "registered": "Зареєстрований",
"Notifications": "Сповіщення", "notifications": "Повідомлення",
"profile": "Профіль", "profile": "Профіль",
"email": "Email", "email": "Email",
"settings": "Параметри", "settings": "Параметри",
@ -140,8 +140,8 @@
"whats-next": "Що далі", "whats-next": "Що далі",
"follow-bludit-on": "Слідуйте за Bludit на", "follow-bludit-on": "Слідуйте за Bludit на",
"visit-the-support-forum": "Відвідайте [форум](http://forum.bludit.com) для підтримки", "visit-the-support-forum": "Відвідайте [форум](https://forum.bludit.com) для підтримки",
"read-the-documentation-for-more-information": "Читайте [документацію](http://docs.bludit.com) для отримання додаткової інформації", "read-the-documentation-for-more-information": "Читайте [документацію](https://docs.bludit.com) для отримання додаткової інформації",
"share-with-your-friends-and-enjoy": "Поділіться з друзями та насолоджуйтеся", "share-with-your-friends-and-enjoy": "Поділіться з друзями та насолоджуйтеся",
"the-page-has-not-been-found": "Сторінку не знайдено.", "the-page-has-not-been-found": "Сторінку не знайдено.",
"error": "Помилка", "error": "Помилка",
@ -223,9 +223,17 @@
"cover-image": "Зображення обкладинки", "cover-image": "Зображення обкладинки",
"blog": "Блог", "blog": "Блог",
"more-images": "Більше зображень", "more-images": "Більше зображень",
"double-click-on-the-image-to-add-it": "Двічі клацніть на зображення, щоб додати його.",
"click-here-to-cancel": "Натисніть тут, щоб скасувати.", "click-here-to-cancel": "Натисніть тут, щоб скасувати.",
"type-the-tag-and-press-enter": "Введіть тег і натисніть Enter.", "type-the-tag-and-press-enter": "Введіть тег і натисніть Enter.",
"add": "Додати",
"manage-your-bludit-from-the-admin-panel": "Керуйте вашим Bludit через [панель управління]({{ADMIN_AREA_LINK}})", "manage-your-bludit-from-the-admin-panel": "Керуйте вашим Bludit через [панель управління]({{ADMIN_AREA_LINK}})",
"there-are-no-images":"Немає зображень" "there-are-no-images":"Немає зображень",
"click-on-the-image-for-options": "Натисніть на зображення, щоб переглянути параметри.",
"set-as-cover-image": "Встановити в якості обкладинки",
"delete-image": "Видалити зображення",
"image-description": "Опис зображення",
"social-networks-links": "Лінки на соціальні мережі"
} }

View File

@ -140,8 +140,8 @@
"whats-next": "接下來", "whats-next": "接下來",
"manage-your-bludit-from-the-admin-panel": "透過[admin area](./admin/)管理您的Bludit", "manage-your-bludit-from-the-admin-panel": "透過[admin area](./admin/)管理您的Bludit",
"follow-bludit-on": "Follow Bludit on", "follow-bludit-on": "Follow Bludit on",
"visit-the-support-forum": "拜訪[forum](http://forum.bludit.com)來取得支援", "visit-the-support-forum": "拜訪[forum](https://forum.bludit.com)來取得支援",
"read-the-documentation-for-more-information": "閱讀[documentation](http://docs.bludit.com)來獲得更多資訊", "read-the-documentation-for-more-information": "閱讀[documentation](https://docs.bludit.com)來獲得更多資訊",
"share-with-your-friends-and-enjoy": "分享給您的朋友們", "share-with-your-friends-and-enjoy": "分享給您的朋友們",
"the-page-has-not-been-found": "此頁面不存在", "the-page-has-not-been-found": "此頁面不存在",
"error": "錯誤", "error": "錯誤",
@ -197,7 +197,7 @@
"advanced-settings": "進階設定", "advanced-settings": "進階設定",
"manage-users": "管理使用者", "manage-users": "管理使用者",
"view-and-edit-your-profile": "查看與編輯您的個人資料。", "view-and-edit-your-profile": "查看與編輯您的個人資料。",
"password-must-be-at-least-6-characters-long": "密碼長度必須在6字元以上", "password-must-be-at-least-6-characters-long": "密碼長度必須在6字元以上",
"images": "圖片", "images": "圖片",
"upload-image": "上傳圖片", "upload-image": "上傳圖片",
@ -213,9 +213,9 @@
"change-this-pages-content-on-the-admin-panel": "在管理介面中更改此頁面的內容,管理/頁面,接著點選關於頁面。", "change-this-pages-content-on-the-admin-panel": "在管理介面中更改此頁面的內容,管理/頁面,接著點選關於頁面。",
"about-your-site-or-yourself": "關於您的網站或是您自己", "about-your-site-or-yourself": "關於您的網站或是您自己",
"welcome-to-bludit": "歡迎使用Bludit", "welcome-to-bludit": "歡迎使用Bludit",
"site-information": "網站資訊", "site-information": "網站資訊",
"date-and-time-formats": "日期與時間格式", "date-and-time-formats": "日期與時間格式",
"activate": "啟用", "activate": "啟用",
"deactivate": "關閉" "deactivate": "關閉"
} }

View File

@ -2,6 +2,6 @@
"plugin-data": "plugin-data":
{ {
"name": "Hakkında", "name": "Hakkında",
"description": "Senin veya siten hakkında kısa bilgiler", "description": "Senin veya siten hakkında kısa bilgiler"
} }
} }

View File

@ -2,7 +2,7 @@
"plugin-data": "plugin-data":
{ {
"name": "Disqus yorum sistemi", "name": "Disqus yorum sistemi",
"description": "Diqus siteler için yorum hostingi yapan bir hostingdir.Eklentiyi kullanmadan önce Disqus.com adresine kayıt olmanız gerekmektedir.", "description": "Diqus siteler için yorum hostingi yapan bir hostingdir.Eklentiyi kullanmadan önce Disqus.com adresine kayıt olmanız gerekmektedir."
}, },
"disqus-shortname": "Disqus", "disqus-shortname": "Disqus",
"enable-disqus-on-pages": "Sayfalar için Disqus'ı etkinleştir.", "enable-disqus-on-pages": "Sayfalar için Disqus'ı etkinleştir.",

View File

@ -0,0 +1,12 @@
{
"plugin-data":
{
"name": "Система коментарів Disqus",
"description": "Disqus надає послуги хостингу коментарів для веб-сайтів. Необхідно зареєструватися на Disqus.com перед використанням цього плагіна."
},
"disqus-shortname": "Коротке ім'я в Disqus",
"enable-disqus-on-pages": "Включити Disqus на сторінках",
"enable-disqus-on-posts": "Включити Disqus у публікаціях",
"enable-disqus-on-default-home-page": "Включити Disqus на домашній сторінці"
}

View File

@ -2,7 +2,7 @@
"plugin-data": "plugin-data":
{ {
"name": "Google Araçları", "name": "Google Araçları",
"description": "Bu eklenti Google Webmaster Araçlarını kullanabilmeniz ve sitenizin Google Analytics tarafından incelenebilmesi için geçerli bir meta tag ve Javascript kodu oluşturur.", "description": "Bu eklenti Google Webmaster Araçlarını kullanabilmeniz ve sitenizin Google Analytics tarafından incelenebilmesi için geçerli bir meta tag ve Javascript kodu oluşturur."
}, },
"google-webmasters-tools": "Google Webmaster Araçları", "google-webmasters-tools": "Google Webmaster Araçları",
"google-analytics-tracking-id": "Google Analytics İzleme No", "google-analytics-tracking-id": "Google Analytics İzleme No",

View File

@ -0,0 +1,12 @@
{
"plugin-data":
{
"name": "Інструменти Google",
"description": "Цей плагін генерує мета-тег для перевірки вашого сайту у Google Webmasters Tools і JavaScript-код для відстеження вашого сайту з Google Analytics."
},
"google-webmasters-tools": "Google Webmasters tools",
"google-analytics-tracking-id": "КОД відстеження Google Analytics",
"complete-this-field-with-the-google-site-verification": "Заповніть це поле для перевірки власника сайту.",
"complete-this-field-with-the-tracking-id": "Заповніть це поле для генерації Javascript-коду відстеження у Google Analytics."
}

View File

@ -0,0 +1,10 @@
{
"plugin-data":
{
"name": "Последни публикации",
"description": "Показва най-новите публикации."
},
"amount-of-posts": "Брой последни публикации",
"show-home-link": "Покажи връзка за начало"
}

View File

@ -0,0 +1,10 @@
{
"plugin-data":
{
"name": "Останні публікації",
"description": "Показує останні опубліковані публікації."
},
"amount-of-posts": "Кількість публікацій",
"show-home-link": "Показати лінк на домашню сторінку"
}

View File

@ -5,6 +5,6 @@
"description": "Поставете вашия сайт на режим на поддръжка." "description": "Поставете вашия сайт на режим на поддръжка."
}, },
"enable-maintence-mode": "Активиране режим на поддръжка ", "enable-maintenance-mode": "Активиране режим на поддръжка ",
"message": "Съобщение" "message": "Съобщение"
} }

View File

@ -5,6 +5,6 @@
"description": "Wartungsmodus für die Website mit Zugang zum Admin-Bereich." "description": "Wartungsmodus für die Website mit Zugang zum Admin-Bereich."
}, },
"enable-maintence-mode": "Aktivierung des Wartungsmodus", "enable-maintenance-mode": "Aktivierung des Wartungsmodus",
"message": "Auf der Website angezeigter Hinweis" "message": "Auf der Website angezeigter Hinweis"
} }

View File

@ -5,6 +5,6 @@
"description": "Wartungsmodus für die Website mit Zugang zum Admin-Bereich." "description": "Wartungsmodus für die Website mit Zugang zum Admin-Bereich."
}, },
"enable-maintence-mode": "Aktivierung des Wartungsmodus", "enable-maintenance-mode": "Aktivierung des Wartungsmodus",
"message": "Auf der Website angezeigter Hinweis" "message": "Auf der Website angezeigter Hinweis"
} }

View File

@ -5,6 +5,6 @@
"description": "Set your site on maintenance mode, you can access to admin area." "description": "Set your site on maintenance mode, you can access to admin area."
}, },
"enable-maintence-mode": "Enable maintence mode", "enable-maintenance-mode": "Enable maintenance mode",
"message": "Message" "message": "Message"
} }

View File

@ -5,6 +5,6 @@
"description": "Configura el sitio en modo mantenimiento, se puede acceder al panel de administración mientras tanto." "description": "Configura el sitio en modo mantenimiento, se puede acceder al panel de administración mientras tanto."
}, },
"enable-maintence-mode": "Habilitar modo mantenimiento", "enable-maintenance-mode": "Habilitar modo mantenimiento",
"message": "Mensaje" "message": "Mensaje"
} }

View File

@ -5,6 +5,6 @@
"description": "Configurer votre site sur le mode de maintenance, vous pouvez accéder à la zone d'administration." "description": "Configurer votre site sur le mode de maintenance, vous pouvez accéder à la zone d'administration."
}, },
"enable-maintence-mode": "Activer le mode de maintence", "enable-maintenance-mode": "Activer le mode de maintenance",
"message": "Message" "message": "Message"
} }

View File

@ -5,6 +5,6 @@
"description": "メンテンナンス・モードに設定します。管理エリアにはアクセスできます。" "description": "メンテンナンス・モードに設定します。管理エリアにはアクセスできます。"
}, },
"enable-maintence-mode": "メンテンナンス・モードを有効にする", "enable-maintenance-mode": "メンテンナンス・モードを有効にする",
"message": "メッセージ" "message": "メッセージ"
} }

View File

@ -5,6 +5,6 @@
"description": "Przełącz stronę w tryb konwersacji (wówczas działać będzie tylko kokpit)." "description": "Przełącz stronę w tryb konwersacji (wówczas działać będzie tylko kokpit)."
}, },
"enable-maintence-mode": "Włącz tryb konwersacji", "enable-maintenance-mode": "Włącz tryb konwersacji",
"message": "Wiadomość" "message": "Wiadomość"
} }

View File

@ -5,6 +5,6 @@
"description": "Установите ваш сайт в режим обслуживания, вы можете получить доступ к панели управления." "description": "Установите ваш сайт в режим обслуживания, вы можете получить доступ к панели управления."
}, },
"enable-maintence-mode": "Включить режим обслуживания", "enable-maintenance-mode": "Включить режим обслуживания",
"message": "Сообщение" "message": "Сообщение"
} }

View File

@ -2,9 +2,9 @@
"plugin-data": "plugin-data":
{ {
"name": "Bakım Modu", "name": "Bakım Modu",
"description": "Sitenizi bakım moduna alın, admin paneline erişmeye devam edebilirsiniz.", "description": "Sitenizi bakım moduna alın, admin paneline erişmeye devam edebilirsiniz."
}, },
"enable-maintence-mode": "Bakım modunu etkinleştir.", "enable-maintenance-mode": "Bakım modunu etkinleştir.",
"message": "Mesaj" "message": "Mesaj"
} }

View File

@ -0,0 +1,10 @@
{
"plugin-data":
{
"name": "Режим обслуговування",
"description": "Перемикає ваш сайт у режим обслуговування, але ви матимете доступ до адмінки."
},
"enable-maintenance-mode": "Включити режим обслуговування",
"message": "Message"
}

View File

@ -5,6 +5,6 @@
"description": "設定您的網站為維護模式,但是您依然可以登入到管理介面" "description": "設定您的網站為維護模式,但是您依然可以登入到管理介面"
}, },
"enable-maintence-mode": "啟用維護模式", "enable-maintenance-mode": "啟用維護模式",
"message": "訊息" "message": "訊息"
} }

View File

@ -1,9 +1,9 @@
{ {
"author": "Bludit", "author": "Bludit",
"email": "", "email": "",
"website": "https://github.com/dignajar/bludit-plugins", "website": "https://plugins.bludit.com",
"version": "1.1", "version": "1.1",
"releaseDate": "2016-02-13", "releaseDate": "2016-02-20",
"license": "MIT", "license": "MIT",
"requires": "Bludit v1.1", "requires": "Bludit v1.1",
"notes": "" "notes": ""

View File

@ -1,11 +1,11 @@
<?php <?php
class pluginMaintanceMode extends Plugin { class pluginMaintenanceMode extends Plugin {
public function init() public function init()
{ {
$this->dbFields = array( $this->dbFields = array(
'enable'=>true, 'enable'=>false,
'message'=>'Temporarily down for maintenance.' 'message'=>'Temporarily down for maintenance.'
); );
} }
@ -16,7 +16,7 @@ class pluginMaintanceMode extends Plugin {
$html = '<div>'; $html = '<div>';
$html .= '<input name="enable" id="jsenable" type="checkbox" value="true" '.($this->getDbField('enable')?'checked':'').'>'; $html .= '<input name="enable" id="jsenable" type="checkbox" value="true" '.($this->getDbField('enable')?'checked':'').'>';
$html .= '<label class="forCheckbox" for="jsenable">'.$Language->get('Enable maintence mode').'</label>'; $html .= '<label class="forCheckbox" for="jsenable">'.$Language->get('Enable maintenance mode').'</label>';
$html .= '</div>'; $html .= '</div>';
$html .= '<div>'; $html .= '<div>';

View File

@ -2,7 +2,7 @@
"plugin-data": "plugin-data":
{ {
"name": "Sayfa listesi", "name": "Sayfa listesi",
"description": "Sayfaları listeler.", "description": "Sayfaları listeler."
}, },
"home": "Anasayfa", "home": "Anasayfa",

View File

@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "RSS-канал",
"description": "Цей плагін генерувати RSS для вашого сайту."
}
}

View File

@ -2,7 +2,7 @@
"plugin-data": "plugin-data":
{ {
"name": "SimpleMDE", "name": "SimpleMDE",
"description": "Basit, güzel ve gömülü bir Javascript editörü ,@WesCossick tarafından yapılmıştır. Bludit için uyarlayan Diego Najar.", "description": "Basit, güzel ve gömülü bir Javascript editörü ,@WesCossick tarafından yapılmıştır. Bludit için uyarlayan Diego Najar."
}, },
"toolbar": "Araçlar", "toolbar": "Araçlar",
"tab-size": "Boşluk boyutu", "tab-size": "Boşluk boyutu",

View File

@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Sitemap",
"description": "Цей плагін генерує файл sitemap.xml, де перераховані веб-сторінки вашого сайту, щоб повідомити пошуковим системам про зміст сайту."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data": "plugin-data":
{ {
"name": "Tag listesi", "name": "Tag listesi",
"description": "Bütün tagları gösterir.", "description": "Bütün tagları gösterir."
} }
} }

View File

@ -0,0 +1,8 @@
{
"theme-data":
{
"name": "Blogme",
"description": "Мінімалістська та чиста тема, з підтримкою зображення обкладинки, на основі Future Imperfect."
},
"top": "Top"
}

View File

@ -2,9 +2,9 @@
"author": "n33co & diego", "author": "n33co & diego",
"email": "", "email": "",
"website": "https://github.com/dignajar/bludit-themes", "website": "https://github.com/dignajar/bludit-themes",
"version": "1.0", "version": "1.1",
"releaseDate": "2016-01-21", "releaseDate": "2016-01-21",
"license": "CCA 3.0", "license": "CCA 3.0",
"requires": "Bludit v1.0", "requires": "Bludit v1.1",
"notes": "This theme is based on Future Imperfect, all credits to the author n33co." "notes": "This theme is based on Future Imperfect, all credits to the author n33co."
} }

View File

@ -1,19 +1,22 @@
<title><?php echo $Site->title() ?></title> <?php
<meta charset="utf-8"> Theme::charset('utf-8');
<meta name="viewport" content="width=device-width, initial-scale=1"> Theme::viewport('width=device-width, initial-scale=1');
<meta name="description" content="<?php echo $Site->description() ?>">
Theme::title();
Theme::description();
Theme::favicon('favicon.png');
?>
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/html5shiv.js"></script><![endif]--> <!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/main.css"> <link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/main.css">
<!--[if lte IE 9]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie9.css" /><![endif]--> <!--[if lte IE 9]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie8.css" /><![endif]--> <!--[if lte IE 8]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie8.css" /><![endif]-->
<link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/bludit.css"> <link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/bludit.css">
<link rel="shortcut icon" href="<?php echo HTML_PATH_THEME ?>img/favicon.png" type="image/png">
<?php <?php
// Add local Fonts Awesome
Theme::fontAwesome(); Theme::fontAwesome();
// Plugins for head // Plugins for head

View File

@ -11,18 +11,31 @@
<!-- Footer --> <!-- Footer -->
<section id="footer"> <section id="footer">
<ul class="icons"> <ul class="icons">
<!-- <li><a href="#" class="fa-twitter"><span class="label">Twitter</span></a></li> --> <?php
<!-- <li><a href="#" class="fa-facebook"><span class="label">Facebook</span></a></li> --> if(trim($Site->twitter())) {
<!-- <li><a href="#" class="fa-instagram"><span class="label">Instagram</span></a></li> --> echo '<li><a href="'.$Site->twitter().'" class="fa-twitter"><span class="label">Twitter</span></a></li>';
<?php }
if( $plugins['all']['pluginRSS']->installed() ) {
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
}
if( $plugins['all']['pluginSitemap']->installed() ) { if($Site->facebook()) {
echo '<li><a href="'.DOMAIN_BASE.'sitemap.xml'.'" class="fa-sitemap"><span class="label">Sitemap</span></a></li>'; echo '<li><a href="'.$Site->facebook().'" class="fa-facebook"><span class="label">Facebook</span></a></li>';
} }
?>
if($Site->instagram()) {
echo '<li><a href="'.$Site->instagram().'" class="fa-instagram"><span class="label">Instagram</span></a></li>';
}
if($Site->github()) {
echo '<li><a href="'.$Site->github().'" class="fa-github"><span class="label">Github</span></a></li>';
}
if( $plugins['all']['pluginRSS']->installed() ) {
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
}
if( $plugins['all']['pluginSitemap']->installed() ) {
echo '<li><a href="'.DOMAIN_BASE.'sitemap.xml'.'" class="fa-sitemap"><span class="label">Sitemap</span></a></li>';
}
?>
</ul> </ul>
<p class="copyright"><?php echo $Site->footer() ?> | <a href="http://www.bludit.com">Bludit</a></p> <p class="copyright"><?php echo $Site->footer() ?> | <a href="http://www.bludit.com">Bludit</a></p>
</section> </section>

View File

@ -17,5 +17,5 @@
} }
img { img {
max-width: 100%; width: 100%;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,7 @@
{
"theme-data":
{
"name": "Future Imperfect",
"description": "Чиста та дуже адаптивна тема від @n33co адаптована Diego Najar для Bludit."
}
}

View File

@ -2,9 +2,9 @@
"author": "n33co", "author": "n33co",
"email": "", "email": "",
"website": "http://html5up.net", "website": "http://html5up.net",
"version": "1.0", "version": "1.1",
"releaseDate": "2015-11-01", "releaseDate": "2015-11.11",
"license": "CCA 3.0", "license": "CCA 3.0",
"requires": "Bludit v1.0", "requires": "Bludit v1.1",
"notes": "" "notes": ""
} }

View File

@ -1,10 +1,14 @@
<title><?php echo $Site->title() ?></title> <?php
<meta charset="utf-8"> Theme::charset('utf-8');
<meta name="viewport" content="width=device-width, initial-scale=1"> Theme::viewport('width=device-width, initial-scale=1');
<meta name="description" content="<?php echo $Site->description() ?>">
Theme::title();
Theme::description();
Theme::favicon('favicon.png');
?>
<!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/html5shiv.js"></script><![endif]--> <!--[if lte IE 8]><script src="<?php echo HTML_PATH_THEME ?>assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/main.css"> <link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/main.css">
<!--[if lte IE 9]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie9.css" /><![endif]--> <!--[if lte IE 9]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie8.css" /><![endif]--> <!--[if lte IE 8]><link rel="stylesheet" href="<?php echo HTML_PATH_THEME ?>assets/css/ie8.css" /><![endif]-->
@ -12,9 +16,10 @@
<?php <?php
// Add local Fonts Awesome
Theme::fontAwesome();
// Plugins for head // Plugins for head
Theme::plugins('siteHead'); Theme::plugins('siteHead');
Theme::fontAwesome();
?> ?>

View File

@ -1,6 +1,6 @@
<!-- Intro --> <!-- Intro -->
<section id="intro"> <section id="intro">
<a href="<?php echo $Site->url() ?>" class="logo"><img src="<?php echo HTML_PATH_THEME ?>images/logo.jpg" alt=""></a> <a href="<?php echo $Site->url() ?>" class="logo"><img src="<?php echo HTML_PATH_THEME ?>img/logo.jpg" alt=""></a>
<header> <header>
<h2><?php echo $Site->title() ?></h2> <h2><?php echo $Site->title() ?></h2>
<p><?php echo $Site->description() ?></p> <p><?php echo $Site->description() ?></p>
@ -11,5 +11,32 @@
<!-- Footer --> <!-- Footer -->
<section id="footer"> <section id="footer">
<ul class="icons">
<?php
if($Site->twitter()) {
echo '<li><a href="'.$Site->twitter().'" class="fa-twitter"><span class="label">Twitter</span></a></li>';
}
if($Site->facebook()) {
echo '<li><a href="'.$Site->facebook().'" class="fa-facebook"><span class="label">Facebook</span></a></li>';
}
if($Site->instagram()) {
echo '<li><a href="'.$Site->instagram().'" class="fa-instagram"><span class="label">Instagram</span></a></li>';
}
if($Site->github()) {
echo '<li><a href="'.$Site->github().'" class="fa-github"><span class="label">Github</span></a></li>';
}
if( $plugins['all']['pluginRSS']->installed() ) {
echo '<li><a href="'.DOMAIN_BASE.'rss.xml'.'" class="fa-rss"><span class="label">RSS</span></a></li>';
}
if( $plugins['all']['pluginSitemap']->installed() ) {
echo '<li><a href="'.DOMAIN_BASE.'sitemap.xml'.'" class="fa-sitemap"><span class="label">Sitemap</span></a></li>';
}
?>
</ul>
<p class="copyright"><?php echo $Site->footer() ?> | Design: <a href="http://html5up.net">HTML5 UP</a></p> <p class="copyright"><?php echo $Site->footer() ?> | Design: <a href="http://html5up.net">HTML5 UP</a></p>
</section> </section>

View File

@ -1,4 +1,4 @@
<!doctype html> <!DOCTYPE HTML>
<html lang="<?php echo $Site->language() ?>"> <html lang="<?php echo $Site->language() ?>">
<head> <head>

View File

@ -2,9 +2,9 @@
"author": "Bludit", "author": "Bludit",
"email": "", "email": "",
"website": "https://github.com/dignajar/bludit-themes", "website": "https://github.com/dignajar/bludit-themes",
"version": "1.0", "version": "1.1",
"releaseDate": "2016-01-15", "releaseDate": "2016-01-15",
"license": "MIT", "license": "MIT",
"requires": "Bludit v1.0", "requires": "Bludit v1.1",
"notes": "" "notes": ""
} }

View File

@ -1,9 +1,11 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $Site->title() ?></title>
<?php <?php
// CSS from theme/css/ Theme::charset('UTF-8');
Theme::viewport('width=device-width, initial-scale=1');
Theme::title();
Theme::description();
// CSS files
Theme::css(array( Theme::css(array(
'pure-min.css', 'pure-min.css',
'grids-responsive-min.css', 'grids-responsive-min.css',
@ -11,24 +13,11 @@
'rainbow.github.css' 'rainbow.github.css'
)); ));
// Javascript from theme/js/ // Javascript files
Theme::javascript('rainbow.min.js'); Theme::javascript('rainbow.min.js');
// Favicon from theme/img/ // Favicon
Theme::favicon('favicon.png'); Theme::favicon('favicon.png');
// <meta name="keywords" content="HTML,CSS,XML,JavaScript">
if( $Url->whereAmI()=='post' ) {
Theme::keywords( $Post->tags() );
Theme::description( $Post->description() );
}
elseif( $Url->whereAmI()=='page' ) {
Theme::keywords( $Page->tags() );
Theme::description( $Page->description() );
}
else {
Theme::description( $Site->description() );
}
?> ?>
<!-- Custom Fonts --> <!-- Custom Fonts -->
@ -43,4 +32,4 @@
</style> </style>
<!-- Plugins Site Head --> <!-- Plugins Site Head -->
<?php Theme::plugins('siteHead') ?> <?php Theme::plugins('siteHead') ?>

View File

@ -43,7 +43,7 @@
} }
// Call the method with FALSE to get the first part of the post // Call the method with FALSE to get the first part of the post
echo $Post->content(false) echo $Post->content(false);
?> ?>
</div> </div>

View File

@ -41,7 +41,7 @@
} }
// Call the method with FALSE to get the first part of the post // Call the method with FALSE to get the first part of the post
echo $Post->content(false) echo $Post->content();
?> ?>
</div> </div>

View File

@ -2,7 +2,7 @@
/* /*
* Bludit * Bludit
* http://www.bludit.com * https://www.bludit.com
* Author Diego Najar * Author Diego Najar
* Bludit is opensource software licensed under the MIT license. * Bludit is opensource software licensed under the MIT license.
*/ */
@ -36,6 +36,9 @@ define('PATH_UPLOADS_THUMBNAILS',PATH_UPLOADS.'thumbnails'.DS);
define('PATH_HELPERS', PATH_KERNEL.'helpers'.DS); define('PATH_HELPERS', PATH_KERNEL.'helpers'.DS);
define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS); define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS);
// Protecting against Symlink attacks.
define('CHECK_SYMBOLIC_LINKS', TRUE);
// Domain and protocol // Domain and protocol
define('DOMAIN', $_SERVER['HTTP_HOST']); define('DOMAIN', $_SERVER['HTTP_HOST']);
@ -243,7 +246,7 @@ function install($adminPassword, $email, $timezone)
$stdOut = array(); $stdOut = array();
if( date_default_timezone_set($timezone) ) { if( !date_default_timezone_set($timezone) ) {
date_default_timezone_set('UTC'); date_default_timezone_set('UTC');
} }