commit
51868a3770
12
README.md
12
README.md
@ -1,14 +1,14 @@
|
||||
[Bludit](http://www.bludit.com/)
|
||||
[Bludit](https://www.bludit.com/)
|
||||
================================
|
||||
**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.
|
||||
|
||||
- [Documentation](http://docs.bludit.com)
|
||||
- [Help and Support](http://forum.bludit.com)
|
||||
- [Plugins](https://github.com/dignajar/bludit-plugins)
|
||||
- [Documentation](https://docs.bludit.com)
|
||||
- [Help and Support](https://forum.bludit.com)
|
||||
- [Plugins](https://plugins.bludit.com)
|
||||
- [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
|
||||
---------------
|
||||
@ -36,7 +36,7 @@ You only need a web server with PHP support.
|
||||
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`.
|
||||
3. Upload the directory `bludit` to your hosting server.
|
||||
4. Done!
|
||||
|
@ -17,6 +17,7 @@ class Content {
|
||||
return($this->vars!==false);
|
||||
}
|
||||
|
||||
// Returns the value from the $field, FALSE if the field doesn't exist.
|
||||
public function getField($field)
|
||||
{
|
||||
if(isset($this->vars[$field])) {
|
||||
@ -38,7 +39,7 @@ class Content {
|
||||
|
||||
private function build($path)
|
||||
{
|
||||
if( !Sanitize::pathFile($path, 'index.txt') ) {
|
||||
if( !Sanitize::pathFile($path.'index.txt') ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -45,6 +45,7 @@ class dbJSON
|
||||
public function restoreDB()
|
||||
{
|
||||
$this->db = $this->dbBackup;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -103,13 +103,27 @@ class Plugin {
|
||||
return '';
|
||||
}
|
||||
|
||||
public function setDb($array)
|
||||
public function setDb($args)
|
||||
{
|
||||
$tmp = array();
|
||||
|
||||
// All fields will be sanitize before save.
|
||||
foreach($array as $key=>$value) {
|
||||
$tmp[$key] = Sanitize::html($value);
|
||||
foreach($this->dbFields as $key=>$value)
|
||||
{
|
||||
if(isset($args[$key]))
|
||||
{
|
||||
// Sanitize value
|
||||
$tmpValue = Sanitize::html( $args[$key] );
|
||||
|
||||
// Set type
|
||||
settype($tmpValue, gettype($value));
|
||||
|
||||
// Set value
|
||||
$tmp[$key] = $tmpValue;
|
||||
}
|
||||
else
|
||||
{
|
||||
$tmp[$key] = false;
|
||||
}
|
||||
}
|
||||
|
||||
$this->db = $tmp;
|
||||
|
@ -7,11 +7,12 @@ function updateBludit()
|
||||
{
|
||||
global $Site;
|
||||
global $dbPosts;
|
||||
global $dbPages;
|
||||
|
||||
// Check if Bludit need to be update.
|
||||
if( ($Site->currentBuild() < BLUDIT_BUILD) || isset($_GET['update']) )
|
||||
{
|
||||
// --- Update dates ---
|
||||
// --- Update dates on posts ---
|
||||
foreach($dbPosts->db as $key=>$post)
|
||||
{
|
||||
$date = Date::format($post['date'], 'Y-m-d H:i', DB_DATE_FORMAT);
|
||||
@ -22,6 +23,17 @@ function updateBludit()
|
||||
|
||||
$dbPosts->save();
|
||||
|
||||
// --- Update dates on pages ---
|
||||
foreach($dbPages->db as $key=>$page)
|
||||
{
|
||||
$date = Date::format($page['date'], 'Y-m-d H:i', DB_DATE_FORMAT);
|
||||
if($date !== false) {
|
||||
$dbPages->setPageDb($key,'date',$date);
|
||||
}
|
||||
}
|
||||
|
||||
$dbPages->save();
|
||||
|
||||
// --- Update directories ---
|
||||
$directories = array(
|
||||
PATH_POSTS,
|
||||
|
@ -118,6 +118,14 @@ li.bludit-logo {
|
||||
|
||||
/* ----------- BLUDIT ----------- */
|
||||
|
||||
body {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.bludit-navbar {
|
||||
|
||||
}
|
||||
|
||||
#logo {
|
||||
background: #f4f4f4;
|
||||
padding:20px 0;
|
||||
@ -150,6 +158,10 @@ button.delete-button:hover {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
table.statistics tr:last-child td {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* ----------- ALERT ----------- */
|
||||
|
||||
#alert {
|
||||
@ -179,17 +191,53 @@ button.delete-button:hover {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#jstagList {
|
||||
margin-top: 5px;
|
||||
#bludit-tags {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#jstagList span {
|
||||
background: #f1f1f1;
|
||||
border-radius: 3px;
|
||||
color: #2672ec;
|
||||
#bludit-tags .uk-button {
|
||||
padding: 0 12px !important;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#jstagList {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#jstagList span.unselect,
|
||||
#jstagList span.select {
|
||||
margin-top: 5px;
|
||||
margin-right: 5px;
|
||||
padding: 3px 10px;
|
||||
padding: 2px 15px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
border-radius: 3px;
|
||||
background: #f1f1f1;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#jstagList span.unselect:before {
|
||||
font-family: FontAwesome;
|
||||
content: "\f067";
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#jstagList span.unselect {
|
||||
color: #AAA;
|
||||
}
|
||||
|
||||
#jstagList span.unselect:hover {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#jstagList span.select:before {
|
||||
font-family: FontAwesome;
|
||||
content: "\f00c";
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#jstagList span.select {
|
||||
color: #2672ec;
|
||||
}
|
||||
|
||||
/* ----------- BLUDIT IMAGES V8 ----------- */
|
||||
@ -229,6 +277,36 @@ button.delete-button:hover {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
/* Bludit Menu v8 */
|
||||
|
||||
#bludit-menuV8 {
|
||||
display: none;
|
||||
z-index: 1020;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
border: 1px solid #CCC;
|
||||
background: #FFF;
|
||||
color: #333;
|
||||
border-radius: 2px;
|
||||
list-style-type: none;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#bludit-menuV8 li {
|
||||
padding: 8px 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#bludit-menuV8 li:hover {
|
||||
background-color: #2672ec;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#bludit-menuV8 li i {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/* ----------- BLUDIT QUICK IMAGES ----------- */
|
||||
#bludit-quick-images {
|
||||
|
||||
|
@ -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; }
|
@ -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/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 -->
|
||||
<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/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.auto-complete.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
|
||||
|
||||
<!-- Plugins -->
|
||||
<?php Theme::plugins('adminHead') ?>
|
||||
@ -56,7 +54,7 @@ $(document).ready(function() {
|
||||
</div>
|
||||
|
||||
<!-- Navbar -->
|
||||
<nav class="uk-navbar">
|
||||
<nav class="uk-navbar bludit-navbar">
|
||||
|
||||
<!-- Navbar for Desktop -->
|
||||
<div class="uk-container uk-container-center uk-hidden-small">
|
||||
@ -168,4 +166,4 @@ $(document).ready(function() {
|
||||
<?php Theme::plugins('adminBodyEnd') ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
@ -21,20 +21,21 @@ class HTML {
|
||||
{
|
||||
$html = '</form>';
|
||||
|
||||
$script = '<script>
|
||||
$script = '<script>
|
||||
|
||||
$(document).ready(function() {
|
||||
$(document).ready(function() {
|
||||
|
||||
// Prevent the form submit when press enter key.
|
||||
$("form").keypress(function(e) {
|
||||
if (e.which == 13) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
// Prevent the form submit when press enter key.
|
||||
$("form").keypress(function(e) {
|
||||
if( (e.which == 13) && (e.target.type !== "textarea") ) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
</script>';
|
||||
|
||||
</script>';
|
||||
echo $html.$script;
|
||||
}
|
||||
|
||||
@ -67,108 +68,33 @@ $(document).ready(function() {
|
||||
echo $html;
|
||||
}
|
||||
|
||||
public static function tagsAutocomplete($args)
|
||||
public static function tags($args)
|
||||
{
|
||||
// Tag array for Javascript
|
||||
$tagArray = 'var tagArray = [];';
|
||||
if(!empty($args['value'])) {
|
||||
$tagArray = 'var tagArray = ["'.implode('","', $args['value']).'"]';
|
||||
global $L;
|
||||
// Javascript code
|
||||
include(PATH_JS.'bludit-tags.js');
|
||||
|
||||
$html = '<div id="bludit-tags" class="uk-form-row">';
|
||||
|
||||
$html .= '<input type="hidden" id="jstags" name="tags" value="">';
|
||||
|
||||
$html .= '<label for="jstagInput" class="uk-form-label">'.$args['label'].'</label>';
|
||||
|
||||
$html .= '<div class="uk-form-controls">';
|
||||
$html .= '<input id="jstagInput" type="text" class="uk-width-1-2" autocomplete="off">';
|
||||
$html .= '<button id="jstagAdd" class="uk-button">'.$L->g('Add').'</button>';
|
||||
|
||||
$html .= '<div id="jstagList">';
|
||||
|
||||
foreach($args['allTags'] as $tag) {
|
||||
$html .= '<span data-tag="'.$tag.'" class="'.( in_array($tag, $args['selectedTags'])?'select':'unselect' ).'">'.$tag.'</span>';
|
||||
}
|
||||
$args['value'] = '';
|
||||
|
||||
// Text input
|
||||
self::formInputText($args);
|
||||
|
||||
echo '<div id="jstagList"></div>';
|
||||
|
||||
$script = '<script>
|
||||
|
||||
'.$tagArray.'
|
||||
|
||||
function insertTag(tag)
|
||||
{
|
||||
// Clean the input text
|
||||
$("#jstags").val("");
|
||||
|
||||
if(tag.trim()=="") {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Check if the tag is already inserted.
|
||||
var found = $.inArray(tag, tagArray);
|
||||
if(found == -1) {
|
||||
tagArray.push(tag);
|
||||
renderTagList();
|
||||
}
|
||||
}
|
||||
|
||||
function removeTag(tag)
|
||||
{
|
||||
var found = $.inArray(tag, tagArray);
|
||||
|
||||
if(found => 0) {
|
||||
tagArray.splice(found, 1);
|
||||
renderTagList();
|
||||
}
|
||||
}
|
||||
|
||||
function renderTagList()
|
||||
{
|
||||
if(tagArray.length == 0) {
|
||||
$("#jstagList").html("");
|
||||
}
|
||||
else {
|
||||
$("#jstagList").html("<span>"+tagArray.join("</span><span>")+"</span>");
|
||||
}
|
||||
}
|
||||
|
||||
$("#jstags").autoComplete({
|
||||
minChars: 1,
|
||||
source: function(term, suggest){
|
||||
term = term.toLowerCase();
|
||||
var choices = ['.$args['words'].'];
|
||||
var matches = [];
|
||||
for (i=0; i<choices.length; i++)
|
||||
if (~choices[i].toLowerCase().indexOf(term)) matches.push(choices[i]);
|
||||
suggest(matches);
|
||||
},
|
||||
onSelect: function(e, value, item) {
|
||||
// Insert the tag when select whit the mouse click.
|
||||
insertTag(value);
|
||||
}
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// When the page is loaded render the tags
|
||||
renderTagList();
|
||||
|
||||
// Remove the tag when click on it.
|
||||
$("body").on("click", "#jstagList > span", function() {
|
||||
value = $(this).html();
|
||||
removeTag(value);
|
||||
});
|
||||
|
||||
// Insert tag when press enter key.
|
||||
$("#jstags").keypress(function(e) {
|
||||
if (e.which == 13) {
|
||||
var value = $(this).val();
|
||||
insertTag(value);
|
||||
}
|
||||
});
|
||||
|
||||
// When form submit.
|
||||
$("form").submit(function(e) {
|
||||
var list = tagArray.join(",");
|
||||
$("#jstags").val(list);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>';
|
||||
|
||||
echo $script;
|
||||
$html .= '</div>';
|
||||
$html .= '</div>';
|
||||
$html .= '</div>';
|
||||
|
||||
echo $html;
|
||||
}
|
||||
|
||||
public static function formInputPassword($args)
|
||||
@ -242,67 +168,46 @@ $(document).ready(function() {
|
||||
echo $html;
|
||||
}
|
||||
|
||||
public static function formButtonSubmit($args)
|
||||
{
|
||||
$html = '';
|
||||
}
|
||||
|
||||
public static function bluditQuickImages()
|
||||
{
|
||||
// Javascript code
|
||||
include(PATH_JS.'bludit-quick-images.js');
|
||||
|
||||
global $L;
|
||||
|
||||
$html = '<!-- BLUDIT QUICK IMAGES -->';
|
||||
$html .= '
|
||||
<div id="bludit-quick-images">
|
||||
<div id="bludit-quick-images-thumbnails" onmousedown="return false">
|
||||
';
|
||||
$html = '<!-- BLUDIT QUICK IMAGES -->';
|
||||
$html .= '
|
||||
<div id="bludit-quick-images">
|
||||
<div id="bludit-quick-images-thumbnails" onmousedown="return false">
|
||||
';
|
||||
|
||||
$thumbnailList = Filesystem::listFiles(PATH_UPLOADS_THUMBNAILS,'*','*',true);
|
||||
array_splice($thumbnailList, THUMBNAILS_AMOUNT);
|
||||
foreach($thumbnailList as $file) {
|
||||
$filename = basename($file);
|
||||
$html .= '<img class="bludit-thumbnail" data-filename="'.$filename.'" src="'.HTML_PATH_UPLOADS_THUMBNAILS.$filename.'" alt="Thumbnail">';
|
||||
}
|
||||
$thumbnailList = Filesystem::listFiles(PATH_UPLOADS_THUMBNAILS,'*','*',true);
|
||||
array_splice($thumbnailList, THUMBNAILS_AMOUNT);
|
||||
foreach($thumbnailList as $file) {
|
||||
$filename = basename($file);
|
||||
$html .= '<img class="bludit-thumbnail" data-filename="'.$filename.'" src="'.HTML_PATH_UPLOADS_THUMBNAILS.$filename.'" alt="Thumbnail">';
|
||||
}
|
||||
|
||||
$html .= '
|
||||
</div>
|
||||
';
|
||||
$html .= '
|
||||
</div>
|
||||
';
|
||||
|
||||
if(empty($thumbnailList)) {
|
||||
$html .= '<div class="empty-images uk-block uk-text-center uk-block-muted">'.$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 .= '
|
||||
<a data-uk-modal href="#bludit-images-v8" class="moreImages uk-button">'.$L->g('More images').'</a>
|
||||
$html .= '
|
||||
<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>
|
||||
';
|
||||
|
||||
$script = '
|
||||
<script>
|
||||
|
||||
// Add thumbnail to Quick Images
|
||||
function addQuickImages(filename)
|
||||
{
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Remove element if there are more than 6 thumbnails
|
||||
if ($("#bludit-quick-images-thumbnails > img").length > 5) {
|
||||
$("img:last-child", "#bludit-quick-images-thumbnails").remove();
|
||||
}
|
||||
|
||||
// Add the new thumbnail to Quick images
|
||||
$("#bludit-quick-images-thumbnails").prepend("<img class=\"bludit-thumbnail\" data-filename=\""+filename+"\" src=\""+imageSrc+"\" alt=\"Thumbnail\">");
|
||||
}
|
||||
|
||||
</script>
|
||||
';
|
||||
|
||||
echo $html.$script;
|
||||
echo $html;
|
||||
}
|
||||
|
||||
public static function bluditCoverImage($coverImage="")
|
||||
{
|
||||
// Javascript code
|
||||
include(PATH_JS.'bludit-cover-image.js');
|
||||
|
||||
global $L;
|
||||
|
||||
$style = '';
|
||||
@ -310,225 +215,106 @@ function addQuickImages(filename)
|
||||
$style = 'background-image: url('.HTML_PATH_UPLOADS_THUMBNAILS.$coverImage.')';
|
||||
}
|
||||
|
||||
$html = '<!-- BLUDIT COVER IMAGE -->';
|
||||
$html .= '
|
||||
<div id="bludit-cover-image">
|
||||
<div id="cover-image-thumbnail" class="uk-form-file uk-placeholder uk-text-center" style="'.$style.'">
|
||||
$html = '<!-- BLUDIT COVER IMAGE -->';
|
||||
$html .= '
|
||||
<div id="bludit-cover-image">
|
||||
<div id="cover-image-thumbnail" class="uk-form-file uk-placeholder uk-text-center" style="'.$style.'">
|
||||
|
||||
<input type="hidden" name="coverImage" id="cover-image-upload-filename" value="'.$coverImage.'">
|
||||
<input type="hidden" name="coverImage" id="cover-image-upload-filename" value="'.$coverImage.'">
|
||||
|
||||
<div id="cover-image-upload" '.( empty($coverImage)?'':'style="display: none;"' ).'>
|
||||
<div><i class="uk-icon-picture-o"></i> '.$L->g('Cover image').'</div>
|
||||
<div style="font-size:0.8em;">'.$L->g('Drag and drop or click here').'<input id="cover-image-file-select" type="file"></div>
|
||||
</div>
|
||||
<div id="cover-image-upload" '.( empty($coverImage)?'':'style="display: none;"' ).'>
|
||||
<div><i class="uk-icon-picture-o"></i> '.$L->g('Cover image').'</div>
|
||||
<div style="font-size:0.8em;">'.$L->g('Drag and drop or click here').'<input id="cover-image-file-select" type="file"></div>
|
||||
</div>
|
||||
|
||||
<div id="cover-image-delete" '.( empty($coverImage)?'':'style="display: block;"' ).'>
|
||||
<div><i class="uk-icon-trash-o"></i></div>
|
||||
</div>
|
||||
<div id="cover-image-delete" '.( empty($coverImage)?'':'style="display: block;"' ).'>
|
||||
<div><i class="uk-icon-trash-o"></i></div>
|
||||
</div>
|
||||
|
||||
<div id="cover-image-progressbar" class="uk-progress">
|
||||
<div class="uk-progress-bar" style="width: 0%;">0%</div>
|
||||
</div>
|
||||
<div id="cover-image-progressbar" class="uk-progress">
|
||||
<div class="uk-progress-bar" style="width: 0%;">0%</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
$script = '
|
||||
<script>
|
||||
echo $html;
|
||||
}
|
||||
|
||||
function addCoverImage(filename)
|
||||
{
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Cover image background
|
||||
$("#cover-image-thumbnail").attr("style","background-image: url("+imageSrc+")");
|
||||
|
||||
// Form attribute
|
||||
$("#cover-image-upload-filename").attr("value", filename);
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$("#cover-image-delete").on("click", function() {
|
||||
$("#cover-image-thumbnail").attr("style","");
|
||||
$("#cover-image-upload-filename").attr("value","");
|
||||
$("#cover-image-delete").hide();
|
||||
$("#cover-image-upload").show();
|
||||
});
|
||||
|
||||
var settings =
|
||||
public static function bluditMenuV8()
|
||||
{
|
||||
type: "json",
|
||||
action: HTML_PATH_ADMIN_ROOT+"ajax/uploader",
|
||||
allow : "*.(jpg|jpeg|gif|png)",
|
||||
params: {"type":"cover-image"},
|
||||
// Javascript code
|
||||
include(PATH_JS.'bludit-menu-v8.js');
|
||||
|
||||
loadstart: function() {
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", "0%").text("0%");
|
||||
$("#cover-image-progressbar").show();
|
||||
$("#cover-image-delete").hide();
|
||||
$("#cover-image-upload").hide();
|
||||
},
|
||||
global $L;
|
||||
|
||||
progress: function(percent) {
|
||||
percent = Math.ceil(percent);
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", percent+"%").text(percent+"%");
|
||||
},
|
||||
$html = '<!-- BLUDIT MENU V8 -->';
|
||||
$html .= '
|
||||
<ul id="bludit-menuV8">
|
||||
<li id="bludit-menuV8-insert"><i class="uk-icon-plus"></i>'.$L->g('Insert image').'</li>
|
||||
<li id="bludit-menuV8-cover"><i class="uk-icon-picture-o"></i>'.$L->g('Set as cover image').'</li>
|
||||
<li id="bludit-menuV8-delete"><i class="uk-icon-trash"></i>'.$L->g('Delete image').'</li>
|
||||
</ul>
|
||||
';
|
||||
|
||||
allcomplete: function(response) {
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", "100%").text("100%");
|
||||
$("#cover-image-progressbar").hide();
|
||||
$("#cover-image-delete").show();
|
||||
$(".empty-images").hide();
|
||||
|
||||
// Add Cover Image
|
||||
addCoverImage(response.filename);
|
||||
|
||||
// Add thumbnail to Quick Images
|
||||
addQuickImages(response.filename);
|
||||
|
||||
// Add thumbnail to Bludit Images V8
|
||||
addBluditImagev8(response.filename);
|
||||
},
|
||||
|
||||
notallowed: function(file, settings) {
|
||||
alert("'.$L->g('Supported image file types').' "+settings.allow);
|
||||
}
|
||||
};
|
||||
|
||||
UIkit.uploadSelect($("#cover-image-file-select"), settings);
|
||||
UIkit.uploadDrop($("#cover-image-thumbnail"), settings);
|
||||
|
||||
});
|
||||
</script>
|
||||
';
|
||||
echo $html.$script;
|
||||
echo $html;
|
||||
}
|
||||
|
||||
public static function bluditImagesV8()
|
||||
{
|
||||
// Javascript code
|
||||
include(PATH_JS.'bludit-images-v8.js');
|
||||
|
||||
global $L;
|
||||
|
||||
$html = '<!-- BLUDIT IMAGES V8 -->';
|
||||
$html .= '
|
||||
<div id="bludit-images-v8" class="uk-modal">
|
||||
<div class="uk-modal-dialog">
|
||||
$html = '<!-- BLUDIT IMAGES V8 -->';
|
||||
$html .= '
|
||||
<div id="bludit-images-v8" class="uk-modal">
|
||||
<div class="uk-modal-dialog">
|
||||
|
||||
<div id="bludit-images-v8-upload" class="uk-form-file uk-placeholder uk-text-center">
|
||||
<div id="bludit-images-v8-upload" class="uk-form-file uk-placeholder uk-text-center">
|
||||
|
||||
<div id="bludit-images-v8-drag-drop">
|
||||
<div><i class="uk-icon-picture-o"></i> '.$L->g('Upload image').'</div>
|
||||
<div style="font-size:0.8em;">'.$L->g('Drag and drop or click here').'<input id="bludit-images-v8-file-select" type="file"></div>
|
||||
</div>
|
||||
<div id="bludit-images-v8-drag-drop">
|
||||
<div><i class="uk-icon-picture-o"></i> '.$L->g('Upload image').'</div>
|
||||
<div style="font-size:0.8em;">'.$L->g('Drag and drop or click here').'<input id="bludit-images-v8-file-select" type="file"></div>
|
||||
</div>
|
||||
|
||||
<div id="bludit-images-v8-progressbar" class="uk-progress">
|
||||
<div class="uk-progress-bar" style="width: 0%;">0%</div>
|
||||
</div>
|
||||
<div id="bludit-images-v8-progressbar" class="uk-progress">
|
||||
<div class="uk-progress-bar" style="width: 0%;">0%</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="bludit-images-v8-thumbnails">
|
||||
';
|
||||
<div id="bludit-images-v8-thumbnails">
|
||||
';
|
||||
|
||||
$thumbnailList = Filesystem::listFiles(PATH_UPLOADS_THUMBNAILS,'*','*',true);
|
||||
foreach($thumbnailList as $file) {
|
||||
$filename = basename($file);
|
||||
$html .= '<img class="bludit-thumbnail" src="'.HTML_PATH_UPLOADS_THUMBNAILS.$filename.'" data-filename="'.$filename.'" alt="Thumbnail">';
|
||||
}
|
||||
|
||||
$html .= '
|
||||
</div>
|
||||
';
|
||||
|
||||
if(empty($thumbnailList)) {
|
||||
$html .= '<div class="empty-images uk-block uk-text-center uk-block-muted">'.$L->g('There are no images').'</div>';
|
||||
}
|
||||
|
||||
$html .= '
|
||||
<div class="uk-modal-footer">
|
||||
'.$L->g('Double click on the image to add it').' <a href="" class="uk-modal-close">'.$L->g('Click here to cancel').'</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
$script = '
|
||||
<script>
|
||||
|
||||
// Add thumbnail to Bludit Images v8
|
||||
function addBluditImagev8(filename)
|
||||
{
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Add the new thumbnail to Bludit Images v8
|
||||
$("#bludit-images-v8-thumbnails").prepend("<img class=\"bludit-thumbnail\" data-filename=\""+filename+"\" src=\""+imageSrc+"\" alt=\"Thumbnail\">");
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// Add border when select an thumbnail
|
||||
$("body").on("click", "img.bludit-thumbnail", function() {
|
||||
$(".bludit-thumbnail").css("border", "1px solid #ddd");
|
||||
$(this).css("border", "solid 3px orange");
|
||||
});
|
||||
|
||||
// Hide the modal when double click on thumbnail.
|
||||
$("body").on("dblclick", "img.bludit-thumbnail", function() {
|
||||
var modal = UIkit.modal("#bludit-images-v8");
|
||||
if ( modal.isActive() ) {
|
||||
modal.hide();
|
||||
$thumbnailList = Filesystem::listFiles(PATH_UPLOADS_THUMBNAILS,'*','*',true);
|
||||
foreach($thumbnailList as $file) {
|
||||
$filename = basename($file);
|
||||
$html .= '<img class="bludit-thumbnail" src="'.HTML_PATH_UPLOADS_THUMBNAILS.$filename.'" data-filename="'.$filename.'" alt="Thumbnail">';
|
||||
}
|
||||
});
|
||||
|
||||
// Event for double click for insert the image is in each editor plugin
|
||||
// ..
|
||||
$html .= '
|
||||
</div>
|
||||
';
|
||||
|
||||
var settings =
|
||||
{
|
||||
type: "json",
|
||||
action: HTML_PATH_ADMIN_ROOT+"ajax/uploader",
|
||||
allow : "*.(jpg|jpeg|gif|png)",
|
||||
params: {"type":"bludit-images-v8"},
|
||||
$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>';
|
||||
|
||||
loadstart: function() {
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", "0%").text("0%");
|
||||
$("#bludit-images-v8-drag-drop").hide();
|
||||
$("#bludit-images-v8-progressbar").show();
|
||||
},
|
||||
$html .= '
|
||||
<div class="uk-modal-footer">
|
||||
'.$L->g('Click on the image for options').' <a href="" class="uk-modal-close">'.$L->g('Click here to cancel').'</a>
|
||||
</div>
|
||||
|
||||
progress: function(percent) {
|
||||
percent = Math.ceil(percent);
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", percent+"%").text(percent+"%");
|
||||
},
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
allcomplete: function(response) {
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", "100%").text("100%");
|
||||
$("#bludit-images-v8-progressbar").hide();
|
||||
$("#bludit-images-v8-drag-drop").show();
|
||||
$(".empty-images").hide();
|
||||
|
||||
// Add thumbnail to Bludit Images V8
|
||||
addBluditImagev8(response.filename);
|
||||
|
||||
// Add thumbnail to Quick Images
|
||||
addQuickImages(response.filename);
|
||||
},
|
||||
|
||||
notallowed: function(file, settings) {
|
||||
alert("'.$L->g('Supported image file types').' "+settings.allow);
|
||||
}
|
||||
};
|
||||
|
||||
UIkit.uploadSelect($("#bludit-images-v8-file-select"), settings);
|
||||
UIkit.uploadDrop($("#bludit-images-v8-upload"), settings);
|
||||
});
|
||||
</script>
|
||||
';
|
||||
echo $html.$script;
|
||||
echo $html;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static function profileUploader($username)
|
||||
{
|
||||
global $L;
|
||||
|
@ -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
2
bl-kernel/admin/themes/default/js/jstz.min.js
vendored
Normal file
2
bl-kernel/admin/themes/default/js/jstz.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -65,7 +65,7 @@
|
||||
|
||||
<div class="uk-panel uk-panel-box">
|
||||
<h4><?php $L->p('Statistics') ?></h4>
|
||||
<table class="uk-table">
|
||||
<table class="uk-table statistics">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><?php $Language->p('Posts') ?></td>
|
||||
@ -128,4 +128,4 @@
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
@ -33,7 +33,7 @@ echo '<div class="uk-width-large-8-10">';
|
||||
'name'=>'content',
|
||||
'value'=>$_Page->contentRaw(false),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'placeholder'=>$L->g('Content')
|
||||
'placeholder'=>''
|
||||
));
|
||||
|
||||
|
||||
@ -77,13 +77,11 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
));
|
||||
|
||||
// Tags input
|
||||
HTML::tagsAutocomplete(array(
|
||||
HTML::tags(array(
|
||||
'name'=>'tags',
|
||||
'value'=>$_Page->tags(true),
|
||||
'tip'=>$L->g('Type the tag and press enter'),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'label'=>$L->g('Tags'),
|
||||
'words'=>'"'.implode('", "', $dbTags->getAll()).'"'
|
||||
'allTags'=>$dbTags->getAll(),
|
||||
'selectedTags'=>$_Page->tags(true)
|
||||
));
|
||||
|
||||
echo '</li>';
|
||||
@ -102,6 +100,9 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
// --- BLUDIT IMAGES V8 ---
|
||||
HTML::bluditImagesV8();
|
||||
|
||||
// --- BLUDIT MENU V8 ---
|
||||
HTML::bluditMenuV8();
|
||||
|
||||
echo '</li>';
|
||||
|
||||
// ---- ADVANCED TAB ----
|
||||
|
@ -33,7 +33,7 @@ echo '<div class="uk-width-large-8-10">';
|
||||
'name'=>'content',
|
||||
'value'=>$_Post->contentRaw(false),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'placeholder'=>$L->g('Content')
|
||||
'placeholder'=>''
|
||||
));
|
||||
|
||||
// Form buttons
|
||||
@ -71,13 +71,11 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
));
|
||||
|
||||
// Tags input
|
||||
HTML::tagsAutocomplete(array(
|
||||
HTML::tags(array(
|
||||
'name'=>'tags',
|
||||
'value'=>$_Post->tags(true),
|
||||
'tip'=>$L->g('Type the tag and press enter'),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'label'=>$L->g('Tags'),
|
||||
'words'=>'"'.implode('", "', $dbTags->getAll()).'"'
|
||||
'allTags'=>$dbTags->getAll(),
|
||||
'selectedTags'=>$_Post->tags(true)
|
||||
));
|
||||
|
||||
echo '</li>';
|
||||
@ -96,6 +94,9 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
// --- BLUDIT IMAGES V8 ---
|
||||
HTML::bluditImagesV8();
|
||||
|
||||
// --- BLUDIT MENU V8 ---
|
||||
HTML::bluditMenuV8();
|
||||
|
||||
echo '</li>';
|
||||
|
||||
// ---- ADVANCED TAB ----
|
||||
|
@ -47,7 +47,7 @@ HTML::formOpen(array('id'=>'edit-user-profile-form','class'=>'uk-form-horizontal
|
||||
));
|
||||
|
||||
echo '<div class="uk-form-row">
|
||||
<label class="uk-form-label">Password</label>
|
||||
<label class="uk-form-label">'.$L->g('password').'</label>
|
||||
<div class="uk-form-controls">
|
||||
<a href="'.HTML_PATH_ADMIN_ROOT.'user-password/'.$_User->username().'">'.$L->g('Change password').'</a>
|
||||
</div>
|
||||
@ -72,36 +72,36 @@ if($Login->role()==='admin') {
|
||||
'tip'=>$L->g('email-will-not-be-publicly-displayed')
|
||||
));
|
||||
|
||||
HTML::legend(array('value'=>'Social networks'));
|
||||
HTML::legend(array('value'=>$L->g('Social networks links')));
|
||||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'twitterUsername',
|
||||
'label'=>'Twitter username',
|
||||
'value'=>$_User->twitterUsername(),
|
||||
'name'=>'twitter',
|
||||
'label'=>'Twitter',
|
||||
'value'=>$_User->twitter(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
));
|
||||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'facebookUsername',
|
||||
'label'=>'Facebook username',
|
||||
'value'=>$_User->facebookUsername(),
|
||||
'name'=>'facebook',
|
||||
'label'=>'Facebook',
|
||||
'value'=>$_User->facebook(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
));
|
||||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'googleUsername',
|
||||
'label'=>'Google username',
|
||||
'value'=>$_User->googleUsername(),
|
||||
'name'=>'googlePlus',
|
||||
'label'=>'Google+',
|
||||
'value'=>$_User->googlePlus(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
));
|
||||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'instagramUsername',
|
||||
'label'=>'Instagram username',
|
||||
'value'=>$_User->instagramUsername(),
|
||||
'name'=>'instagram',
|
||||
'label'=>'Instagram',
|
||||
'value'=>$_User->instagram(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
));
|
||||
|
@ -27,7 +27,7 @@ echo '<div class="uk-width-large-8-10">';
|
||||
'name'=>'content',
|
||||
'value'=>'',
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'placeholder'=>$L->g('Content')
|
||||
'placeholder'=>''
|
||||
));
|
||||
|
||||
// Form buttons
|
||||
@ -64,13 +64,11 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
));
|
||||
|
||||
// Tags input
|
||||
HTML::tagsAutocomplete(array(
|
||||
HTML::tags(array(
|
||||
'name'=>'tags',
|
||||
'value'=>'',
|
||||
'tip'=>$L->g('Type the tag and press enter'),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'label'=>$L->g('Tags'),
|
||||
'words'=>'"'.implode('", "', $dbTags->getAll()).'"'
|
||||
'allTags'=>$dbTags->getAll(),
|
||||
'selectedTags'=>array()
|
||||
));
|
||||
|
||||
echo '</li>';
|
||||
@ -89,6 +87,9 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
// --- BLUDIT IMAGES V8 ---
|
||||
HTML::bluditImagesV8();
|
||||
|
||||
// --- BLUDIT MENU V8 ---
|
||||
HTML::bluditMenuV8();
|
||||
|
||||
echo '</li>';
|
||||
|
||||
// ---- ADVANCED TAB ----
|
||||
|
@ -27,7 +27,7 @@ echo '<div class="uk-width-large-8-10">';
|
||||
'name'=>'content',
|
||||
'value'=>'',
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'placeholder'=>$L->g('Content')
|
||||
'placeholder'=>''
|
||||
));
|
||||
|
||||
// Form buttons
|
||||
@ -64,13 +64,11 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
));
|
||||
|
||||
// Tags input
|
||||
HTML::tagsAutocomplete(array(
|
||||
HTML::tags(array(
|
||||
'name'=>'tags',
|
||||
'value'=>'',
|
||||
'tip'=>$L->g('Type the tag and press enter'),
|
||||
'class'=>'uk-width-1-1 uk-form-large',
|
||||
'label'=>$L->g('Tags'),
|
||||
'words'=>'"'.implode('", "', $dbTags->getAll()).'"'
|
||||
'allTags'=>$dbTags->getAll(),
|
||||
'selectedTags'=>array()
|
||||
));
|
||||
|
||||
echo '</li>';
|
||||
@ -89,6 +87,9 @@ echo '<div class="sidebar uk-width-large-2-10">';
|
||||
// --- BLUDIT IMAGES V8 ---
|
||||
HTML::bluditImagesV8();
|
||||
|
||||
// --- BLUDIT MENU V8 ---
|
||||
HTML::bluditMenuV8();
|
||||
|
||||
echo '</li>';
|
||||
|
||||
// ---- ADVANCED TAB ----
|
||||
|
@ -44,10 +44,57 @@ HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
||||
'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">
|
||||
<div class="uk-form-controls">
|
||||
<button type="submit" class="uk-button uk-button-primary">'.$L->g('Save').'</button>
|
||||
</div>
|
||||
</div>';
|
||||
|
||||
HTML::formClose();
|
||||
HTML::formClose();
|
31
bl-kernel/ajax/delete-file.php
Normal file
31
bl-kernel/ajax/delete-file.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||
|
||||
header('Content-Type: application/json');
|
||||
|
||||
// Request $_POST
|
||||
// $filename: Name of file to delete, just the filename
|
||||
|
||||
$filename = isset($_POST['filename']) ? $_POST['filename'] : '';
|
||||
|
||||
if( empty($filename) ) {
|
||||
echo json_encode( array('status'=>0, 'msg'=>'The filename is empty.') );
|
||||
exit;
|
||||
}
|
||||
|
||||
// Check if the filename exist and Sanitize::pathFile it's necesary for security reasons.
|
||||
if( Sanitize::pathFile(PATH_UPLOADS.$filename) ) {
|
||||
|
||||
// Delete the file.
|
||||
Filesystem::rmfile(PATH_UPLOADS.$filename);
|
||||
|
||||
// Delete the thumnails.
|
||||
Filesystem::rmfile(PATH_UPLOADS_THUMBNAILS.$filename);
|
||||
|
||||
echo json_encode( array('status'=>1, 'msg'=>'The file was deleted.') );
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
echo json_encode( array('status'=>0, 'msg'=>'The file does not exist.') );
|
||||
|
||||
?>
|
@ -8,7 +8,7 @@ header('Content-Type: application/json');
|
||||
// parent: Page parent, if you are checking a slug for a page.
|
||||
|
||||
// Response JSON
|
||||
// text: valid slug text
|
||||
// slug: valid slug text
|
||||
|
||||
$text = isset($_POST['text']) ? $_POST['text'] : '';
|
||||
$parent = isset($_POST['parent']) ? $_POST['parent'] : NO_PARENT_CHAR;
|
||||
@ -21,6 +21,6 @@ elseif( $_POST['type']==='post' ) {
|
||||
$slug = $dbPosts->generateKey($text, $key);
|
||||
}
|
||||
|
||||
echo json_encode( array('slug'=>$slug) );
|
||||
echo json_encode( array('status'=>1, 'slug'=>$slug) );
|
||||
|
||||
?>
|
@ -4,7 +4,7 @@
|
||||
define('BLUDIT_VERSION', 'githubVersion');
|
||||
define('BLUDIT_CODENAME', '');
|
||||
define('BLUDIT_RELEASE_DATE', '');
|
||||
define('BLUDIT_BUILD', '20160122');
|
||||
define('BLUDIT_BUILD', '20160201');
|
||||
|
||||
// Debug mode
|
||||
define('DEBUG_MODE', TRUE);
|
||||
@ -56,6 +56,9 @@ if(!defined('JSON_PRETTY_PRINT')) {
|
||||
define('JSON_PRETTY_PRINT', 128);
|
||||
}
|
||||
|
||||
// Protecting against Symlink attacks.
|
||||
define('CHECK_SYMBOLIC_LINKS', TRUE);
|
||||
|
||||
// Alert status ok
|
||||
define('ALERT_STATUS_OK', 0);
|
||||
|
||||
@ -82,9 +85,12 @@ define('POSTS_PER_PAGE_ADMIN', 10);
|
||||
// Check if JSON encode and decode are enabled.
|
||||
// define('JSON', function_exists('json_encode'));
|
||||
|
||||
// TRUE if new posts hand-made set published, or FALSE for draft.
|
||||
// Cli mode status for new posts/pages
|
||||
define('CLI_STATUS', 'published');
|
||||
|
||||
// Cli mode username for new posts/pages
|
||||
define('CLI_USERNAME', 'admin');
|
||||
|
||||
// Database date format
|
||||
define('DB_DATE_FORMAT', 'Y-m-d H:i:s');
|
||||
|
||||
|
@ -20,10 +20,10 @@ function reIndexTagsPosts()
|
||||
// Remove unpublished.
|
||||
$dbPosts->removeUnpublished();
|
||||
|
||||
// Regenerate the tags index for posts
|
||||
// Regenerate the tags index for posts.
|
||||
$dbTags->reindexPosts( $dbPosts->db );
|
||||
|
||||
// Restore de db on dbPost
|
||||
// Restore the database, before remove the unpublished.
|
||||
$dbPosts->restoreDB();
|
||||
|
||||
return true;
|
||||
|
@ -233,6 +233,15 @@ class dbPages extends dbJSON
|
||||
return false;
|
||||
}
|
||||
|
||||
public function setPageDb($key, $field, $value)
|
||||
{
|
||||
if($this->pageExists($key)) {
|
||||
$this->db[$key][$field] = $value;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// Return TRUE if the page exists, FALSE otherwise.
|
||||
public function pageExists($key)
|
||||
{
|
||||
|
@ -244,7 +244,12 @@ class dbPosts extends dbJSON
|
||||
$outrange = $init<0 ? true : $init>$end;
|
||||
|
||||
if(!$outrange) {
|
||||
return array_slice($this->db, $init, $postPerPage, true);
|
||||
$tmp = array_slice($this->db, $init, $postPerPage, true);
|
||||
|
||||
// Restore the database because we delete the unpublished posts.
|
||||
$this->restoreDB();
|
||||
|
||||
return $tmp;
|
||||
}
|
||||
|
||||
return array();
|
||||
@ -390,7 +395,7 @@ class dbPosts extends dbJSON
|
||||
return $a['date']<$b['date'];
|
||||
}
|
||||
|
||||
// Return TRUE if there are new posts, FALSE otherwise.
|
||||
// Return TRUE if there are new posts or orphan post deleted, FALSE otherwise.
|
||||
public function regenerateCli()
|
||||
{
|
||||
$db = $this->db;
|
||||
@ -407,23 +412,23 @@ class dbPosts extends dbJSON
|
||||
|
||||
$fields['status'] = CLI_STATUS;
|
||||
$fields['date'] = $currentDate;
|
||||
$fields['username'] = 'admin';
|
||||
$fields['username'] = CLI_USERNAME;
|
||||
|
||||
// Recovery posts from the first level of directories
|
||||
// Get all posts from the first level of directories.
|
||||
$tmpPaths = Filesystem::listDirectories(PATH_POSTS);
|
||||
foreach($tmpPaths as $directory)
|
||||
{
|
||||
if(file_exists($directory.DS.'index.txt'))
|
||||
// Check if the post have the index.txt file.
|
||||
if(Sanitize::pathFile($directory.DS.'index.txt'))
|
||||
{
|
||||
// The key is the directory name.
|
||||
$key = basename($directory);
|
||||
|
||||
// All keys posts
|
||||
$allPosts[$key] = true;
|
||||
|
||||
// Create the new entry if not exist on DATABASE.
|
||||
// Create the new entry if not exist inside the DATABASE.
|
||||
if(!isset($this->db[$key])) {
|
||||
// New entry on database
|
||||
// New entry on database with the default fields and values.
|
||||
$this->db[$key] = $fields;
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,12 @@ class dbSite extends dbJSON
|
||||
'emailFrom'=> array('inFile'=>false, 'value'=>''),
|
||||
'dateFormat'=> array('inFile'=>false, 'value'=>'F j, Y'),
|
||||
'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()
|
||||
@ -101,12 +106,49 @@ class dbSite extends dbJSON
|
||||
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.
|
||||
public function title()
|
||||
{
|
||||
return $this->getField('title');
|
||||
}
|
||||
|
||||
// Returns the site slogan.
|
||||
public function slogan()
|
||||
{
|
||||
return $this->getField('slogan');
|
||||
}
|
||||
|
||||
// Returns the site description.
|
||||
public function description()
|
||||
{
|
||||
return $this->getField('description');
|
||||
}
|
||||
|
||||
public function emailFrom()
|
||||
{
|
||||
return $this->getField('emailFrom');
|
||||
@ -122,18 +164,6 @@ class dbSite extends dbJSON
|
||||
return $this->getField('timeFormat');
|
||||
}
|
||||
|
||||
// Returns the site slogan.
|
||||
public function slogan()
|
||||
{
|
||||
return $this->getField('slogan');
|
||||
}
|
||||
|
||||
// Returns the site description.
|
||||
public function description()
|
||||
{
|
||||
return $this->getField('description');
|
||||
}
|
||||
|
||||
// Returns the site theme name.
|
||||
public function theme()
|
||||
{
|
||||
|
@ -64,7 +64,6 @@ class dbTags extends dbJSON
|
||||
public function reindexPosts($db)
|
||||
{
|
||||
$tagsIndex = array();
|
||||
$currentDate = Date::current(DB_DATE_FORMAT);
|
||||
|
||||
// Foreach post
|
||||
foreach($db as $postKey=>$values)
|
||||
|
@ -13,10 +13,10 @@ class dbUsers extends dbJSON
|
||||
'registered'=> array('inFile'=>false, 'value'=>'1985-03-15 10:00'),
|
||||
'tokenEmail'=> array('inFile'=>false, 'value'=>''),
|
||||
'tokenEmailTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'),
|
||||
'twitterUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'facebookUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'googleUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'instagramUsername'=> array('inFile'=>false, 'value'=>'')
|
||||
'twitter'=> array('inFile'=>false, 'value'=>''),
|
||||
'facebook'=> array('inFile'=>false, 'value'=>''),
|
||||
'googlePlus'=> array('inFile'=>false, 'value'=>''),
|
||||
'instagram'=> array('inFile'=>false, 'value'=>'')
|
||||
);
|
||||
|
||||
function __construct()
|
||||
|
@ -40,7 +40,12 @@ class Sanitize {
|
||||
// Fix for Windows on paths. eg: $path = c:\diego/page/subpage convert to c:\diego\page\subpages
|
||||
$fullPath = str_replace('/', DS, $fullPath);
|
||||
|
||||
$real = realpath($fullPath);
|
||||
if(CHECK_SYMBOLIC_LINKS) {
|
||||
$real = realpath($fullPath);
|
||||
}
|
||||
else {
|
||||
$real = file_exists($fullPath)?$fullPath:false;
|
||||
}
|
||||
|
||||
// If $real is FALSE the file does not exist.
|
||||
if($real===false) {
|
||||
|
@ -2,11 +2,14 @@
|
||||
|
||||
class Theme {
|
||||
|
||||
// NEW
|
||||
|
||||
public static function favicon($file='favicon.png', $path=HTML_PATH_THEME_IMG, $echo=true)
|
||||
public static function favicon($file='favicon.png', $path=HTML_PATH_THEME_IMG, $typeIcon=true, $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) {
|
||||
echo $tmp;
|
||||
@ -51,9 +54,28 @@ class Theme {
|
||||
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) {
|
||||
echo $tmp;
|
||||
@ -62,9 +84,28 @@ class Theme {
|
||||
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) {
|
||||
echo $tmp;
|
||||
@ -142,6 +183,7 @@ class Theme {
|
||||
return $tmp;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
96
bl-kernel/js/bludit-cover-image.js
Normal file
96
bl-kernel/js/bludit-cover-image.js
Normal file
@ -0,0 +1,96 @@
|
||||
<script>
|
||||
|
||||
var coverImage = new function() {
|
||||
|
||||
this.set = function(filename) {
|
||||
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Cover image background
|
||||
$("#cover-image-thumbnail").attr("style", "background-image: url("+imageSrc+")");
|
||||
|
||||
// Form attribute
|
||||
$("#cover-image-upload-filename").attr("value", filename);
|
||||
|
||||
// Show delete button.
|
||||
$("#cover-image-delete").show();
|
||||
|
||||
// Hide Cover image text.
|
||||
$("#cover-image-upload").hide();
|
||||
|
||||
// Hide box "There are no images"
|
||||
$(".empty-images").hide();
|
||||
|
||||
}
|
||||
|
||||
this.remove = function () {
|
||||
|
||||
// Remove the filename from the form.
|
||||
$("#cover-image-upload-filename").attr("value","");
|
||||
|
||||
// Remove the image from background-image.
|
||||
$("#cover-image-thumbnail").attr("style","");
|
||||
|
||||
// Hide delete button.
|
||||
$("#cover-image-delete").hide();
|
||||
|
||||
// Show Cover image text.
|
||||
$("#cover-image-upload").show();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// Click on delete cover image.
|
||||
$("#cover-image-delete").on("click", function() {
|
||||
|
||||
// Remove the cover image.
|
||||
coverImage.remove();
|
||||
|
||||
});
|
||||
|
||||
var settings =
|
||||
{
|
||||
type: "json",
|
||||
action: HTML_PATH_ADMIN_ROOT+"ajax/uploader",
|
||||
allow : "*.(jpg|jpeg|gif|png)",
|
||||
params: {"type":"cover-image"},
|
||||
|
||||
loadstart: function() {
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", "0%").text("0%");
|
||||
$("#cover-image-progressbar").show();
|
||||
$("#cover-image-delete").hide();
|
||||
$("#cover-image-upload").hide();
|
||||
},
|
||||
|
||||
progress: function(percent) {
|
||||
percent = Math.ceil(percent);
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", percent+"%").text(percent+"%");
|
||||
},
|
||||
|
||||
allcomplete: function(response) {
|
||||
$("#cover-image-progressbar").find(".uk-progress-bar").css("width", "100%").text("100%");
|
||||
$("#cover-image-progressbar").hide();
|
||||
|
||||
// Add Cover Image
|
||||
coverImage.set( response.filename );
|
||||
|
||||
// Add thumbnail to Quick Images
|
||||
quickImages.addThumbnail( response.filename );
|
||||
|
||||
// Add thumbnail to Bludit Images V8
|
||||
imagesV8.addThumbnail( response.filename );
|
||||
},
|
||||
|
||||
notallowed: function(file, settings) {
|
||||
alert("'.$L->g('Supported image file types').' "+settings.allow);
|
||||
}
|
||||
};
|
||||
|
||||
UIkit.uploadSelect($("#cover-image-file-select"), settings);
|
||||
UIkit.uploadDrop($("#cover-image-thumbnail"), settings);
|
||||
|
||||
});
|
||||
</script>
|
68
bl-kernel/js/bludit-images-v8.js
Normal file
68
bl-kernel/js/bludit-images-v8.js
Normal file
@ -0,0 +1,68 @@
|
||||
<script>
|
||||
|
||||
var imagesV8 = new function() {
|
||||
|
||||
this.addThumbnail = function(filename) {
|
||||
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Add the new thumbnail to Bludit Images v8
|
||||
$("#bludit-images-v8-thumbnails").prepend("<img class=\"bludit-thumbnail\" data-filename=\""+filename+"\" src=\""+imageSrc+"\" alt=\"Thumbnail\">");
|
||||
|
||||
}
|
||||
|
||||
this.removeThumbnail = function(filename) {
|
||||
|
||||
// Remove the thumbnail
|
||||
$("#bludit-images-v8-thumbnails > img[data-filename=\""+filename+"\"]").remove();
|
||||
|
||||
if($("#bludit-images-v8-thumbnails > img").length == 0) {
|
||||
// Show box "There are no images"
|
||||
$(".empty-images").show();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
var settings =
|
||||
{
|
||||
type: "json",
|
||||
action: HTML_PATH_ADMIN_ROOT+"ajax/uploader",
|
||||
allow : "*.(jpg|jpeg|gif|png)",
|
||||
params: {"type":"bludit-images-v8"},
|
||||
|
||||
loadstart: function() {
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", "0%").text("0%");
|
||||
$("#bludit-images-v8-drag-drop").hide();
|
||||
$("#bludit-images-v8-progressbar").show();
|
||||
},
|
||||
|
||||
progress: function(percent) {
|
||||
percent = Math.ceil(percent);
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", percent+"%").text(percent+"%");
|
||||
},
|
||||
|
||||
allcomplete: function(response) {
|
||||
$("#bludit-images-v8-progressbar").find(".uk-progress-bar").css("width", "100%").text("100%");
|
||||
$("#bludit-images-v8-progressbar").hide();
|
||||
$("#bludit-images-v8-drag-drop").show();
|
||||
$(".empty-images").hide();
|
||||
|
||||
// Add thumbnail to Bludit Images V8
|
||||
imagesV8.addThumbnail( response.filename );
|
||||
|
||||
// Add thumbnail to Quick Images
|
||||
quickImages.addThumbnail( response.filename );
|
||||
},
|
||||
|
||||
notallowed: function(file, settings) {
|
||||
alert("'.$L->g('Supported image file types').' "+settings.allow);
|
||||
}
|
||||
};
|
||||
|
||||
UIkit.uploadSelect($("#bludit-images-v8-file-select"), settings);
|
||||
UIkit.uploadDrop($("#bludit-images-v8-upload"), settings);
|
||||
});
|
||||
</script>
|
160
bl-kernel/js/bludit-menu-v8.js
Normal file
160
bl-kernel/js/bludit-menu-v8.js
Normal file
@ -0,0 +1,160 @@
|
||||
<script>
|
||||
|
||||
var menuV8 = new function() {
|
||||
|
||||
this.filenameSelected = null;
|
||||
|
||||
this.getFilename = function() {
|
||||
return this.filenameSelected;
|
||||
}
|
||||
|
||||
this.setFilename = function(filename) {
|
||||
this.filenameSelected = filename;
|
||||
}
|
||||
|
||||
this.hideMenu = function() {
|
||||
|
||||
// Check if the menu is visible.
|
||||
if($("#bludit-menuV8").is(":visible")) {
|
||||
|
||||
// Hide the menu.
|
||||
$("#bludit-menuV8").hide();
|
||||
|
||||
// Clean thumbnail borders.
|
||||
$(".bludit-thumbnail").css("border", "1px solid #ddd");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
this.showMenu = function(filenameSelected, positonX, positonY) {
|
||||
|
||||
// Store the image selected.
|
||||
this.setFilename( filenameSelected );
|
||||
|
||||
console.log("Image selected: " + this.getFilename());
|
||||
|
||||
// Position the menu v8.
|
||||
$("#bludit-menuV8").css({
|
||||
left: positonX + "px",
|
||||
top: positonY + "px"
|
||||
});
|
||||
|
||||
// Show the menu v8.
|
||||
$("#bludit-menuV8").show();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// 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() {
|
||||
|
||||
// Click on document.
|
||||
$(document).bind("click", function(e) {
|
||||
|
||||
// Deny hide if the click is over the thumbnail.
|
||||
if($(e.target).is("img.bludit-thumbnail")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Hide the menu.
|
||||
menuV8.hideMenu(e);
|
||||
|
||||
});
|
||||
|
||||
// Click over thumbnail.
|
||||
$("body").on("click", "img.bludit-thumbnail", function(e) {
|
||||
|
||||
console.log("Thumbnail click");
|
||||
|
||||
// Clean all thumbnail borders.
|
||||
$(".bludit-thumbnail").css("border", "1px solid #ddd");
|
||||
|
||||
// Thumbnail selected.
|
||||
var thumbnail = $(this);
|
||||
|
||||
// Add border to the thumbnail selected.
|
||||
thumbnail.css("border", "solid 3px orange");
|
||||
|
||||
// Filename of the selected image.
|
||||
var filenameSelected = thumbnail.attr("data-filename");
|
||||
|
||||
// SHow menu in position X and Y of the mouse.
|
||||
menuV8.showMenu( filenameSelected, e.pageX, e.pageY );
|
||||
|
||||
});
|
||||
|
||||
// Insert image
|
||||
$("body").on("click", "#bludit-menuV8-insert", function(e) {
|
||||
|
||||
if(typeof editorAddImage == 'function') {
|
||||
// This function is defined in each editor plugin.
|
||||
editorAddImage( menuV8.getFilename() );
|
||||
}
|
||||
else {
|
||||
editorAddImageDefault( menuV8.getFilename() );
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Set cover image
|
||||
$("body").on("click", "#bludit-menuV8-cover", function(e) {
|
||||
|
||||
coverImage.set( menuV8.getFilename() );
|
||||
|
||||
});
|
||||
|
||||
// Delete image
|
||||
$("body").on("click", "#bludit-menuV8-delete", function(e) {
|
||||
|
||||
var filenameSelected = menuV8.getFilename();
|
||||
|
||||
if(filenameSelected==null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
ajaxRequest = $.ajax({
|
||||
type: "POST",
|
||||
data:{ filename: filenameSelected },
|
||||
url: "<?php echo HTML_PATH_ADMIN_ROOT.'ajax/delete-file' ?>"
|
||||
});
|
||||
|
||||
// Callback handler that will be called on success
|
||||
ajaxRequest.done(function (response, textStatus, jqXHR){
|
||||
|
||||
// Remove the thumbnail from Images v8
|
||||
imagesV8.removeThumbnail( filenameSelected );
|
||||
|
||||
// Remove the thumbnail from Quick Images
|
||||
quickImages.removeThumbnail( filenameSelected );
|
||||
|
||||
console.log("Delete image: AJAX request done, message: "+response["msg"]);
|
||||
});
|
||||
|
||||
// Callback handler that will be called on failure
|
||||
ajaxRequest.fail(function (jqXHR, textStatus, errorThrown){
|
||||
console.log("Delete image: AJAX request fail");
|
||||
});
|
||||
|
||||
// Callback handler that will be called regardless
|
||||
// if the request failed or succeeded
|
||||
ajaxRequest.always(function () {
|
||||
console.log("Delete image: AJAX request always");
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
33
bl-kernel/js/bludit-quick-images.js
Normal file
33
bl-kernel/js/bludit-quick-images.js
Normal file
@ -0,0 +1,33 @@
|
||||
<script>
|
||||
|
||||
var quickImages = new function() {
|
||||
|
||||
this.addThumbnail = function(filename) {
|
||||
|
||||
var imageSrc = HTML_PATH_UPLOADS_THUMBNAILS + filename;
|
||||
|
||||
// Remove element if there are more than 6 thumbnails
|
||||
if ($("#bludit-quick-images-thumbnails > img").length > 5) {
|
||||
$("img:last-child", "#bludit-quick-images-thumbnails").remove();
|
||||
}
|
||||
|
||||
// Add the new thumbnail to Quick images
|
||||
$("#bludit-quick-images-thumbnails").prepend("<img class=\"bludit-thumbnail\" data-filename=\""+filename+"\" src=\""+imageSrc+"\" alt=\"Thumbnail\">");
|
||||
|
||||
}
|
||||
|
||||
this.removeThumbnail = function(filename) {
|
||||
|
||||
// Remove the thumbnail
|
||||
$("#bludit-quick-images-thumbnails > img[data-filename=\""+filename+"\"]").remove();
|
||||
|
||||
if($("#bludit-quick-images-thumbnails > img").length == 0) {
|
||||
// Show box "There are no images"
|
||||
$(".empty-images").show();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
</script>
|
73
bl-kernel/js/bludit-tags.js
Normal file
73
bl-kernel/js/bludit-tags.js
Normal file
@ -0,0 +1,73 @@
|
||||
<script>
|
||||
|
||||
function insertTag() {
|
||||
|
||||
var newTag = $("#jstagInput").val();
|
||||
|
||||
if(newTag.trim()=="") {
|
||||
return true;
|
||||
}
|
||||
|
||||
var findTag = $("span[data-tag]").filter(function() {
|
||||
return $(this).attr('data-tag').toLowerCase() == newTag;
|
||||
});
|
||||
|
||||
if( findTag.length > 0 ) {
|
||||
findTag.removeClass("unselect").addClass("select");
|
||||
}
|
||||
else {
|
||||
$("#jstagList").append("<span data-tag=\""+newTag+"\" class=\"select\">"+newTag+"</span>");
|
||||
}
|
||||
|
||||
// Clean the input.
|
||||
$("#jstagInput").val("");
|
||||
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// Click on tag unselected.
|
||||
$(document).on("click", ".unselect", function() {
|
||||
$(this).removeClass("unselect").addClass("select");
|
||||
});
|
||||
|
||||
// Click on tag selected.
|
||||
$(document).on("click", ".select", function() {
|
||||
$(this).removeClass("select").addClass("unselect");
|
||||
});
|
||||
|
||||
// Insert tag when click on the button "add".
|
||||
$(document).on("click", "#jstagAdd", function(e) {
|
||||
|
||||
// Prevent forum submit.
|
||||
e.preventDefault();
|
||||
|
||||
insertTag();
|
||||
|
||||
});
|
||||
|
||||
// Insert tag when press enter key.
|
||||
$("#jstagInput").keypress(function(e) {
|
||||
|
||||
if(e.which == 13) {
|
||||
insertTag();
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Before form submit.
|
||||
$("form").submit(function(e) {
|
||||
|
||||
// For each span.select make an array then implode with comma glue.
|
||||
var list = $("#jstagList > span.select").map(function() {
|
||||
return $(this).html();
|
||||
}).get().join(",");
|
||||
|
||||
// Insert the tags separated by comma in the input hiden field.
|
||||
$("#jstags").val( list );
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
@ -61,24 +61,24 @@ class User
|
||||
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)
|
||||
|
@ -7,7 +7,7 @@
|
||||
"last-update": "2015-11-18",
|
||||
"author": "Христо Дипчиков",
|
||||
"email": "",
|
||||
"website": "www.hristodipchikov.tk"
|
||||
"website": "http://www.hristodipchikov.tk"
|
||||
},
|
||||
|
||||
"username": "Потребителско име",
|
||||
@ -113,7 +113,7 @@
|
||||
"you-can-add-a-site-description-to-provide": "Можете да добавите кратко описание или биография на сайта.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Можете да добавите кратък текст в долната част на всяка страница. Например: авторско право, собственик, дати и т.н..",
|
||||
"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.",
|
||||
"select-your-sites-language": "Изберете системен език.",
|
||||
"select-a-timezone-for-a-correct": "Изберете часова зона за правилтото показване на дата / час.",
|
||||
@ -141,8 +141,8 @@
|
||||
"whats-next": "Какво следва?",
|
||||
"manage-your-bludit-from-the-admin-panel": "Управлявайте вашият Bludit от [Администраторският панел](./admin/)",
|
||||
"follow-bludit-on": "Последвайте Bludit в",
|
||||
"visit-the-support-forum": "Посети [форум](http://forum.bludit.com) за подръжка",
|
||||
"read-the-documentation-for-more-information": "Прочети [документацията](http://docs.bludit.com) за повече информация",
|
||||
"visit-the-support-forum": "Посети [форум](https://forum.bludit.com) за подръжка",
|
||||
"read-the-documentation-for-more-information": "Прочети [документацията](https://docs.bludit.com) за повече информация",
|
||||
"share-with-your-friends-and-enjoy": "Споделете с приятелите си",
|
||||
"the-page-has-not-been-found": "Страницата не е намерена.",
|
||||
"error": "Грешна",
|
||||
@ -198,12 +198,12 @@
|
||||
"advanced-settings": "Разширени настройки",
|
||||
"manage-users": "Управление на потребители",
|
||||
"view-and-edit-your-profile": "Преглед и редактиране на профила ви.",
|
||||
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "Паролата трябва да е с дължина най-малко 6 символа",
|
||||
"images": "Снимки",
|
||||
"upload-image": "Прикачи снимка",
|
||||
"images": "Изображения",
|
||||
"upload-image": "Прикачи изображение",
|
||||
"drag-and-drop-or-click-here": "Влачите и пускате или натиснете тук",
|
||||
"insert-image": "Вмъкни снимка",
|
||||
"insert-image": "Вмъкни изображение",
|
||||
"supported-image-file-types": "Поддържани файлови формати за снимки",
|
||||
"date-format": "Формат дата ",
|
||||
"time-format": "Формат за време",
|
||||
@ -219,14 +219,19 @@
|
||||
"date-and-time-formats": "Формат дата и час",
|
||||
"activate": "Активиране",
|
||||
"deactivate": "Деактивиране",
|
||||
|
||||
|
||||
"cover-image": "Обложка",
|
||||
"blog": "Блог",
|
||||
"more-images": "Още снимки",
|
||||
"double-click-on-the-image-to-add-it": "Кликнете два пъти върху изображението, за да го добавите.",
|
||||
"more-images": "Още изображения",
|
||||
|
||||
"click-here-to-cancel": "Кликнете тук, за да отмените.",
|
||||
"type-the-tag-and-press-enter": "Напишете етикет и натиснете клавиша Enter.",
|
||||
"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": "Кликнете върху изображението за опции.",
|
||||
"set-as-cover-image": "Задай като обложка ",
|
||||
"delete-image": "Изтрий изображенито",
|
||||
"image-description": "Описание на изображението "
|
||||
}
|
||||
|
||||
|
@ -1,148 +0,0 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Czech (Czech Republik)",
|
||||
"english-name": "Czech",
|
||||
"last-update": "2015-06-14",
|
||||
"author": "honigp",
|
||||
"email": "honigp@seznam.cz",
|
||||
"website": "honigp.cz"
|
||||
},
|
||||
|
||||
"username": "Jméno",
|
||||
"password": "Heslo",
|
||||
"confirm-password": "Heslo znovu",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Nástěnka",
|
||||
"role": "Úroveň",
|
||||
"post": "Zveřejnit",
|
||||
"posts": "Počet příspěvků",
|
||||
"users": "Počet uživatelů",
|
||||
"administrator": "Administrátor",
|
||||
"add": "Přidat",
|
||||
"cancel": "Zrušit",
|
||||
"content": "Obsah",
|
||||
"title": "Nadpis",
|
||||
"no-parent": "Bez zdroje",
|
||||
"edit-page": "Upravit stránku",
|
||||
"edit-post": "Upravit příspěvek",
|
||||
"add-a-new-user": "Přidání nového uživatele",
|
||||
"parent": "Zdroj",
|
||||
"friendly-url": "Pěkné URL",
|
||||
"description": "Popis",
|
||||
"posted-by": "Přidat",
|
||||
"tags": "Štítky",
|
||||
"position": "Umístit",
|
||||
"save": "Uložit",
|
||||
"draft": "Návrh",
|
||||
"delete": "Smazat",
|
||||
"registered": "Registrace",
|
||||
"Notifications": "Oznámení",
|
||||
"profile": "Profil",
|
||||
"email": "Email",
|
||||
"settings": "Nastavení",
|
||||
"general": "Obecné",
|
||||
"advanced": "Pokročilé",
|
||||
"regional": "Region",
|
||||
"about": "O systému",
|
||||
"login": "Přihlásit",
|
||||
"logout": "Odhlásit",
|
||||
"manage": "Správa obsahu",
|
||||
"themes": "Motiv",
|
||||
"prev-page": "Předchozí stránka",
|
||||
"next-page": "Následující stránka",
|
||||
"configure-plugin": "nastavení pluginů",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Potvrdit odstranění,tato akce nelze vrátit zpět.",
|
||||
"site-title": "Název webu",
|
||||
"site-slogan": "Slogan webu",
|
||||
"site-description": "Popis webu",
|
||||
"footer-text": "Patička text",
|
||||
"posts-per-page": "Příspěvků na stránku",
|
||||
"site-url": "Adresa webu",
|
||||
"writting-settings": "Nastavení psaní",
|
||||
"url-filters": "URL filtr",
|
||||
"page": "Stránka",
|
||||
"pages": "Stránky",
|
||||
"home": "Domů",
|
||||
"welcome-back": "Vítejte",
|
||||
"language": "Jazyk",
|
||||
"website": "Stránka",
|
||||
"timezone": "Časová zóna",
|
||||
"locale": "Místní",
|
||||
"new-post": "Nový příspěvek",
|
||||
"html-and-markdown-code-supported": "Podpora HTML a Markdown",
|
||||
"new-page": "Nová stránka",
|
||||
"manage-posts": "Správa příspěvků",
|
||||
"published-date": "Publikováno",
|
||||
"modified-date": "Datum úpravy",
|
||||
"empty-title": "Prázdný titul",
|
||||
"plugins": "Pluginy",
|
||||
"install-plugin": "Instalovat plugin",
|
||||
"uninstall-plugin": "Odinstalovat plugin",
|
||||
"new-password": "Nové heslo",
|
||||
"edit-user": "Upravit uživatele",
|
||||
"publish-now": "Publikovat nyní",
|
||||
"first-name": "Jméno",
|
||||
"last-name": "Příjmení",
|
||||
"bludit-version": "Bludit verze",
|
||||
"powered-by": "Powered by",
|
||||
"recent-posts": "Poslední příspěvky",
|
||||
"manage-pages": "Správa stránek",
|
||||
"advanced-options": "Pokročilé možnosti",
|
||||
"user-deleted": "Uživatel smazán",
|
||||
"page-added-successfully": "Stránka přidána",
|
||||
"post-added-successfully": "Příspěvek přidán",
|
||||
"the-post-has-been-deleted-successfully": "Příspěvek byl úspěšně smazán",
|
||||
"the-page-has-been-deleted-successfully": "Stránka byla úspěšně smazána",
|
||||
"username-or-password-incorrect": "Uživatelské jméno nebo heslo není správné",
|
||||
"database-regenerated": "Databáze regeneruje",
|
||||
"the-changes-have-been-saved": "Změny byly uloženy",
|
||||
"enable-more-features-at": "Další funkce na",
|
||||
"username-already-exists": "Uživatelské jméno již existuje",
|
||||
"username-field-is-empty": "Uživatelské jméno je prázdné",
|
||||
"the-password-and-confirmation-password-do-not-match":"Heslo a potvrzení hesla se neshodují",
|
||||
"user-has-been-added-successfully": "Uživatel byl úspěšně přidán",
|
||||
"you-do-not-have-sufficient-permissions": "Nemáte dostatečná oprávnění pro přístup k této stránce, obraťte se na správce.",
|
||||
"settings-advanced-writting-settings": "Nastavení->Pokročilé->Nastavení psaní",
|
||||
"new-posts-and-pages-synchronized": "Nové příspěvky a stránky synchronizované.",
|
||||
"you-can-choose-the-users-privilege": "Můžete si vybrat oprávnění uživatele.Editor může jen psát stránky a příspěvky.",
|
||||
"email-will-not-be-publicly-displayed": "E-mail nebude veřejně zobrazen. Doporučuje se heslo pro obnovení a oznámení.",
|
||||
"use-this-field-to-name-your-site": "V tomto poli lze pojmenovat vaše stránky, zobrazí se v horní části každé stránky vašeho webu.",
|
||||
"use-this-field-to-add-a-catchy-prhase": "Pomocí tohoto pole přidejte chytlavý slogan na vašem webu.",
|
||||
"you-can-add-a-site-description-to-provide": "Můžete přidat popis webu nebo krátký životopis.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Můžete přidat text v patičce každé stránky. např: autorská práva, vlastník, data, atd",
|
||||
"number-of-posts-to-show-per-page": "Počet příspěvků na stránce.",
|
||||
"the-url-of-your-site": "Adresa URL vašich stránek.",
|
||||
"add-or-edit-description-tags-or": "Přidat nebo upravit popis,značky,pěkné URL.",
|
||||
"select-your-sites-language": "Vyberte jazyk svých stránek.",
|
||||
"select-a-timezone-for-a-correct": "Vyberte časové pásmo pro správné zobrazení data / času na vašem webu.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Můžete použít toto pole pro definování parametrů souvisejících s jazykem a zemí.",
|
||||
"you-can-modify-the-url-which-identifies":"Můžete upravit adresu URL, která identifikuje stránku. Ne víc než 150 znaků.",
|
||||
"this-field-can-help-describe-the-content": "Zde můžete napsat obsah několika slovy. Ne víc než 150 znaků.",
|
||||
"write-the-tags-separated-by-comma": "Napište štítky oddělené čárkou. např: štítek1, štítek2, štítek3",
|
||||
"delete-the-user-and-all-its-posts":"Odstranit uživatele a všechny jeho příspěvky",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Odstranit uživatele a spojit své příspěvky na uživatele admin",
|
||||
"read-more": "Čtěte více",
|
||||
"show-blog": "Zobrazit blog",
|
||||
"default-home-page": "Výchozí domovská stránka",
|
||||
"version": "Verze",
|
||||
"there-are-no-drafts": "Nejsou k dispozici žádné návrhy.",
|
||||
"create-a-new-article-for-your-blog":"Vytvořte nový článek pro váš blog.",
|
||||
"create-a-new-page-for-your-website":"Vytvořte novou stránku pro vaše webové stránky.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Pozvěte přátele ke spolupráci na svých webových stránkách.",
|
||||
"change-your-language-and-region-settings":"Změna nastavení jazyka a regionu.",
|
||||
"language-and-timezone":"Jazyk a časová zóna",
|
||||
"author": "Autor",
|
||||
"start-here": "Začněte zde",
|
||||
"install-theme": "Instalovat motiv",
|
||||
"first-post": "První příspěvek",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Blahopřejeme právě jste nainstalovaly **Bludit**",
|
||||
"whats-next": "Kam dál",
|
||||
"manage-your-bludit-from-the-admin-panel": "Správa vašeho webu [admin area](./admin/)",
|
||||
"follow-bludit-on": "Follow Bludit on",
|
||||
"visit-the-support-forum": "Navštivte [forum](http://forum.bludit.com) fórum",
|
||||
"read-the-documentation-for-more-information": "Čtětě [documentation](http://docs.bludit.com) více informaví",
|
||||
"share-with-your-friends-and-enjoy": "Podělte se se svými přáteli a užívejte si",
|
||||
"the-page-has-not-been-found": "Stránka nenalezena.",
|
||||
"error": "Error"
|
||||
}
|
@ -3,10 +3,10 @@
|
||||
{
|
||||
"native": "Deutsch (Schweiz)",
|
||||
"english-name": "German",
|
||||
"last-update": "2016-01-23",
|
||||
"last-update": "2016-02-15",
|
||||
"author": "Clickwork",
|
||||
"email": "egoetschel@clickwork.ch",
|
||||
"website": "https://www.clickwork.ch"
|
||||
"website": "http://www.clickwork.ch"
|
||||
},
|
||||
|
||||
"username": "Benutzername",
|
||||
@ -139,8 +139,8 @@
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!",
|
||||
"whats-next": "Und so geht es weiter:",
|
||||
"follow-bludit-on": "Folge Bludit bei",
|
||||
"visit-the-support-forum": "Besuche das [Forum](http://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.",
|
||||
"visit-the-support-forum": "Besuche das [Forum](https://forum.bludit.com), um Hilfe zu erhalten.",
|
||||
"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.",
|
||||
"the-page-has-not-been-found": "Die Seite wurde nicht gefunden.",
|
||||
"error": "Fehler",
|
||||
@ -165,7 +165,7 @@
|
||||
"plugin-label": "Titel auf der Website",
|
||||
"enabled": "Aktiviert",
|
||||
"disabled": "Deaktiviert",
|
||||
"cli-mode": "CLI-Modus",
|
||||
"cli-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.",
|
||||
"configure": "Konfiguration",
|
||||
@ -183,7 +183,7 @@
|
||||
"emails-will-be-sent-from-this-address":"E-Mails werden mit dieser E-Mail-Adresse als Absender verschickt.",
|
||||
"bludit-login-access-code": "BLUDIT - Zugangscode",
|
||||
"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",
|
||||
"send-me-a-login-access-code": "Zugangscode zuschicken",
|
||||
"get-login-access-code": "Zugangscode schicken",
|
||||
@ -205,7 +205,7 @@
|
||||
"date-format": "Datumsformat",
|
||||
"time-format": "Zeitformat",
|
||||
"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",
|
||||
"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.",
|
||||
|
@ -3,10 +3,10 @@
|
||||
{
|
||||
"native": "Deutsch (Deutschland)",
|
||||
"english-name": "German",
|
||||
"last-update": "2016-01-23",
|
||||
"last-update": "2016-02-15",
|
||||
"author": "Clickwork",
|
||||
"email": "egoetschel@clickwork.ch",
|
||||
"website": "https://www.clickwork.ch"
|
||||
"website": "http://www.clickwork.ch"
|
||||
},
|
||||
|
||||
"username": "Benutzername",
|
||||
@ -139,8 +139,8 @@
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulation, du hast **Bludit** erfolgreich installiert!",
|
||||
"whats-next": "Und so geht es weiter:",
|
||||
"follow-bludit-on": "Folge Bludit bei",
|
||||
"visit-the-support-forum": "Besuche das [Forum](http://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.",
|
||||
"visit-the-support-forum": "Besuche das [Forum](https://forum.bludit.com), um Hilfe zu erhalten.",
|
||||
"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.",
|
||||
"the-page-has-not-been-found": "Die Seite wurde nicht gefunden.",
|
||||
"error": "Fehler",
|
||||
@ -165,7 +165,7 @@
|
||||
"plugin-label": "Titel auf der Website",
|
||||
"enabled": "Aktiviert",
|
||||
"disabled": "Deaktiviert",
|
||||
"cli-mode": "CLI-Modus",
|
||||
"cli-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.",
|
||||
"configure": "Konfiguration",
|
||||
@ -205,7 +205,7 @@
|
||||
"date-format": "Datumsformat",
|
||||
"time-format": "Zeitformat",
|
||||
"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",
|
||||
"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.",
|
||||
|
@ -3,7 +3,7 @@
|
||||
{
|
||||
"native": "English (United States)",
|
||||
"english-name": "English",
|
||||
"last-update": "2015-12-01",
|
||||
"last-update": "2016-02-13",
|
||||
"author": "Diego",
|
||||
"email": "",
|
||||
"website": ""
|
||||
@ -37,7 +37,7 @@
|
||||
"draft": "Draft",
|
||||
"delete": "Delete",
|
||||
"registered": "Registered",
|
||||
"Notifications": "Notifications",
|
||||
"notifications": "Notifications",
|
||||
"profile": "Profile",
|
||||
"email": "Email",
|
||||
"settings": "Settings",
|
||||
@ -140,8 +140,8 @@
|
||||
"whats-next": "What's Next",
|
||||
|
||||
"follow-bludit-on": "Follow Bludit on",
|
||||
"visit-the-support-forum": "Visit the [forum](http://forum.bludit.com) for support",
|
||||
"read-the-documentation-for-more-information": "Read the [documentation](http://docs.bludit.com) for more information",
|
||||
"visit-the-support-forum": "Visit the [forum](https://forum.bludit.com) for support",
|
||||
"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",
|
||||
"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": "Double click on the image to add it.",
|
||||
|
||||
"click-here-to-cancel": "Click here to cancel.",
|
||||
"type-the-tag-and-press-enter": "Type the tag and press enter.",
|
||||
"add": "Add",
|
||||
"manage-your-bludit-from-the-admin-panel": "Manage your Bludit from the [admin area]({{ADMIN_AREA_LINK}})",
|
||||
"there-are-no-images":"There are no images"
|
||||
"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",
|
||||
|
||||
"social-networks-links": "Social networks links"
|
||||
}
|
@ -3,7 +3,7 @@
|
||||
{
|
||||
"native": "Español (Argentina)",
|
||||
"english-name": "Spanish",
|
||||
"last-update": "2016-01-22",
|
||||
"last-update": "2016-02-13",
|
||||
"author": "Diego",
|
||||
"email": "",
|
||||
"website": ""
|
||||
@ -140,8 +140,8 @@
|
||||
"whats-next": "Siguientes pasos",
|
||||
|
||||
"follow-bludit-on": "Siga Bludit en",
|
||||
"visit-the-support-forum": "Visite el [foro](http://forum.bludit.com) para soporte",
|
||||
"read-the-documentation-for-more-information": "Lea la [documentación](http://docs.bludit.com) para mas información",
|
||||
"visit-the-support-forum": "Visite el [foro](https://forum.bludit.com) para soporte",
|
||||
"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",
|
||||
"the-page-has-not-been-found": "La página no fue encontrada.",
|
||||
"error": "Error",
|
||||
@ -223,9 +223,16 @@
|
||||
"cover-image": "Imagen de portada",
|
||||
"blog": "Blog",
|
||||
"more-images": "Mas imagenes",
|
||||
"double-click-on-the-image-to-add-it": "Doble clic en la imagen para insertarla.",
|
||||
|
||||
"click-here-to-cancel": "Clic aquí para cancelar.",
|
||||
"type-the-tag-and-press-enter": "Escriba la etiqueta y presione enter.",
|
||||
"manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración]({{ADMIN_AREA_LINK}})",
|
||||
"there-are-no-images":"No hay imagenes"
|
||||
"there-are-no-images":"No hay imagenes",
|
||||
|
||||
"click-on-the-image-for-options": "Clic en la imagen para las opciones.",
|
||||
"set-as-cover-image": "Establecer como portada",
|
||||
"delete-image": "Eliminar imagen",
|
||||
"image-description": "Descripción de la imagen",
|
||||
|
||||
"social-networks-links": "Redes sociales enlaces"
|
||||
}
|
@ -1,172 +0,0 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Español (España)",
|
||||
"english-name": "Spanish",
|
||||
"last-update": "2015-08-28",
|
||||
"author": "Tak-MK",
|
||||
"email": "snavarrotd {at} gmail {dot} com",
|
||||
"website": "http://sevendats.com"
|
||||
},
|
||||
|
||||
"username": "Nombre de usuario",
|
||||
"password": "Contraseña",
|
||||
"confirm-password": "Confirmar contraseña",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Panel",
|
||||
"role": "Rol",
|
||||
"post": "Post",
|
||||
"posts": "Posts",
|
||||
"users": "Usuarios",
|
||||
"administrator": "Administrador",
|
||||
"add": "Agregar",
|
||||
"cancel": "Cancel",
|
||||
"content": "Contenido",
|
||||
"title": "Título",
|
||||
"no-parent": "Sin padre",
|
||||
"edit-page": "Editar página",
|
||||
"edit-post": "Editar post",
|
||||
"add-a-new-user": "Agregar nuevo usuario",
|
||||
"parent": "Padre",
|
||||
"friendly-url": "URL Amigable",
|
||||
"description": "Descripción",
|
||||
"posted-by": "Publicado por",
|
||||
"tags": "Etiquetas",
|
||||
"position": "Posición",
|
||||
"save": "Guardar",
|
||||
"draft": "Borrador",
|
||||
"delete": "Eliminar",
|
||||
"registered": "Registrado",
|
||||
"Notifications": "Notificaciones",
|
||||
"profile": "Perfil",
|
||||
"email": "Correo electrónico",
|
||||
"settings": "Ajustes",
|
||||
"general": "General",
|
||||
"advanced": "Avanzado",
|
||||
"regional": "Regional",
|
||||
"about": "Acerca de",
|
||||
"login": "Iniciar sesión",
|
||||
"logout": "Cerrar sesión",
|
||||
"manage": "Administrar",
|
||||
"themes": "Temas",
|
||||
"prev-page": "Pag. anterior",
|
||||
"next-page": "Pag. siguiente",
|
||||
"configure-plugin": "Configurar plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Confirmar eliminación, esta operación no se puede deshacer.",
|
||||
"site-title": "Título del sitio",
|
||||
"site-slogan": "Eslogan del sitio",
|
||||
"site-description": "Descripción del sitio",
|
||||
"footer-text": "Texto de pie de página",
|
||||
"posts-per-page": "Posts por página",
|
||||
"site-url": "URL del sitio",
|
||||
"writting-settings": "Ajustes de redacción",
|
||||
"url-filters": "Filtros URL",
|
||||
"page": "página",
|
||||
"pages": "páginas",
|
||||
"home": "Inicio",
|
||||
"welcome-back": "Bienvenido",
|
||||
"language": "Lenguaje",
|
||||
"website": "Sitio web",
|
||||
"timezone": "Zona horaria",
|
||||
"locale": "Codificación",
|
||||
"new-post": "Nuevo post",
|
||||
"new-page": "Nueva página",
|
||||
"html-and-markdown-code-supported": "Código HTML y Markdown soportado",
|
||||
"manage-posts": "Administrar posts",
|
||||
"published-date": "Fecha de publicación",
|
||||
"modified-date": "Fecha de modificación",
|
||||
"empty-title": "Título vacío",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Instalar plugin",
|
||||
"uninstall-plugin": "Desinstalar plugin",
|
||||
"new-password": "Nueva contraseña",
|
||||
"edit-user": "Editar usuario",
|
||||
"publish-now": "Publicar",
|
||||
"first-name": "Nombre",
|
||||
"last-name": "Apellido",
|
||||
"bludit-version": "Bludit versión",
|
||||
"powered-by": "Corriendo con",
|
||||
"recent-posts": "Posts recientes",
|
||||
"manage-pages": "Administrar páginas",
|
||||
"advanced-options": "Opciones avanzadas",
|
||||
"user-deleted": "Usuario eliminado",
|
||||
"page-added-successfully": "Página agregada con éxito",
|
||||
"post-added-successfully": "Post agregado con éxito ",
|
||||
"the-post-has-been-deleted-successfully": "El post ha sido eliminado con éxito",
|
||||
"the-page-has-been-deleted-successfully": "La página ha sido eliminada con éxito",
|
||||
"username-or-password-incorrect": "Nombre de usuario o contraseña incorrectos",
|
||||
"database-regenerated": "Base de datos regenerada",
|
||||
"the-changes-have-been-saved": "Los cambios han sido guardados",
|
||||
"enable-more-features-at": "Habilitar más funciones en",
|
||||
"username-already-exists": "El nombre de usuario ya existe",
|
||||
"username-field-is-empty": "El campo nombre de usuario esta vacío",
|
||||
"the-password-and-confirmation-password-do-not-match": "Las contraseñas no coinciden",
|
||||
"user-has-been-added-successfully": "El usuario ha sido creado con éxito",
|
||||
"you-do-not-have-sufficient-permissions": "No tiene suficientes permisos para acceder a esta página, contacta con el administrador.",
|
||||
"settings-advanced-writting-settings": "Ajustes->Avanzado->Ajustes de redacción",
|
||||
"new-posts-and-pages-synchronized": "Nuevos posts y páginas sincronizados.",
|
||||
"you-can-choose-the-users-privilege": "Puede elegir los privilegios del usuario. El rol editor solo puede redactar páginas y post.",
|
||||
"email-will-not-be-publicly-displayed": "El correo electrónico no será visible. Recomendado para recuperar la contraseña y notificaciones.",
|
||||
"use-this-field-to-name-your-site": "Utilice este campo para nombrar su sitio, aparecerá en la parte superior de cada página de su sitio.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Utilice este campo para agregar un slogan a su sitio.",
|
||||
"you-can-add-a-site-description-to-provide": "Puede agregar una descripción del sitio para proporcionar una breve biografía o descripción de su sitio.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Puede agregar un pequeño texto en el pie de página. ej: copyright, autor, fechas, etc.",
|
||||
"number-of-posts-to-show-per-page": "Numero de posts a mostrar por página.",
|
||||
"the-url-of-your-site": "URL de su sitio.",
|
||||
"add-or-edit-description-tags-or": "Agregar o editar la descripción, tags y modificar la URL amigable.",
|
||||
"select-your-sites-language": "Seleccione el lenguaje de su sitio.",
|
||||
"select-a-timezone-for-a-correct": "Seleccione la zona horaria para una correcta visualización de las fechas.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Puede utilizar este campo para definir un conjunto de parámetros relacionados con el idioma, país y preferencias especiales.",
|
||||
"you-can-modify-the-url-which-identifies": "Puede modificar la dirección URL que identifica una página o post usando palabras clave legible. No más de 150 caracteres.",
|
||||
"this-field-can-help-describe-the-content": "Este campo puede ayudar a describir el contenido en pocas palabras. No más de 150 caracteres.",
|
||||
"write-the-tags-separated-by-comma": "Escribir los tags separados por comas. ej: tag1, tag2, tag3",
|
||||
"delete-the-user-and-all-its-posts": "Eliminar el usuario y sus posts",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Eliminar el usuario y asociar los posts al usuario admin",
|
||||
"read-more": "Leer más",
|
||||
"show-blog": "Mostrar blog",
|
||||
"default-home-page": "página de inicio predeterminada",
|
||||
"version": "Versión",
|
||||
"there-are-no-drafts": "No hay borradores",
|
||||
"create-a-new-article-for-your-blog":"Crear un nuevo artículo para su blog.",
|
||||
"create-a-new-page-for-your-website":"Crear una nueva página para su sitio web.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Invite a un amigo para colaborar en el sitio web.",
|
||||
"change-your-language-and-region-settings":"Cambiar la configuración de idioma y región.",
|
||||
"language-and-timezone":"Idioma y zona horaria",
|
||||
"author": "Autor",
|
||||
"start-here": "Comience aquí",
|
||||
"install-theme": "Instalar tema",
|
||||
"first-post": "Primer post",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Felicitación, usted ha instalado **Bludit** exitosamente",
|
||||
"whats-next": "Siguientes pasos",
|
||||
"manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración](./admin/)",
|
||||
"follow-bludit-on": "Siga Bludit en",
|
||||
"visit-the-support-forum": "Visite el [foro](http://forum.bludit.com) para soporte",
|
||||
"read-the-documentation-for-more-information": "Lea la [documentación](http://docs.bludit.com) para mas información",
|
||||
"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.",
|
||||
"error": "Error",
|
||||
"bludit-installer": "Instalador de Bludit",
|
||||
"welcome-to-the-bludit-installer": "Bienvenido al asistente para la instalación de Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Complete el formulario y elija una contraseña para el usuario « admin »",
|
||||
"password-visible-field": "Contraseña, ¡este campo es visible!",
|
||||
"install": "Instalar",
|
||||
"choose-your-language": "Seleccione su idioma",
|
||||
"next": "Siguiente",
|
||||
"the-password-field-is-empty": "Debe completar el campo contraseña",
|
||||
"your-email-address-is-invalid":"Su dirección de correo es inválida.",
|
||||
"proceed-anyway": "¡Continuar de todas formas!",
|
||||
"drafts":"Borradores",
|
||||
"ip-address-has-been-blocked":"La dirección IP fue bloqueada.",
|
||||
"try-again-in-a-few-minutes": "Vuelva a intentar en unos minutos.",
|
||||
"date": "Fecha",
|
||||
"you-can-schedule-the-post-just-select-the-date-and-time": "Puede programar un post, solo seleccione la fecha y hora.",
|
||||
"scheduled": "Programado",
|
||||
"publish": "Publicar",
|
||||
"please-check-your-theme-configuration": "Verifique la configuración del tema.",
|
||||
"plugin-label": "Titulo del plugin",
|
||||
"enabled": "Habilitado",
|
||||
"disabled": "Deshabilitado",
|
||||
"cli-mode": "Modo Cli",
|
||||
"command-line-mode": "Linea de comandos",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Habilite el modo linea de comando si usted crea, edita o elimina posts o paginas desde el sistema de archivos."
|
||||
}
|
@ -1,129 +0,0 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Español (Venezuela)",
|
||||
"english-name": "Spanish",
|
||||
"last-update": "2015-07-27",
|
||||
"author": "c-sanchez",
|
||||
"email": "",
|
||||
"website": ""
|
||||
},
|
||||
|
||||
"username": "Usuario",
|
||||
"password": "Contraseña",
|
||||
"confirm-password": "Confirmar contraseña",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Tablero",
|
||||
"role": "Papel",
|
||||
"post": "Mensaje",
|
||||
"posts": "Entrada",
|
||||
"users": "Usuarios",
|
||||
"administrator": "Administrador",
|
||||
"add": "Agregar",
|
||||
"cancel": "Cancelar",
|
||||
"content": "Contenido",
|
||||
"title": "Título",
|
||||
"no-parent": "Ningún padre",
|
||||
"edit-page": "Editar página",
|
||||
"edit-post": "Editar entrada",
|
||||
"add-a-new-user": "Agregar un nuevo usuario",
|
||||
"parent": "Padre",
|
||||
"friendly-url": "URL amigable",
|
||||
"description": "Descripción",
|
||||
"posted-by": "Publicado por",
|
||||
"tags": "Etiquetas",
|
||||
"position": "Posición",
|
||||
"save": "Guardar",
|
||||
"draft": "Borrador",
|
||||
"delete": "Eliminar",
|
||||
"registered": "Registrado",
|
||||
"Notifications": "Notificaciones",
|
||||
"profile": "Perfil",
|
||||
"email": "Email",
|
||||
"settings": "Ajustes",
|
||||
"general": "General",
|
||||
"advanced": "Avanzado",
|
||||
"regional": "Regional",
|
||||
"about": "Acerca de...",
|
||||
"login": "Ingresar",
|
||||
"logout": "Salir",
|
||||
"manage": "Administrar",
|
||||
"themes": "Temas",
|
||||
"prev-page": "Página Anterior",
|
||||
"next-page": "Siguiente página",
|
||||
"configure-plugin": "Configurar complemento",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Confirmar eliminar, esta acción no se puede deshacer.",
|
||||
"site-title": "Título del sitio",
|
||||
"site-slogan": "Lema del sitio",
|
||||
"site-description": "Descripción del sitio",
|
||||
"footer-text": "Texto de pie de página",
|
||||
"posts-per-page": "Entradas por página",
|
||||
"site-url": "URL del sitio",
|
||||
"writting-settings": "Ajustes de redacción",
|
||||
"url-filters": "Filtros de URL",
|
||||
"page": "Página",
|
||||
"pages": "Páginas",
|
||||
"home": "Página de inicio",
|
||||
"welcome-back": "Bienvenido",
|
||||
"language": "Idioma",
|
||||
"website": "Sitio web",
|
||||
"timezone": "Zona Horaria",
|
||||
"locale": "Localización",
|
||||
"notifications": "Notificaciones",
|
||||
"new-post": "Nueva entrada",
|
||||
"html-and-markdown-code-supported": "Código HTML y Markdown soportado",
|
||||
"new-page": "Nueva página",
|
||||
"manage-posts": "Administrar mensajes",
|
||||
"published-date": "Fecha de publicación",
|
||||
"modified-date": "Fecha de modificación",
|
||||
"empty-title": "Título vacío",
|
||||
"plugins": "Complementos",
|
||||
"install-plugin": "Instalar complemento",
|
||||
"uninstall-plugin": "Desinstalar complemento",
|
||||
"new-password": "Nueva contraseña",
|
||||
"edit-user": "Editar usuario",
|
||||
"publish-now": "Publicar ahora",
|
||||
"first-name": "Nombre",
|
||||
"last-name": "Apellido",
|
||||
"bludit-version": "Versión de Bludit",
|
||||
"powered-by": "Impulsado por",
|
||||
"recent-posts": "Mensajes recientes",
|
||||
"manage-pages": "Administrar páginas",
|
||||
"advanced-options": "Opciones avanzadas",
|
||||
"user-deleted": "Usuario eliminado",
|
||||
"page-added-successfully": "Página agregada correctamente",
|
||||
"post-added-successfully": "Mensaje agregado correctamente",
|
||||
"the-post-has-been-deleted-successfully": "El mensaje ha sido eliminado correctamente",
|
||||
"the-page-has-been-deleted-successfully": "La página ha sido eliminado correctamente",
|
||||
"username-or-password-incorrect": "Usuario o contraseña incorrecto",
|
||||
"database-regenerated": "Base de datos regenerada",
|
||||
"the-changes-have-been-saved": "Los cambios han sido guardados",
|
||||
"html-markdown-code-supported": "Código HTML y Markdown soportado.",
|
||||
"enable-more-features-at": "Activar más funciones en",
|
||||
"username-already-exists": "Ya existe nombre de usuario",
|
||||
"username-field-is-empty": "Está vacío el campo de nombre de usuario ",
|
||||
"the-password-and-confirmation-password-do-not-match":"La contraseña y la contraseña de confirmación no coinciden",
|
||||
"user-has-been-added-successfully": "El usuario se ha agregado correctamente",
|
||||
"you-do-not-have-sufficient-permissions": "No tienes permisos suficientes para acceder a esta página, póngase en contacto con el administrador.",
|
||||
"settings-advanced-writting-settings": "Ajustes->Avanzado->Ajustes de redacción",
|
||||
"new-posts-and-pages-synchronized": "Nuevos mensajes y páginas sincronizadas.",
|
||||
"you-can-choose-the-users-privilege": "Usted puede elegir los privilegios del usuario. El papel del editor sólo puede escribir páginas y mensajes.",
|
||||
"email-will-not-be-publicly-displayed": "El correo electrónico no se mostrará públicamente. Recomendado para notificaciones y recuperación contraseña.",
|
||||
"use-this-field-to-name-your-site": "Use este campo para el nombre de su sitio, aparecerá en la parte superior de cada página de su sitio.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Use este campo para agregar una frase pegadiza en su sitio.",
|
||||
"you-can-add-a-site-description-to-provide": "Puede agregar una descripción del sitio para proporcionar una breve biografía o descripción de su sitio.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Puede añadir un pequeño texto en la parte inferior de cada página. por ejemplo: derechos de autor, propietario, fechas, etc.",
|
||||
"number-of-posts-to-show-per-page": "Número de mensajes a mostrar por página.",
|
||||
"the-url-of-your-site": "La URL de su sitio.",
|
||||
"add-or-edit-description-tags-or": "Agregar o editar la descripción, etiquetas o modificar la URL amigable.",
|
||||
"select-your-sites-language": "Seleccionar el idioma de su sitio.",
|
||||
"select-a-timezone-for-a-correct": "Seleccione una zona horaria para mostrar correctamente la fecha y hora en su sitio.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Puede usar este campo para definir un conjunto de parámetros relacionados con la languege, el país y preferencias especiales.",
|
||||
"you-can-modify-the-url-which-identifies":"You can modify the URL which identifies a page or post using human-readable keywords. No more than 150 characters.",
|
||||
"this-field-can-help-describe-the-content": "Este campo puede ayudar a describir el contenido en pocas palabras. No más de 150 caracteres.",
|
||||
"write-the-tags-separated-by-comma": "Escribir las etiquetas separadas por comas. por ejemplo: etiqueta1, etiqueta2, etiqueta3",
|
||||
"delete": "Delete",
|
||||
"delete-the-user-and-all-its-posts":"Eliminar el usuario y todos sus mensajes",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Eliminar el usuario y asociar sus mensajes al usuario administrador",
|
||||
"read-more": "Leer más"
|
||||
}
|
@ -1,231 +1,243 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Français (France)",
|
||||
"english-name": "French",
|
||||
"last-update": "2016-01-19",
|
||||
"author": "Frédéric K.",
|
||||
"email": "stradfred@gmail.com",
|
||||
"website": ""
|
||||
},
|
||||
"language-data":
|
||||
{
|
||||
"native": "Français (France)",
|
||||
"english-name": "French",
|
||||
"last-update": "2016-02-13",
|
||||
"author": "Frédéric K.",
|
||||
"email": "stradfred@gmail.com",
|
||||
"website": "http://flatboard.co.nf"
|
||||
},
|
||||
|
||||
"username": "Nom d’utilisateur",
|
||||
"password": "Mot de passe",
|
||||
"confirm-password": "Confirmation du mot de passe",
|
||||
"editor": "Rédacteur",
|
||||
"dashboard": "Tableau de bord",
|
||||
"role": "Rôle",
|
||||
"post": "Article",
|
||||
"posts": "Articles",
|
||||
"users": "Utilisateurs",
|
||||
"administrator": "Administrateur",
|
||||
"add": "Ajouter",
|
||||
"cancel": "Annuler",
|
||||
"content": "Contenu",
|
||||
"title": "Titre",
|
||||
"no-parent": "Aucune page parente",
|
||||
"edit-page": "Éditer la page",
|
||||
"edit-post": "Éditer l’article",
|
||||
"add-a-new-user": "Ajouter un nouvel utilisateur",
|
||||
"parent": "Parent",
|
||||
"friendly-url": "Réécriture d’URL",
|
||||
"description": "Description",
|
||||
"posted-by": "Publié par",
|
||||
"tags": "Tags",
|
||||
"position": "Position",
|
||||
"save": "Sauvegarder",
|
||||
"draft": "Brouillon",
|
||||
"delete": "Supprimer",
|
||||
"registered": "Inscrit",
|
||||
"Notifications": "Notifications",
|
||||
"profile": "Profil",
|
||||
"email": "E-mail",
|
||||
"settings": "Paramètres",
|
||||
"general": "Général",
|
||||
"advanced": "Avancé",
|
||||
"regional": "Régional",
|
||||
"about": "À Propos",
|
||||
"login": "S’identifier",
|
||||
"logout": "Quitter la session",
|
||||
"manage": "Gestion de contenu",
|
||||
"themes": "Thèmes",
|
||||
"prev-page": "Précédente",
|
||||
"next-page": "Suivante",
|
||||
"configure-plugin": "Configurer le plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Confirmer la suppression, cette action n’est pas réversible.",
|
||||
"site-title": "Titre du site",
|
||||
"site-slogan": "Slogan du Site",
|
||||
"site-description": "Description du site",
|
||||
"footer-text": "Texte en pied de page",
|
||||
"posts-per-page": "Articles par page",
|
||||
"site-url": "URL du site",
|
||||
"writting-settings": "Paramètres de publication",
|
||||
"url-filters": "Filtres des URL",
|
||||
"page": "Page",
|
||||
"pages": "Pages",
|
||||
"home": "Accueil",
|
||||
"welcome-back": "Bienvenue",
|
||||
"language": "Langue",
|
||||
"website": "Site",
|
||||
"timezone": "Fuseau horaire",
|
||||
"locale": "Localisation",
|
||||
"new-post": "Nouvel article",
|
||||
"html-and-markdown-code-supported": "Code HTML et Markdown pris en charge.",
|
||||
"new-page": "Nouvelle page",
|
||||
"manage-posts": "Gestion des articles",
|
||||
"published-date": "Date de publication",
|
||||
"modified-date": "Dernière édition",
|
||||
"empty-title": "Titre non défini",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Installer le plugin",
|
||||
"uninstall-plugin": "Désinstaller le plugin",
|
||||
"new-password": "Nouveau mot de passe",
|
||||
"edit-user": "Modifier l’utilisateur",
|
||||
"publish-now": "Publier",
|
||||
"first-name": "Prénom",
|
||||
"last-name": "Nom",
|
||||
"bludit-version": "Version de Bludit",
|
||||
"powered-by": "Propulsé par",
|
||||
"recent-posts": "Derniers Articles",
|
||||
"manage-pages": "Gestion des pages",
|
||||
"advanced-options": "Options avancées",
|
||||
"user-deleted": "Utilisateur supprimé.",
|
||||
"page-added-successfully": "Page créée avec succès !",
|
||||
"post-added-successfully": "Article publié avec succès !",
|
||||
"the-post-has-been-deleted-successfully": "L’article a été supprimé avec succès !",
|
||||
"the-page-has-been-deleted-successfully": "La page a été supprimée avec succès !",
|
||||
"username-or-password-incorrect": "Nom d’utilisateur ou mot de passe incorrect.",
|
||||
"database-regenerated": "Base de données régénérée.",
|
||||
"the-changes-have-been-saved": "Les modifications on était sauvegardées.",
|
||||
"enable-more-features-at": "Activer plus de fonctionnalités en vous rendant vers ",
|
||||
"username-already-exists-or-is-empty": "Le nom d’utilisateur existe déjà ou est inexistant.",
|
||||
"username-field-is-empty": "Le champ utilisateur est vide !",
|
||||
"the-password-and-confirmation-password-do-not-match":"Le mot de passe et la confirmation du mot de passe, ne correspondent pas.",
|
||||
"user-has-been-added-successfully": "L’utilisateur a été ajouté avec succès",
|
||||
"you-do-not-have-sufficient-permissions": "Vous ne disposez pas des autorisations suffisantes pour accéder à cette page, veuillez contacter l’administrateur.",
|
||||
"settings-advanced-writting-settings": "Paramètres->Avancé->Paramètres de publication",
|
||||
"new-posts-and-pages-synchronized": "Les nouveaux articles et les nouvelles pages sont synchronisés.",
|
||||
"you-can-choose-the-users-privilege": "Vous pouvez choisir les privilèges de l’utilisateur. Le rôle en tant que « Rédacteur » permet uniquement de publier des pages et des articles.",
|
||||
"email-will-not-be-publicly-displayed": "Votre e-mail ne sera pas publié publiquement. Il est nécessaire pour la récupération du mot de passe et recevoir les notifications.",
|
||||
"use-this-field-to-name-your-site": "Utilisez ce champ pour que le nom de votre site apparaisse en haut de chaque page.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Utilisez ce champ pour ajouter une phrase accrocheuse sur votre site.",
|
||||
"you-can-add-a-site-description-to-provide": "Vous pouvez ajouter une description du site pour fournir une courte biographie ou la description de votre site.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Vous pouvez ajouter un court texte sur le pied de chaque page. par exemple: les droits d'auteurs, propriétaire, dates, etc.",
|
||||
"number-of-posts-to-show-per-page": "Nombre d’articles à afficher par page.",
|
||||
"the-url-of-your-site": "L’URL de votre site.",
|
||||
"add-or-edit-description-tags-or": "Ajouter ou modifier la description, les tags ou modifier la réécriture d’URL.",
|
||||
"select-your-sites-language": "Sélectionnez la langue de votre site.",
|
||||
"select-a-timezone-for-a-correct": "Sélectionnez un fuseau horaire pour afficher correctement la date et l’heure sur votre site.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Vous pouvez utiliser ce champ pour définir un ensemble de paramètres liés à la langue, le pays et les préférences particulières.",
|
||||
"you-can-modify-the-url-which-identifies":"Vous pouvez modifier l'URL qui identifie une page ou un article, en utilisant des mots-clés lisibles. Pas plus de 150 caractères.",
|
||||
"this-field-can-help-describe-the-content": "Ce champ peut aider à décrire le contenu en quelques mots. Pas plus de 150 caractères.",
|
||||
"username": "Nom d’utilisateur",
|
||||
"password": "Mot de passe",
|
||||
"confirm-password": "Confirmation du mot de passe",
|
||||
"editor": "Rédacteur",
|
||||
"dashboard": "Tableau de bord",
|
||||
"role": "Rôle",
|
||||
"post": "Article",
|
||||
"posts": "Articles",
|
||||
"users": "Utilisateurs",
|
||||
"administrator": "Administrateur",
|
||||
"add": "Ajouter",
|
||||
"cancel": "Annuler",
|
||||
"content": "Contenu",
|
||||
"title": "Titre",
|
||||
"no-parent": "Aucune page parente",
|
||||
"edit-page": "Éditer la page",
|
||||
"edit-post": "Éditer l’article",
|
||||
"add-a-new-user": "Ajouter un nouvel utilisateur",
|
||||
"parent": "Parent",
|
||||
"friendly-url": "Réécriture d’URL",
|
||||
"description": "Description",
|
||||
"posted-by": "Publié par",
|
||||
"tags": "Tags",
|
||||
"position": "Position",
|
||||
"save": "Sauvegarder",
|
||||
"draft": "Brouillon",
|
||||
"delete": "Supprimer",
|
||||
"registered": "Inscrit",
|
||||
"notifications": "Notifications",
|
||||
"profile": "Profil",
|
||||
"email": "E-mail",
|
||||
"settings": "Paramètres",
|
||||
"general": "Général",
|
||||
"advanced": "Avancé",
|
||||
"regional": "Régional",
|
||||
"about": "À Propos",
|
||||
"login": "S’identifier",
|
||||
"logout": "Quitter la session",
|
||||
"manage": "Gestion de contenu",
|
||||
"themes": "Thèmes",
|
||||
"prev-page": "Précédente",
|
||||
"next-page": "Suivante",
|
||||
"configure-plugin": "Configurer le plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Confirmer la suppression, cette action n’est pas réversible.",
|
||||
"site-title": "Titre du site",
|
||||
"site-slogan": "Slogan du Site",
|
||||
"site-description": "Description du site",
|
||||
"footer-text": "Texte en pied de page",
|
||||
"posts-per-page": "Articles par page",
|
||||
"site-url": "URL du site",
|
||||
"writting-settings": "Paramètres de publication",
|
||||
"url-filters": "Filtres des URL",
|
||||
"page": "Page",
|
||||
"pages": "Pages",
|
||||
"home": "Accueil",
|
||||
"welcome-back": "Bienvenue",
|
||||
"language": "Langue",
|
||||
"website": "Site",
|
||||
"timezone": "Fuseau horaire",
|
||||
"locale": "Localisation",
|
||||
"new-post": "Nouvel article",
|
||||
"html-and-markdown-code-supported": "Code HTML et Markdown pris en charge.",
|
||||
"new-page": "Nouvelle page",
|
||||
"manage-posts": "Gestion des articles",
|
||||
"published-date": "Date de publication",
|
||||
"modified-date": "Dernière édition",
|
||||
"empty-title": "Titre non défini",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Installer le plugin",
|
||||
"uninstall-plugin": "Désinstaller le plugin",
|
||||
"new-password": "Nouveau mot de passe",
|
||||
"edit-user": "Modifier l’utilisateur",
|
||||
"publish-now": "Publier",
|
||||
"first-name": "Prénom",
|
||||
"last-name": "Nom",
|
||||
"bludit-version": "Version de Bludit",
|
||||
"powered-by": "Propulsé par",
|
||||
"recent-posts": "Derniers Articles",
|
||||
"manage-pages": "Gestion des pages",
|
||||
"advanced-options": "Options avancées",
|
||||
"user-deleted": "Utilisateur supprimé.",
|
||||
"page-added-successfully": "Page créée avec succès !",
|
||||
"post-added-successfully": "Article publié avec succès !",
|
||||
"the-post-has-been-deleted-successfully": "L’article a été supprimé avec succès !",
|
||||
"the-page-has-been-deleted-successfully": "La page a été supprimée avec succès !",
|
||||
"username-or-password-incorrect": "Nom d’utilisateur ou mot de passe incorrect.",
|
||||
"database-regenerated": "Base de données régénérée.",
|
||||
"the-changes-have-been-saved": "Les modifications on était sauvegardées.",
|
||||
"enable-more-features-at": "Activer plus de fonctionnalités en vous rendant vers ",
|
||||
"username-already-exists-or-is-empty": "Le nom d’utilisateur existe déjà ou est inexistant.",
|
||||
"username-field-is-empty": "Le champ utilisateur est vide !",
|
||||
"the-password-and-confirmation-password-do-not-match":"Le mot de passe et la confirmation du mot de passe, ne correspondent pas.",
|
||||
"user-has-been-added-successfully": "L’utilisateur a été ajouté avec succès",
|
||||
"you-do-not-have-sufficient-permissions": "Vous ne disposez pas des autorisations suffisantes pour accéder à cette page, veuillez contacter l’administrateur.",
|
||||
"settings-advanced-writting-settings": "Paramètres->Avancé->Paramètres de publication",
|
||||
"new-posts-and-pages-synchronized": "Les nouveaux articles et les nouvelles pages sont synchronisés.",
|
||||
"you-can-choose-the-users-privilege": "Vous pouvez choisir les privilèges de l’utilisateur. Le rôle en tant que « Rédacteur » permet uniquement de publier des pages et des articles.",
|
||||
"email-will-not-be-publicly-displayed": "Votre e-mail ne sera pas publié publiquement. Il est nécessaire pour la récupération du mot de passe et recevoir les notifications.",
|
||||
"use-this-field-to-name-your-site": "Utilisez ce champ pour que le nom de votre site apparaisse en haut de chaque page.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Utilisez ce champ pour ajouter une phrase accrocheuse sur votre site.",
|
||||
"you-can-add-a-site-description-to-provide": "Vous pouvez ajouter une description du site pour fournir une courte biographie ou la description de votre site.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Vous pouvez ajouter un court texte sur le pied de chaque page. par exemple: les droits d'auteurs, propriétaire, dates, etc.",
|
||||
"number-of-posts-to-show-per-page": "Nombre d’articles à afficher par page.",
|
||||
"the-url-of-your-site": "L’URL de votre site.",
|
||||
"add-or-edit-description-tags-or": "Ajouter ou modifier la description, les tags ou modifier la réécriture d’URL.",
|
||||
"select-your-sites-language": "Sélectionnez la langue de votre site.",
|
||||
"select-a-timezone-for-a-correct": "Sélectionnez un fuseau horaire pour afficher correctement la date et l’heure sur votre site.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Vous pouvez utiliser ce champ pour définir un ensemble de paramètres liés à la langue, le pays et les préférences particulières.",
|
||||
"you-can-modify-the-url-which-identifies":"Vous pouvez modifier l'URL qui identifie une page ou un article, en utilisant des mots-clés lisibles. Pas plus de 150 caractères.",
|
||||
"this-field-can-help-describe-the-content": "Ce champ peut aider à décrire le contenu en quelques mots. Pas plus de 150 caractères.",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"Supprimer l’utilisateur et tous ses messages associés.",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Supprimez l’utilisateur et associez ses messages à l’administrateur principal.",
|
||||
"read-more": "Lire la suite...",
|
||||
"show-blog": "Afficher le Blog",
|
||||
"default-home-page": "Page d’accueil par défaut",
|
||||
"version": "Version",
|
||||
"there-are-no-drafts": "Aucun article en attente de publication",
|
||||
"create-a-new-article-for-your-blog":"Publiez un nouvel article pour votre blog.",
|
||||
"create-a-new-page-for-your-website":"Créer une nouvelle page pour votre site.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Inviter un ami à collaborer sur votre site.",
|
||||
"change-your-language-and-region-settings":"Modifiez vos paramètres linguistiques et régionaux.",
|
||||
"language-and-timezone":"Langue et fuseau horaire",
|
||||
"author": "Auteur",
|
||||
"start-here": "Prise en main rapide",
|
||||
"install-theme": "Installer ce thème",
|
||||
"first-post": "Premier article",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Félicitations, vous avez correctement installé **Bludit**",
|
||||
"whats-next": "pour la prochaine étape",
|
||||
"manage-your-bludit-from-the-admin-panel": "Gérez Bludit dans la [zone d’administration](./admin/)",
|
||||
"follow-bludit-on": "Suivez Bludit sur",
|
||||
"visit-the-support-forum": "Visitez le [forum](http://forum.bludit.com) de support",
|
||||
"read-the-documentation-for-more-information": "Lisez la [documentation](http://docs.bludit.com) pour plus d’information",
|
||||
"share-with-your-friends-and-enjoy": "Partagez avec vos amis et apprécier !",
|
||||
"the-page-has-not-been-found": "La page n’a pas été trouvée.",
|
||||
"error": "Erreur",
|
||||
"bludit-installer": "Installation de Bludit",
|
||||
"welcome-to-the-bludit-installer": "Bienvenue dans l’assistant d’installation de Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Complétez le formulaire et choisissez un mot de passe pour l’utilisateur « admin »",
|
||||
"password-visible-field": "Mot de passe, champ visible !",
|
||||
"install": "Installer",
|
||||
"choose-your-language": "Sélectionnez votre langue",
|
||||
"next": "Suivant",
|
||||
"the-password-field-is-empty": "Le champ du mot de passe est vide",
|
||||
"your-email-address-is-invalid":"Votre adresse e-mail est invalide.",
|
||||
"proceed-anyway": "Continuer malgré tout !",
|
||||
"drafts": "En attente de publication",
|
||||
"ip-address-has-been-blocked": "Votre adresse IP a été bloquée.",
|
||||
"try-again-in-a-few-minutes": "Essayez de nouveau dans quelques minutes.",
|
||||
"date": "Date",
|
||||
"delete-the-user-and-all-its-posts":"Supprimer l’utilisateur et tous ses messages associés.",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Supprimez l’utilisateur et associez ses messages à l’administrateur principal.",
|
||||
"read-more": "Lire la suite...",
|
||||
"show-blog": "Afficher le Blog",
|
||||
"default-home-page": "Page d’accueil par défaut",
|
||||
"version": "Version",
|
||||
"there-are-no-drafts": "Aucun article en attente de publication",
|
||||
"create-a-new-article-for-your-blog":"Publiez un nouvel article pour votre blog.",
|
||||
"create-a-new-page-for-your-website":"Créer une nouvelle page pour votre site.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Inviter un ami à collaborer sur votre site.",
|
||||
"change-your-language-and-region-settings":"Modifiez vos paramètres linguistiques et régionaux.",
|
||||
"language-and-timezone":"Langue et fuseau horaire",
|
||||
"author": "Auteur",
|
||||
"start-here": "Prise en main rapide",
|
||||
"install-theme": "Installer ce thème",
|
||||
"first-post": "Premier article",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Félicitations, vous avez correctement installé **Bludit**",
|
||||
"whats-next": "pour la prochaine étape",
|
||||
"manage-your-bludit-from-the-admin-panel": "Gérez Bludit dans la [zone d’administration](./admin/)",
|
||||
"follow-bludit-on": "Suivez Bludit sur",
|
||||
"visit-the-support-forum": "Visitez le [forum](https://forum.bludit.com) de support",
|
||||
"read-the-documentation-for-more-information": "Lisez la [documentation](https://docs.bludit.com) pour plus d’information",
|
||||
"share-with-your-friends-and-enjoy": "Partagez avec vos amis et apprécier !",
|
||||
"the-page-has-not-been-found": "La page n’a pas été trouvée.",
|
||||
"error": "Erreur",
|
||||
"bludit-installer": "Installation de Bludit",
|
||||
"welcome-to-the-bludit-installer": "Bienvenue dans l’assistant d’installation de Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Complétez le formulaire et choisissez un mot de passe pour l’utilisateur « admin »",
|
||||
"password-visible-field": "Mot de passe, champ visible !",
|
||||
"install": "Installer",
|
||||
"choose-your-language": "Sélectionnez votre langue",
|
||||
"next": "Suivant",
|
||||
"the-password-field-is-empty": "Le champ du mot de passe est vide",
|
||||
"your-email-address-is-invalid":"Votre adresse e-mail est invalide.",
|
||||
"proceed-anyway": "Continuer malgré tout !",
|
||||
"drafts": "En attente de publication",
|
||||
"ip-address-has-been-blocked": "Votre adresse IP a été bloquée.",
|
||||
"try-again-in-a-few-minutes": "Essayez de nouveau dans quelques minutes.",
|
||||
"date": "Date",
|
||||
|
||||
"scheduled": "Planification",
|
||||
"publish": "Publier",
|
||||
"please-check-your-theme-configuration": "Veuillez vérifier la configuration de votre thème.",
|
||||
"plugin-label": "Libellé du plugin",
|
||||
"enabled": "Activé",
|
||||
"disabled": "Désactivé",
|
||||
"cli-mode": "Mode Cli",
|
||||
"command-line-mode": "Mode ligne de commande",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Activer le mode ligne de commande si vous créez, modifiez ou supprimez des articles ou des pages du système de fichiers.",
|
||||
"scheduled": "Planification",
|
||||
"publish": "Publier",
|
||||
"please-check-your-theme-configuration": "Veuillez vérifier la configuration de votre thème.",
|
||||
"plugin-label": "Libellé du plugin",
|
||||
"enabled": "Activé",
|
||||
"disabled": "Désactivé",
|
||||
"cli-mode": "Mode Cli",
|
||||
"command-line-mode": "Mode ligne de commande",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Activer le mode ligne de commande si vous créez, modifiez ou supprimez des articles ou des pages du système de fichiers.",
|
||||
|
||||
"configure": "Configuration",
|
||||
"uninstall": "Désinstaller",
|
||||
"change-password": "Modifier le mot de passe",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Vous pouvez planifier une date de publication de vos articles, il suffit de sélectionner la date et l’heure dans le calendrier qui s’ouvre en pop-up.",
|
||||
"write-the-tags-separated-by-commas": "Écrivez les tags en les séparant par une virgule. par exemple : tag1, tag2, tag3",
|
||||
"status": "Statut",
|
||||
"published": "Publié",
|
||||
"scheduled-posts": "Articles planifiés",
|
||||
"statics": "Statiques",
|
||||
"name": "Nom",
|
||||
"email-account-settings":"Paramètres de compte de messagerie",
|
||||
"sender-email": "Email de l’expéditeur",
|
||||
"emails-will-be-sent-from-this-address":"Les e-mails seront envoyés à cette adresse.",
|
||||
"bludit-login-access-code": "BLUDIT - Code d'accès de connexion",
|
||||
"check-your-inbox-for-your-login-access-code":"Vérifiez votre boîte de réception, il contient votre code d’accès de connexion.",
|
||||
"there-was-a-problem-sending-the-email":"Une erreur est survenue, lors de l’envoi de l’e-mail.",
|
||||
"back-to-login-form": "Retour à la page de connexion",
|
||||
"send-me-a-login-access-code": "Envoyez-moi un code d’accès de connexion",
|
||||
"get-login-access-code": "Obtenir le code d’accès de connexion",
|
||||
"email-notification-login-access-code": "<p>Ceci est une notification à partir de votre site {{WEBSITE_NAME}}</p><p>Vous avez demandé un code d’accès de connexion, merci de suivre lien suivant :</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Il n’y a aucun article planifié.",
|
||||
"show-password": "Afficher le mot de passe",
|
||||
"edit-or-remove-your=pages": "Gérer vos pages.",
|
||||
"edit-or-remove-your-blogs-posts": "Gérer vos articles.",
|
||||
"general-settings": "Paramètres généraux",
|
||||
"advanced-settings": "Paramètres avancés",
|
||||
"manage-users": "Gestion des utilisateurs",
|
||||
"view-and-edit-your-profile": "Modifier votre profil",
|
||||
"configure": "Configuration",
|
||||
"uninstall": "Désinstaller",
|
||||
"change-password": "Modifier le mot de passe",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Vous pouvez planifier une date de publication de vos articles, il suffit de sélectionner la date et l’heure dans le calendrier qui s’ouvre en pop-up.",
|
||||
"write-the-tags-separated-by-commas": "Écrivez les tags en les séparant par une virgule. par exemple : tag1, tag2, tag3",
|
||||
"status": "Statut",
|
||||
"published": "Publié",
|
||||
"scheduled-posts": "Articles planifiés",
|
||||
"statics": "Statiques",
|
||||
"name": "Nom",
|
||||
"email-account-settings":"Paramètres de compte de messagerie",
|
||||
"sender-email": "Email de l’expéditeur",
|
||||
"emails-will-be-sent-from-this-address":"Les e-mails seront envoyés à cette adresse.",
|
||||
"bludit-login-access-code": "BLUDIT - Code d'accès de connexion",
|
||||
"check-your-inbox-for-your-login-access-code":"Vérifiez votre boîte de réception, il contient votre code d’accès de connexion.",
|
||||
"there-was-a-problem-sending-the-email":"Une erreur est survenue, lors de l’envoi de l’e-mail.",
|
||||
"back-to-login-form": "Retour à la page de connexion",
|
||||
"send-me-a-login-access-code": "Envoyez-moi un code d’accès de connexion",
|
||||
"get-login-access-code": "Obtenir le code d’accès de connexion",
|
||||
"email-notification-login-access-code": "<p>Ceci est une notification à partir de votre site {{WEBSITE_NAME}}</p><p>Vous avez demandé un code d’accès de connexion, merci de suivre lien suivant :</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Il n’y a aucun article planifié.",
|
||||
"show-password": "Afficher le mot de passe",
|
||||
"edit-or-remove-your=pages": "Gérer vos pages.",
|
||||
"edit-or-remove-your-blogs-posts": "Gérer vos articles.",
|
||||
"general-settings": "Paramètres généraux",
|
||||
"advanced-settings": "Paramètres avancés",
|
||||
"manage-users": "Gestion des utilisateurs",
|
||||
"view-and-edit-your-profile": "Modifier votre profil",
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "Le mot de passe doit contenir au moins 6 caractères",
|
||||
"images": "Images",
|
||||
"upload-image": "Envoyer une image",
|
||||
"drag-and-drop-or-click-here": "Glissez et déposez ou cliquez ici",
|
||||
"insert-image": "Insérer l’image sélectionnée",
|
||||
"supported-image-file-types": "Extensions des images prises en charge",
|
||||
"date-format": "Format de la Date",
|
||||
"time-format": "Format de l’heure",
|
||||
"chat-with-developers-and-users-on-gitter":"Chattez avec les développeurs et les utilisateurs sur [Gitter](https://gitter.im/dignajar/bludit)",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"Ceci est une brève description de vous-même ou de votre site, pour modifier ce texte aller dans le panneau d’administration, paramètres -> plugins et configurer le plugin « à propos ».",
|
||||
"profile-picture": "Image de profil",
|
||||
"the-about-page-is-very-important": "Votre page **à propos** est très utile. Elle fournit à vos visiteurs des informations importantes sur vous, elle crée un rapport de confiance entre vous et votre visiteur, elle présente votre société et votre site et elle vous différencie de tous les autres sites de votre niche.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Changer le contenu de cette page à partir du panneau d’administration, Gestion de contenu -> Pages et cliquez sur la page « à propos » pour l’éditer.",
|
||||
"about-your-site-or-yourself": "À propos de vous",
|
||||
"welcome-to-bludit": "Bienvenue sur Bludit",
|
||||
"password-must-be-at-least-6-characters-long": "Le mot de passe doit contenir au moins 6 caractères",
|
||||
"images": "Images",
|
||||
"upload-image": "Envoyer une image",
|
||||
"drag-and-drop-or-click-here": "Glissez et déposez ou cliquez ici",
|
||||
"insert-image": "Insérer l’image sélectionnée",
|
||||
"supported-image-file-types": "Extensions des images prises en charge",
|
||||
"date-format": "Format de la Date",
|
||||
"time-format": "Format de l’heure",
|
||||
"chat-with-developers-and-users-on-gitter":"Chattez avec les développeurs et les utilisateurs sur [Gitter](https://gitter.im/dignajar/bludit)",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"Ceci est une brève description de vous-même ou de votre site, pour modifier ce texte aller dans le panneau d’administration, paramètres -> plugins et configurer le plugin « à propos ».",
|
||||
"profile-picture": "Image de profil",
|
||||
"the-about-page-is-very-important": "Votre page **à propos** est très utile. Elle fournit à vos visiteurs des informations importantes sur vous, elle crée un rapport de confiance entre vous et votre visiteur, elle présente votre société et votre site et elle vous différencie de tous les autres sites de votre niche.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Changer le contenu de cette page à partir du panneau d’administration, Gestion de contenu -> Pages et cliquez sur la page « à propos » pour l’éditer.",
|
||||
"about-your-site-or-yourself": "À propos de vous",
|
||||
"welcome-to-bludit": "Bienvenue sur Bludit",
|
||||
|
||||
"site-information": "Informations sur le site",
|
||||
"date-and-time-formats": "Format de la date et de l’heure",
|
||||
"activate": "Activer",
|
||||
"deactivate": "Désactiver",
|
||||
"site-information": "Informations sur le site",
|
||||
"date-and-time-formats": "Format de la date et de l’heure",
|
||||
"activate": "Activer",
|
||||
"deactivate": "Désactiver",
|
||||
|
||||
"cover-image": "Image de couverture",
|
||||
"blog": "Blog",
|
||||
"more-images": "Plus d’images",
|
||||
"double-click-on-the-image-to-add-it": "Double-cliquez sur l’image pour l’ajouter.",
|
||||
"click-here-to-cancel": "Cliquez ici pour annuler.",
|
||||
"type-the-tag-and-press-enter": "Saisissez le tag et appuyez sur Entrée.",
|
||||
"manage-your-bludit-from-the-admin-panel": "Gérez votre Bludit depuis [l’interface d’administration]({{ADMIN_AREA_LINK}})",
|
||||
"there-are-no-images":"Il n’y a aucune image"
|
||||
}
|
||||
"cover-image": "Image de couverture",
|
||||
"blog": "Blog",
|
||||
"more-images": "Plus d’images",
|
||||
"double-click-on-the-image-to-add-it": "Double-cliquez sur l’image pour l’ajouter.",
|
||||
"click-here-to-cancel": "Cliquez ici pour annuler.",
|
||||
"type-the-tag-and-press-enter": "Saisissez le tag et appuyez sur Entrée.",
|
||||
"add": "Ajouter",
|
||||
"manage-your-bludit-from-the-admin-panel": "Gérez votre Bludit depuis [l’interface d’administration]({{ADMIN_AREA_LINK}})",
|
||||
"there-are-no-images":"Il n’y a aucune image",
|
||||
|
||||
"click-on-the-image-for-options": "Cliquez sur l’image pour plus d’options.",
|
||||
"set-as-cover-image": "Définir comme image de couverture",
|
||||
"delete-image": "Supprimer l’image",
|
||||
"image-description": "Description de l’image",
|
||||
|
||||
"social-networks": "Réseaux sociaux",
|
||||
"twitter-username": "Compte utilisateur Twitter",
|
||||
"facebook-username": "Compte utilisateur Facebook",
|
||||
"google-username": "Compte utilisateur Google",
|
||||
"instagram-username": "Compte utilisateur Instagram"
|
||||
}
|
||||
|
@ -140,8 +140,8 @@
|
||||
"whats-next": "מה הלאה?",
|
||||
"manage-your-bludit-from-the-admin-panel": "נהל את Bludit מ[דף הניהול](./admin/)",
|
||||
"follow-bludit-on": "עקוב אחר Bludit",
|
||||
"visit-the-support-forum": "בקר ב[פורום](http://forum.bludit.com) לתמיכה",
|
||||
"read-the-documentation-for-more-information": "קרא את ה[מסמכים](http://docs.bludit.com) למידע נוסף",
|
||||
"visit-the-support-forum": "בקר ב[פורום](https://forum.bludit.com) לתמיכה",
|
||||
"read-the-documentation-for-more-information": "קרא את ה[מסמכים](https://docs.bludit.com) למידע נוסף",
|
||||
"share-with-your-friends-and-enjoy": "שתף עם חבריך",
|
||||
"the-page-has-not-been-found": "הדף לא נמצא.",
|
||||
"error": "שגיאה",
|
||||
@ -211,4 +211,4 @@
|
||||
|
||||
"this-is-a-brief-description-of-yourself-our-your-blog":"זהו תאור קצר עליך או על אתרך. בכדי לשנות אותו נווט לדף הניהול->הגדרות->תוספים והגדר את תוסף about",
|
||||
"profile-picture": "תמונת פרופיל"
|
||||
}
|
||||
}
|
@ -1,166 +0,0 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Bahasa Indonesia (Indonesia)",
|
||||
"english-name": "Indonesian",
|
||||
"last-update": "2015-09-29",
|
||||
"author": "Cempal",
|
||||
"email": "contact@cempal.com",
|
||||
"website": "http://www.cempal.com"
|
||||
},
|
||||
|
||||
"username": "Nama Pengguna",
|
||||
"password": "Kata Sandi",
|
||||
"confirm-password": "Ulangi Kata Sandi",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Dasbor",
|
||||
"role": "Peran",
|
||||
"post": "Posting",
|
||||
"posts": "Posting",
|
||||
"users": "Pengguna",
|
||||
"administrator": "Administrator",
|
||||
"add": "Tambah",
|
||||
"cancel": "Batal",
|
||||
"content": "Isi",
|
||||
"title": "Judul",
|
||||
"no-parent": "Tanpa Induk",
|
||||
"edit-page": "Sunting halaman",
|
||||
"edit-post": "Sunting post",
|
||||
"add-a-new-user": "Tambah pengguna baru",
|
||||
"parent": "Induk",
|
||||
"friendly-url": "Alamat URL Yang Ramah",
|
||||
"description": "Penjelasan",
|
||||
"posted-by": "Diterbitkan oleh",
|
||||
"tags": "Label",
|
||||
"position": "Posisi",
|
||||
"save": "Simpan",
|
||||
"draft": "Konsep",
|
||||
"delete": "Hapus",
|
||||
"registered": "Terdaftar",
|
||||
"Notifications": "Pemberitahuan",
|
||||
"profile": "Profil",
|
||||
"email": "Surat elektronik",
|
||||
"settings": "Pengaturan",
|
||||
"general": "Umum",
|
||||
"advanced": "Lanjutan",
|
||||
"regional": "Wilayah",
|
||||
"about": "Tentang",
|
||||
"login": "Masuk",
|
||||
"logout": "Keluar",
|
||||
"manage": "Kelola",
|
||||
"themes": "Tema",
|
||||
"prev-page": "Halaman sebelumnya",
|
||||
"next-page": "Halaman selanjutnya",
|
||||
"configure-plugin": "Atur plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Konfirmasi penghapusan, tindakan ini tidak dapat dibatalkan.",
|
||||
"site-title": "Judul situs",
|
||||
"site-slogan": "Slogan situs",
|
||||
"site-description": "Deskripsi situs",
|
||||
"footer-text": "Footer teks",
|
||||
"posts-per-page": "Jumlah posting per halaman",
|
||||
"site-url": "Alamat situs",
|
||||
"writting-settings": "Pengaturan penulisan",
|
||||
"url-filters": "Filter URL",
|
||||
"page": "Halaman",
|
||||
"pages": "Halaman",
|
||||
"home": "Beranda",
|
||||
"welcome-back": "Selamat Datang kembali",
|
||||
"language": "Bahasa",
|
||||
"website": "Website",
|
||||
"timezone": "Zona waktu",
|
||||
"locale": "Lokal",
|
||||
"new-post": "Post baru",
|
||||
"html-and-markdown-code-supported": "Mendukung HTML dan kode Markdown",
|
||||
"new-page": "Halaman baru",
|
||||
"manage-posts": "Kelola posting",
|
||||
"published-date": "Tanggal diterbitkan",
|
||||
"modified-date": "Tanggal modifikasi",
|
||||
"empty-title": "Judul kosong",
|
||||
"plugins": "Plugin",
|
||||
"install-plugin": "Pasang plugin",
|
||||
"uninstall-plugin": "Hapus plugin",
|
||||
"new-password": "Kata kunci baru",
|
||||
"edit-user": "Edit pengguna",
|
||||
"publish-now": "Publikasi sekarang",
|
||||
"first-name": "Nama depan",
|
||||
"last-name": "Nama belakang",
|
||||
"bludit-version": "Versi Bludit",
|
||||
"powered-by": "Dipersembahkan oleh",
|
||||
"recent-posts": "Posting Terbaru",
|
||||
"manage-pages": "Kelola halaman",
|
||||
"advanced-options": "Pilihan tingkat lanjut",
|
||||
"user-deleted": "Pengguna dihapus",
|
||||
"page-added-successfully": "Halaman telah ditambahkan",
|
||||
"post-added-successfully": "Post telah ditambahkan",
|
||||
"the-post-has-been-deleted-successfully": "Posting telah berhasil dihapus",
|
||||
"the-page-has-been-deleted-successfully": "Halaman telah berhasil dihapus",
|
||||
"username-or-password-incorrect": "Nama pengguna atau kata kunci tidak cocok",
|
||||
"database-regenerated": "Database diregenerasi",
|
||||
"the-changes-have-been-saved": "Perubahan telah disimpan",
|
||||
"enable-more-features-at": "Memungkinkan lebih banyak fitur di",
|
||||
"username-already-exists": "Nama pengguna sudah ada",
|
||||
"username-field-is-empty": "Nama pengguna tidak diisi",
|
||||
"the-password-and-confirmation-password-do-not-match":"Kata kunci dan konfirmasi kata kunci tidak sama",
|
||||
"user-has-been-added-successfully": "Pengguna telah ditambahkan",
|
||||
"you-do-not-have-sufficient-permissions": "Anda tidak memiliki izin yang memadai untuk mengakses halaman ini, hubungi administrator.",
|
||||
"settings-advanced-writting-settings": "Pengaturan->Tingkat Lanjut->Pengaturan Penulisan",
|
||||
"new-posts-and-pages-synchronized": "Post dan halaman baru telah disinkronisasi.",
|
||||
"you-can-choose-the-users-privilege": "Anda dapat memilih hak pengguna. Peran Editor hanya bisa menulis halaman dan posting.",
|
||||
"email-will-not-be-publicly-displayed": "Alamat surat elektronik tidak akan ditampilkan untuk umum. Direkomendasikan untuk pemulihan kata kunci dan pemberitahuan.",
|
||||
"use-this-field-to-name-your-site": "Gunakan bidang ini untuk nama situs Anda, akan muncul di bagian atas setiap halaman situs Anda.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Gunakan bidang ini untuk menambahkan frase menarik di situs Anda.",
|
||||
"you-can-add-a-site-description-to-provide": "Anda dapat menambahkan deskripsi situs untuk memberikan informasi singkat mengenai situs Anda.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Anda dapat menambahkan teks di bagian bawah setiap halaman. misalnya: hak cipta, pemilik, tanggal, dll.",
|
||||
"number-of-posts-to-show-per-page": "Jumlah posting untuk ditampilkan per halaman.",
|
||||
"the-url-of-your-site": "Alamat URL dari situs Anda.",
|
||||
"add-or-edit-description-tags-or": "Tambahkan atau ubah deskripsi, label, atau ubah alamat URL.",
|
||||
"select-your-sites-language": "Pilih bahasa bagi situs Anda.",
|
||||
"select-a-timezone-for-a-correct": "Pilih zona waktu bagi situs Anda.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Anda dapat menggunakan bidang ini untuk mendefinisikan satu set parameter yang terkait dengan bahasa, negara dan preferensi khusus.",
|
||||
"you-can-modify-the-url-which-identifies":"Anda dapat memodifikasi URL yang mengidentifikasi halaman atau posting menggunakan kata kunci yang mudah dipahami manusia. Tidak lebih dari 150 karakter.",
|
||||
"this-field-can-help-describe-the-content": "Bidang ini untuk membantu menjelaskan isi dalam beberapa kata. Tidak lebih dari 150 karakter.",
|
||||
"write-the-tags-separated-by-comma": "Tulis label yang dipisahkan oleh tanda koma. Contohnya: label1, label2, label3",
|
||||
"delete-the-user-and-all-its-posts":"Hapus pengguna dan semua postingnya",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Hapus pengguna dan hibahkan postingnya kepada pengguna dengan tingkatan admin",
|
||||
"read-more": "Baca seterusnya",
|
||||
"show-blog": "Tampilkan blog",
|
||||
"default-home-page": "Beranda default",
|
||||
"version": "Versi",
|
||||
"there-are-no-drafts": "Tidak ada draft.",
|
||||
"create-a-new-article-for-your-blog":"Buat artikel baru untuk blog Anda.",
|
||||
"create-a-new-page-for-your-website":"Membuat halaman baru untuk situs web Anda.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Undang teman untuk berkolaborasi pada situs Anda.",
|
||||
"change-your-language-and-region-settings":"Ubah pengaturan bahasa dan wilayah Anda.",
|
||||
"language-and-timezone":"Bahasa dan zona waktu",
|
||||
"author": "Penulis",
|
||||
"start-here": "Mulai dari sini",
|
||||
"install-theme": "Pasang tema",
|
||||
"first-post": "Posting pertama",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Selamat Anda telah berhasil menginstal **Bludit**",
|
||||
"whats-next": "Apa Berikutnya",
|
||||
"manage-your-bludit-from-the-admin-panel": "Kelola Bludit Anda dari [admin area](./admin/)",
|
||||
"follow-bludit-on": "Ikuti Bludit di",
|
||||
"visit-the-support-forum": "Kunjungi [forum](http://forum.bludit.com) untuk bantuan",
|
||||
"read-the-documentation-for-more-information": "Baca [documentation](http://docs.bludit.com) untuk informasi lebih lanjut",
|
||||
"share-with-your-friends-and-enjoy": "Berbagi dengan teman Anda dan selamat menikmati",
|
||||
"the-page-has-not-been-found": "Halaman tidak ditemukan.",
|
||||
"error": "Kesalahan",
|
||||
"bludit-installer": "Bantuan Pemasangan Bludit",
|
||||
"welcome-to-the-bludit-installer": "Selamat Datang pada Bantuan Pemasangan Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Lengkapi formulir, pilih kata kunci untuk pengguna « admin »",
|
||||
"password-visible-field": "Kata kunci, bidang yang terlihat!",
|
||||
"install": "Pasang",
|
||||
"choose-your-language": "Pilih bahasa Anda",
|
||||
"next": "Berikutnya",
|
||||
"the-password-field-is-empty": "Kata kunci tidak diisi",
|
||||
"your-email-address-is-invalid":"Alamat surat elektronik tidak benar.",
|
||||
"proceed-anyway": "Tetap lanjutkan!",
|
||||
"drafts":"Draft",
|
||||
"ip-address-has-been-blocked": "Alamat IP diblokir.",
|
||||
"try-again-in-a-few-minutes": "Coba lagi dalam beberapa menit.",
|
||||
"date": "Tanggal",
|
||||
"you-can-schedule-the-post-just-select-the-date-and-time": "Anda dapat menjadwalkan posting, cukup pilih tanggal dan waktu.",
|
||||
"scheduled": "Telah dijadwalkan",
|
||||
"publish": "Terbitkan",
|
||||
"please-check-your-theme-configuration": "Silahkan periksa pengaturan tema Anda."
|
||||
}
|
@ -3,7 +3,7 @@
|
||||
{
|
||||
"native": "Italiano (Italia)",
|
||||
"english-name": "Italian",
|
||||
"last-update": "2016-01-22",
|
||||
"last-update": "2016-02-20",
|
||||
"author": "Daniele La Pira",
|
||||
"email": "daniele.lapira@gmail.com",
|
||||
"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-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.",
|
||||
|
||||
"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",
|
||||
"read-more": "Leggi tutto",
|
||||
@ -137,10 +138,10 @@
|
||||
"first-post": "Primo articolo",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Congratulazioni, hai installato con successo **Bludit**",
|
||||
"whats-next": "Passi successivi",
|
||||
|
||||
|
||||
"follow-bludit-on": "Segui Bludit su",
|
||||
"visit-the-support-forum": "Visita il [forum](http://forum.bludit.com) per supporto",
|
||||
"read-the-documentation-for-more-information": "Leggi la [documentazione](http://docs.bludit.com) per ulteriori informazioni",
|
||||
"visit-the-support-forum": "Visita il [forum](https://forum.bludit.com) per supporto",
|
||||
"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",
|
||||
"the-page-has-not-been-found": "La pagina non è stata trovata.",
|
||||
"error": "Errore",
|
||||
@ -195,7 +196,7 @@
|
||||
"edit-or-remove-your-blogs-posts": "Modifica o elimina articoli del blog.",
|
||||
"general-settings": "Impostazioni generali",
|
||||
"advanced-settings": "Impostazioni avanzate",
|
||||
"manage-users": "Gestisci utenti",
|
||||
"manage-users": "Amministra utenti",
|
||||
"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",
|
||||
@ -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.",
|
||||
"about-your-site-or-yourself": "A proposito di te e del tuo sito.",
|
||||
"welcome-to-bludit": "Benvenuti su Bludit",
|
||||
|
||||
|
||||
"site-information": "Informazioni sul sito",
|
||||
"date-and-time-formats": "Formati data e ora",
|
||||
"activate": "Attiva",
|
||||
"deactivate": "Disattiva",
|
||||
|
||||
|
||||
"cover-image": "Immagine di copertina",
|
||||
"blog": "Blog",
|
||||
"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.",
|
||||
"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}})",
|
||||
"there-are-no-images":"Non ci sono immagini"
|
||||
"add": "Aggiungi",
|
||||
"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"
|
||||
}
|
||||
|
@ -1,108 +1,231 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "日本語",
|
||||
"native": "日本語 (Japan)",
|
||||
"english-name": "Japanese",
|
||||
"last-update": "2015-07-15",
|
||||
"last-update": "2016-02-08",
|
||||
"author": "Jun NOGATA",
|
||||
"email": "nogajun@gmail.com",
|
||||
"email": "nogajun+bludit@gmail.com",
|
||||
"website": "http://www.nofuture.tv/"
|
||||
},
|
||||
|
||||
"username": "ユーザー名",
|
||||
"password": "パスワード",
|
||||
"confirm-password": "パスワードの確認",
|
||||
"editor": "編集者",
|
||||
"dashboard": "ダッシュボード",
|
||||
"role": "役割",
|
||||
"posts": "記事",
|
||||
"users": "ユーザー",
|
||||
"administrator": "管理者",
|
||||
"add": "追加",
|
||||
"cancel": "キャンセル",
|
||||
"content": "内容",
|
||||
"title": "タイトル",
|
||||
"no-parent": "親ページなし",
|
||||
"edit-page": "ページの編集",
|
||||
"edit-post": "記事の編集",
|
||||
"add-a-new-user": "新規ユーザーの追加",
|
||||
"parent": "親ページ",
|
||||
"friendly-url": "フレンドリーURL",
|
||||
"description": "概要",
|
||||
"posted-by": "投稿者",
|
||||
"tags": "タグ",
|
||||
"position": "位置",
|
||||
"save": "保存",
|
||||
"draft": "下書き",
|
||||
"delete": "削除",
|
||||
"registered": "登録日",
|
||||
"Notifications": "通知",
|
||||
"profile": "プロフィール",
|
||||
"email": "Eメール",
|
||||
"settings": "設定",
|
||||
"general": "全般",
|
||||
"advanced": "詳細",
|
||||
"regional": "地域",
|
||||
"about": "Bluditについて",
|
||||
"login": "ログイン",
|
||||
"logout": "ログアウト",
|
||||
"manage": "管理",
|
||||
"themes": "テーマ",
|
||||
"configure-plugin": "プラグインの設定",
|
||||
"confirm-delete-this-action-cannot-be-undone": "削除しますか? この操作は取り消せません",
|
||||
"site-title": "サイトタイトル",
|
||||
"site-slogan": "サイトキャッチフレーズ",
|
||||
"site-description": "サイト概要",
|
||||
"footer-text": "フッターテキスト",
|
||||
"posts-per-page": "ページあたりの投稿数",
|
||||
"site-url": "サイトURL",
|
||||
"writting-settings": "編集設定",
|
||||
"url-filters": "URLフィルター",
|
||||
"pages": "ページ",
|
||||
"home": "ホーム",
|
||||
"welcome-back": "お帰りなさい",
|
||||
"language": "言語",
|
||||
"website": "Webサイト",
|
||||
"timezone": "タイムゾーン",
|
||||
"locale": "ロケール",
|
||||
"notifications": "お知らせ",
|
||||
"new-post": "新規記事",
|
||||
"html-and-markdown-code-supported": "HTMLとMarkdownが利用できます",
|
||||
"new-page": "新規ページ",
|
||||
"manage-posts": "投稿の管理",
|
||||
"published-date": "公開日",
|
||||
"modified-date": "更新日",
|
||||
"empty-title": "タイトルなし",
|
||||
"plugins": "プラグイン",
|
||||
"install-plugin": "インストール",
|
||||
"uninstall-plugin": "アンインストール",
|
||||
"new-password": "新しいパスワード",
|
||||
"edit-user": "ユーザーの編集",
|
||||
"publish-now": "今すぐ公開",
|
||||
"first-name": "名",
|
||||
"last-name": "姓",
|
||||
"manage-pages": "ページの管理",
|
||||
"advanced-options": "詳細オプション",
|
||||
"database-regenerated": "データベースを再生成しました",
|
||||
"html-markdown-code-supported": "HTMLとMarkdownが利用できます",
|
||||
"enable-more-features-at": "より多くの機能を有効に",
|
||||
"settings-advanced-writting-settings": "設定->詳細->編集設定",
|
||||
"new-posts-and-pages-synchronized": "新規投稿とページを同期しました",
|
||||
"you-can-choose-the-users-privilege": "ユーザーの権限を設定します。編集者は記事とページの投稿編集のみできます",
|
||||
"email-will-not-be-publicly-displayed": "メールアドレスは公開されません。パスワードの復旧や通知に利用されます",
|
||||
"use-this-field-to-name-your-site": "サイト名を入力します。サイト名は各ページ上部に表示されます",
|
||||
"use-this-field-to-add-a-catchy-prhase": "サイトのキャッチフレーズを入力します",
|
||||
"you-can-add-a-site-description-to-provide": "サイトの説明や紹介に利用する概要を入力します",
|
||||
"you-can-add-a-small-text-on-the-bottom": "各ページ下部に追加する短いテキストを入力します。使用例: 著作権表示、所有者名表示、日付など",
|
||||
"number-of-posts-to-show-per-page": "1ページに表示する投稿数を設定します",
|
||||
"the-url-of-your-site": "サイトのURLを設定します",
|
||||
"add-or-edit-description-tags-or": "コンテンツ概要やタグの追加と編集、フレンドリーURLの変更オプションを利用します",
|
||||
"select-your-sites-language": "サイトで利用する言語を選択します",
|
||||
"select-a-timezone-for-a-correct": "正しい日付/時刻を表示するためのタイムゾーンを選択します",
|
||||
"you-can-use-this-field-to-define-a-set-of": "言語や国、固有の設定に関する設定を変更する場合に利用します",
|
||||
"email": "Eメール",
|
||||
"email": "Eメール",
|
||||
"email": "Eメール",
|
||||
"email": "Eメール",
|
||||
"email": "Eメール"
|
||||
"username": "ユーザー名",
|
||||
"password": "パスワード",
|
||||
"confirm-password": "パスワードの確認",
|
||||
"editor": "編集者",
|
||||
"dashboard": "ダッシュボード",
|
||||
"role": "役割",
|
||||
"post": "記事",
|
||||
"posts": "記事",
|
||||
"users": "ユーザー",
|
||||
"administrator": "管理者",
|
||||
"add": "追加",
|
||||
"cancel": "キャンセル",
|
||||
"content": "内容",
|
||||
"title": "タイトル",
|
||||
"no-parent": "親ページなし",
|
||||
"edit-page": "ページの編集",
|
||||
"edit-post": "記事の編集",
|
||||
"add-a-new-user": "新規ユーザーを追加",
|
||||
"parent": "親ページ",
|
||||
"friendly-url": "フレンドリーURL",
|
||||
"description": "概要",
|
||||
"posted-by": "投稿者",
|
||||
"tags": "タグ",
|
||||
"position": "位置",
|
||||
"save": "保存",
|
||||
"draft": "下書き",
|
||||
"delete": "削除",
|
||||
"registered": "登録日",
|
||||
"Notifications": "通知",
|
||||
"profile": "プロフィール",
|
||||
"email": "Eメール",
|
||||
"settings": "設定",
|
||||
"general": "全般",
|
||||
"advanced": "詳細",
|
||||
"regional": "地域",
|
||||
"about": "About",
|
||||
"login": "ログイン",
|
||||
"logout": "ログアウト",
|
||||
"manage": "管理",
|
||||
"themes": "テーマ",
|
||||
"prev-page": "前のページ",
|
||||
"next-page": "次のページ",
|
||||
"configure-plugin": "プラグインの設定",
|
||||
"confirm-delete-this-action-cannot-be-undone": "削除しますか? この操作は取り消せません",
|
||||
"site-title": "サイトタイトル",
|
||||
"site-slogan": "サイトキャッチフレーズ",
|
||||
"site-description": "サイト概要",
|
||||
"footer-text": "フッターテキスト",
|
||||
"posts-per-page": "ページあたりの投稿数",
|
||||
"site-url": "サイトURL",
|
||||
"writting-settings": "編集設定",
|
||||
"url-filters": "URLフィルター",
|
||||
"page": "ページ",
|
||||
"pages": "ページ",
|
||||
"home": "ホーム",
|
||||
"welcome-back": "お帰りなさい",
|
||||
"language": "言語",
|
||||
"website": "Webサイト",
|
||||
"timezone": "タイムゾーン",
|
||||
"locale": "ロケール",
|
||||
"new-post": "新規記事",
|
||||
"new-page": "新規ページ",
|
||||
"html-and-markdown-code-supported": "HTMLとMarkdownが利用できます",
|
||||
"manage-posts": "投稿管理",
|
||||
"published-date": "公開日",
|
||||
"modified-date": "更新日",
|
||||
"empty-title": "タイトルなし",
|
||||
"plugins": "プラグイン",
|
||||
"install-plugin": "インストール",
|
||||
"uninstall-plugin": "アンインストール",
|
||||
"new-password": "新しいパスワード",
|
||||
"edit-user": "ユーザー編集",
|
||||
"publish-now": "今すぐ公開",
|
||||
"first-name": "名",
|
||||
"last-name": "姓",
|
||||
"bludit-version": "Bludit バージョン",
|
||||
"powered-by": "Powered by",
|
||||
"recent-posts": "最近の投稿",
|
||||
"manage-pages": "ページ管理",
|
||||
"advanced-options": "詳細オプション",
|
||||
"user-deleted": "ユーザー削除",
|
||||
"page-added-successfully": "ページを追加しました",
|
||||
"post-added-successfully": "記事を追加しました",
|
||||
"the-post-has-been-deleted-successfully": "記事を削除しました",
|
||||
"the-page-has-been-deleted-successfully": "ページを削除しました",
|
||||
"username-or-password-incorrect": "ユーザー名またはパスワードが不正です",
|
||||
"database-regenerated": "データベースを再生成しました",
|
||||
"the-changes-have-been-saved": "変更を保存しました",
|
||||
"enable-more-features-at": "より多くの機能を有効に",
|
||||
"username-already-exists": "ユーザー名は存在しています",
|
||||
"username-field-is-empty": "ユーザー名が空です",
|
||||
"the-password-and-confirmation-password-do-not-match":"パスワードが一致しません",
|
||||
"user-has-been-added-successfully": "ユーザーは追加されました",
|
||||
"you-do-not-have-sufficient-permissions": "このページにアクセスするための権限がありません。管理者に連絡をしてください。",
|
||||
"settings-advanced-writting-settings": "設定->詳細->編集設定",
|
||||
"new-posts-and-pages-synchronized": "新規投稿とページを同期しました",
|
||||
"you-can-choose-the-users-privilege": "ユーザー権限の選択ができます編集者は、記事とページの作成のみおこなえます。",
|
||||
"email-will-not-be-publicly-displayed": "メールアドレスは公開されません。通知とパスワードの回復に利用されます。",
|
||||
"use-this-field-to-name-your-site": "サイト名を入力します。サイト名は各ページ上部に表示されます。",
|
||||
"use-this-field-to-add-a-catchy-phrase": "サイトのキャッチフレーズを入力します。",
|
||||
"you-can-add-a-site-description-to-provide": "サイトの説明や紹介に利用する概要を入力します。",
|
||||
"you-can-add-a-small-text-on-the-bottom": "各ページ下部に追加する短いテキストを入力します。例: 著作権や所有者名、日付など。",
|
||||
"number-of-posts-to-show-per-page": "ページあたりの投稿数を設定します。",
|
||||
"the-url-of-your-site": "サイトURLを設定します。",
|
||||
"add-or-edit-description-tags-or": "コンテンツ概要やタグの追加と編集、フレンドリーURLの変更オプションを利用します",
|
||||
"select-your-sites-language": "サイトで利用する言語を選択します",
|
||||
"select-a-timezone-for-a-correct": "サイト上で正しく日付・時間が表示されるタイムゾーンを選択します。",
|
||||
"you-can-use-this-field-to-define-a-set-of": "言語や国、固有の設定について変更する場合に利用します",
|
||||
"you-can-modify-the-url-which-identifies":"ページの区別や投稿に関連したわかりやすいキーワードを用いたURLに変更できます。150文字程度が目安です。",
|
||||
"this-field-can-help-describe-the-content": "このフィールドにはコンテンツの概要を記述します。150文字程度が目安です。",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"ユーザーとそのユーザーの投稿もすべて削除",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "ユーザーを削除し、ユーザーの投稿を管理者に引き継ぐ",
|
||||
"read-more": "続きを読む",
|
||||
"show-blog": "ブログを表示",
|
||||
"default-home-page": "規定のホームページ",
|
||||
"version": "バージョン",
|
||||
"there-are-no-drafts": "下書きはありません。",
|
||||
"create-a-new-article-for-your-blog":"ブログの新規記事を作成します。",
|
||||
"create-a-new-page-for-your-website":"Webサイトの新規ページを作成します。",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Webサイトで共同作業をおこなう人を招待します。",
|
||||
"change-your-language-and-region-settings":"言語や地域の設定を変更します。",
|
||||
"language-and-timezone":"言語とタイムゾーン",
|
||||
"author": "作者",
|
||||
"start-here": "ここからスタート",
|
||||
"install-theme": "テーマをインストール",
|
||||
"first-post": "最初の投稿",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "おめでとうございます。 **Bludit**は正常にインストールされました",
|
||||
"whats-next": "この次は",
|
||||
|
||||
"follow-bludit-on": "Bluditをフォローする",
|
||||
"visit-the-support-forum": "サポート[フォーラム](https:\/\/forum.bludit.com)(英語)に参加する",
|
||||
"read-the-documentation-for-more-information": "詳細について[文書](https:\/\/docs.bludit.com)を読む",
|
||||
"share-with-your-friends-and-enjoy": "友人と共有して楽しむ",
|
||||
"the-page-has-not-been-found": "ページが見つかりません。",
|
||||
"error": "エラー",
|
||||
"bludit-installer": "Bluditインストーラー",
|
||||
"welcome-to-the-bludit-installer": "Bluditインストーラーへようこそ",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "admin(管理者)ユーザーのパスワードとメールアドレスを入力してください",
|
||||
"password-visible-field": "パスワード表示中!",
|
||||
"install": "インストール",
|
||||
"choose-your-language": "言語を選択してください",
|
||||
"next": "次へ",
|
||||
"the-password-field-is-empty": "パスワードが空です",
|
||||
"your-email-address-is-invalid":"Eメールアドレスが無効です",
|
||||
"proceed-anyway": "このまま続行する!",
|
||||
"drafts":"下書き",
|
||||
"ip-address-has-been-blocked": "IPアドレスはブロックされています。",
|
||||
"try-again-in-a-few-minutes": "しばらくしてからもう一度お試しください。",
|
||||
"date": "日付",
|
||||
|
||||
"scheduled": "予約済み",
|
||||
"publish": "公開済み",
|
||||
"please-check-your-theme-configuration": "テーマの設定を確認してください。",
|
||||
"plugin-label": "プラグインラベル",
|
||||
"enabled": "有効",
|
||||
"disabled": "無効",
|
||||
"cli-mode": "CLIモード",
|
||||
"command-line-mode": "コマンドライン・モード",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "コマンドライン・モードを有効にすると、ファイルシステム上から投稿やページの追加、編集、削除がおこなえます。",
|
||||
|
||||
"configure": "設定",
|
||||
"uninstall": "アンインストール",
|
||||
"change-password": "パスワードを変更",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "投稿を予約するには日付と時間を選択します。",
|
||||
"write-the-tags-separated-by-commas": "タグはカンマで区切って書きます。",
|
||||
"status": "状態",
|
||||
"published": "公開",
|
||||
"scheduled-posts": "予約投稿",
|
||||
"statistics": "統計",
|
||||
"name": "名前",
|
||||
"email-account-settings":"Eメールアカウント設定",
|
||||
"sender-email": "送信者メールアドレス",
|
||||
"emails-will-be-sent-from-this-address":"Eメールはこのアドレスから送信されます。",
|
||||
"bludit-login-access-code": "BLUDIT - ログインアクセスコード",
|
||||
"check-your-inbox-for-your-login-access-code":"受信トレイに届いたログインアクセスコードを確認してください",
|
||||
"there-was-a-problem-sending-the-email":"メール送信について問題が発生しました",
|
||||
"back-to-login-form": "ログインフォームへ戻る",
|
||||
"send-me-a-login-access-code": "ログインのためのアクセスコードを送信",
|
||||
"get-login-access-code": "ログインアクセスコードを送信",
|
||||
"email-notification-login-access-code": "<p>これは、あなたのWebサイト「 {{WEBSITE_NAME}} 」からの通知です。<\/p><p>ご依頼のログインアクセスコードにアクセスするには、次のリンクをクリックしてください: <\/p><p>{{LINK}}<\/p>",
|
||||
"there-are-no-scheduled-posts": "予約された投稿はありません。",
|
||||
"show-password": "パスワードを表示",
|
||||
"edit-or-remove-your=pages": "ページの編集または削除します。",
|
||||
"edit-or-remove-your-blogs-posts": "ブログ記事の編集または削除します。",
|
||||
"general-settings": "全般設定",
|
||||
"advanced-settings": "詳細設定",
|
||||
"manage-users": "ユーザー管理",
|
||||
"view-and-edit-your-profile": "プロフィールの確認と編集。",
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "パスワードは6文字以上必要です",
|
||||
"images": "画像",
|
||||
"upload-image": "画像をアップロード",
|
||||
"drag-and-drop-or-click-here": "ドラッグ・アンド・ドロップもしくはクリックします",
|
||||
"insert-image": "画像を挿入",
|
||||
"supported-image-file-types": "サポートする画像ファイルタイプ",
|
||||
"date-format": "日付の書式",
|
||||
"time-format": "時間の書式",
|
||||
"chat-with-developers-and-users-on-gitter":"[Gitter](https:\/\/gitter.im\/dignajar\/bludit)で開発者やユーザーとチャットする",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"ここには、あなた自身やサイトについての説明文を書きます。文章を変更するには、管理パネルから設定→プラグインと進み、aboutプラグインの設定から変更します。",
|
||||
"profile-picture": "プロフィール画像",
|
||||
"the-about-page-is-very-important": "aboutページは、潜在的なクライアントやパートナーにとって重要かつ強力なツールです。検索でたどり着いた人にとってAboutページは、Webサイトについて最初の情報源となります。\n",
|
||||
"change-this-pages-content-on-the-admin-panel": "このページを編集するには、管理パネルから管理→ページと進み、aboutページをクリックします。",
|
||||
"about-your-site-or-yourself": "このサイトやあなた自身について",
|
||||
"welcome-to-bludit": "Bluditへようこそ",
|
||||
|
||||
"site-information": "サイト情報",
|
||||
"date-and-time-formats": "日付と時間の書式",
|
||||
"activate": "有効化",
|
||||
"deactivate": "無効化",
|
||||
|
||||
"cover-image": "カバー画像",
|
||||
"blog": "ブログ",
|
||||
"more-images": "その他の画像",
|
||||
"double-click-on-the-image-to-add-it": "ダブルクリックで画像を挿入します。",
|
||||
"click-here-to-cancel": "ここをクリックしてキャンセル。",
|
||||
"type-the-tag-and-press-enter": "タグを入力してEnterを押します。",
|
||||
"manage-your-bludit-from-the-admin-panel": "[管理パネル]({{ADMIN_AREA_LINK}})からBluditを管理する",
|
||||
"there-are-no-images":"画像はありません。"
|
||||
}
|
@ -141,8 +141,8 @@
|
||||
"whats-next": "Apa yang anda boleh lakukan seterusnya?",
|
||||
|
||||
"follow-bludit-on": "Ikut Bludit di",
|
||||
"visit-the-support-forum": "Lawat [forum](http://forum.bludit.com) untuk bantuan",
|
||||
"read-the-documentation-for-more-information": "Baca [documentasi](http://docs.bludit.com) untuk maklumat lanjut",
|
||||
"visit-the-support-forum": "Lawat [forum](https://forum.bludit.com) untuk bantuan",
|
||||
"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": "Kongsi dengan rakan anda dan berseronoklah",
|
||||
"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\".",
|
||||
"manage-your-bludit-from-the-admin-panel": "Uruskan Bludit anda di [panel pentadbir]({{ADMIN_AREA_LINK}})",
|
||||
"there-are-no-images":"Tiada gambar"
|
||||
}
|
||||
}
|
||||
|
@ -1,166 +1,223 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Nederlands",
|
||||
"english-name": "Dutch",
|
||||
"last-update": "2015-12-11",
|
||||
"author": "",
|
||||
"email": "",
|
||||
"website": ""
|
||||
},
|
||||
"language-data":
|
||||
{
|
||||
"native": "Nederlands",
|
||||
"english-name": "Dutch",
|
||||
"last-update": "2015-12-23",
|
||||
"author": "Ray",
|
||||
"email": "",
|
||||
"website": ""
|
||||
},
|
||||
|
||||
"username": "Gebruikersnaam",
|
||||
"password": "Wachtwoord",
|
||||
"confirm-password": "Bevestig wachtwoord",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Dashboard",
|
||||
"role": "Rol",
|
||||
"post": "Artikel",
|
||||
"posts": "Artikelen",
|
||||
"users": "Gebruikers",
|
||||
"administrator": "Administrator",
|
||||
"add": "Voeg toe",
|
||||
"cancel": "Annuleer",
|
||||
"content": "Inhoud",
|
||||
"title": "Titel",
|
||||
"no-parent": "Geen bovenliggend item",
|
||||
"edit-page": "Pagina aanpassen",
|
||||
"edit-post": "Artikel aanpassen",
|
||||
"add-a-new-user": "Voeg een nieuwe gebruiker toe",
|
||||
"parent": "Parent",
|
||||
"friendly-url": "Gebruiksvriendelijke URL",
|
||||
"description": "Omschrijving",
|
||||
"posted-by": "Geplaatst door",
|
||||
"tags": "Tags",
|
||||
"position": "Positie",
|
||||
"save": "Opslaan",
|
||||
"draft": "Concept",
|
||||
"delete": "Verwijder",
|
||||
"registered": "Geregistreerd",
|
||||
"Notifications": "Berichtgevingen",
|
||||
"profile": "Profiel",
|
||||
"email": "Email",
|
||||
"settings": "Instellingen",
|
||||
"general": "Algemeen",
|
||||
"advanced": "Geadvanceerd",
|
||||
"regional": "Taal/Tijd/Locatie",
|
||||
"about": "Over",
|
||||
"login": "Aanmelden",
|
||||
"logout": "Afmelden",
|
||||
"manage": "Aanpassen",
|
||||
"themes": "Thema",
|
||||
"prev-page": "Vorige pagina",
|
||||
"next-page": "Volgende pagina",
|
||||
"configure-plugin": "Configureer de plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Bevestig het verwijderen,dit kan niet ongedaan worden gemaakt.",
|
||||
"site-title": "Titel van de site",
|
||||
"site-slogan": "Slogan voor de site",
|
||||
"site-description": "Omschrijving van de site",
|
||||
"footer-text": "Footer tekst",
|
||||
"posts-per-page": "Artikelen per pagina",
|
||||
"site-url": "De url van de site",
|
||||
"writting-settings": "Schrijf instellingen",
|
||||
"url-filters": "URL filters",
|
||||
"page": "Pagina",
|
||||
"pages": "Pagina's",
|
||||
"home": "Home",
|
||||
"welcome-back": "Welkom terug",
|
||||
"language": "Taal",
|
||||
"website": "Website",
|
||||
"timezone": "Tijdzone",
|
||||
"locale": "Lokaal",
|
||||
"new-post": "Nieuw artikel",
|
||||
"html-and-markdown-code-supported": "HTML en Markdown code worden ondersteund",
|
||||
"new-page": "Nieuwe pagina",
|
||||
"manage-posts": "Beheer artikelen",
|
||||
"published-date": "Publicatie datum",
|
||||
"modified-date": "Aanpassingsdatum",
|
||||
"empty-title": "Lege titel",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Installeer plugin",
|
||||
"uninstall-plugin": "Verwijder plugin",
|
||||
"new-password": "Nieuw wachtwoord",
|
||||
"edit-user": "Gebruiker aanpassen",
|
||||
"publish-now": "Publiceer nu",
|
||||
"first-name": "Voornaam",
|
||||
"last-name": "Achternaam",
|
||||
"bludit-version": "Bludit Versie",
|
||||
"powered-by": "Aangestuurd door",
|
||||
"recent-posts": "Recente artikelen",
|
||||
"manage-pages": "Beheer pagina's",
|
||||
"advanced-options": "Geadvanceerde opties",
|
||||
"user-deleted": "Gebruiker verwijderd",
|
||||
"page-added-successfully": "Pagina succesvol toegevoegd",
|
||||
"post-added-successfully": "Artikel succesvol toegevoegd",
|
||||
"the-post-has-been-deleted-successfully": "Artikel succesvol verwijderd",
|
||||
"the-page-has-been-deleted-successfully": "Pagina succesvol verwijderd",
|
||||
"username-or-password-incorrect": "Gebruikersnaam of wachtwoord is onjuist",
|
||||
"database-regenerated": "Database opnieuw aangemaakt",
|
||||
"the-changes-have-been-saved": "De veranderingen zijn opgeslagen",
|
||||
"enable-more-features-at": "Voeg meer opties toe",
|
||||
"username-already-exists": "Gebruikersnaam bestaat al",
|
||||
"username-field-is-empty": "Gebruikersnaam is leeg",
|
||||
"the-password-and-confirmation-password-do-not-match":"Ingevoerde wachtwoorden zijn niet gelijk aan elkaar",
|
||||
"user-has-been-added-successfully": "Gebruiker toegevoegd",
|
||||
"you-do-not-have-sufficient-permissions": "Onvoldoende rechten voor deze uitvoering",
|
||||
"settings-advanced-writting-settings": "Instellingen-> Geadvanceerd-> Schrijf instellingen",
|
||||
"new-posts-and-pages-synchronized": "Pagina's en artikelen zijn gesynchroniseerd.",
|
||||
"you-can-choose-the-users-privilege": "Stel hier privileges in. De editor rol kan alleen pagina's en artikelen plaatsen.",
|
||||
"email-will-not-be-publicly-displayed": "Email(afgeschermd). Aanbevolen voor vergeten wachtwoord en notificaties ",
|
||||
"use-this-field-to-name-your-site": "Titel van de site,wordt op iedere pagina weergegeven.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Slogan voor je site.",
|
||||
"you-can-add-a-site-description-to-provide": "Korte Omschrijving van je site.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Plaats hier een korte tekst( bijv.copyright / datum / merknaam )",
|
||||
"number-of-posts-to-show-per-page": "Aantal artikelen per pagina.",
|
||||
"the-url-of-your-site": "De url van je site.",
|
||||
"add-or-edit-description-tags-or": "Plaats of bewerk omschrijving / tags / gebruiksvriendelijke URL.",
|
||||
"select-your-sites-language": "Selecteer taal.",
|
||||
"select-a-timezone-for-a-correct": "Selecteer de tijdzone.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Speciale instellingen voor tijd / datum.",
|
||||
"you-can-modify-the-url-which-identifies":"Plaats hier de tekst voor gebruiksvriendelijke URL / niet meer dan 150 leestekens.",
|
||||
"this-field-can-help-describe-the-content": "Omschrijving voor gebruiksvriendelijke URL / niet meer dan 150 leestekens.",
|
||||
"write-the-tags-separeted-by-comma": "Tags verdeeld door komma's bijv: tag1, tag2, tag3",
|
||||
"delete-the-user-and-all-its-posts":"Verwijder gebruiker en door gebruiker geplaatste artikelen",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Verwijder gebruiker en plaats alle artikelen onder administrator ",
|
||||
"read-more": "Meer ...",
|
||||
"show-blog": "Bekijk blog",
|
||||
"default-home-page": "Home pagina",
|
||||
"version": "Versie",
|
||||
"there-are-no-drafts": "Er zijn geen concepten.",
|
||||
"create-a-new-article-for-your-blog":"Nieuw artikel.",
|
||||
"create-a-new-page-for-your-website":"Nieuwe pagina.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Nodig iemand uit om samen de site te bewerken.",
|
||||
"change-your-language-and-region-settings":"Instellingen voor taal en locatie.",
|
||||
"language-and-timezone":"Taal en tijdzone",
|
||||
"author": "Auteur",
|
||||
"start-here": "Begin hier",
|
||||
"install-theme": "Installeer thema",
|
||||
"first-post": "Eerste artikel",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gefeliciteerd **Bludit** is succesvol geinstalleerd",
|
||||
"whats-next": "En nu?",
|
||||
"manage-your-bludit-from-the-admin-panel": "Beheer Bludit via het administratie omgeving(./admin/)",
|
||||
"follow-bludit-on": "Volg Bludit via",
|
||||
"visit-the-support-forum": "Bezoek het [forum](http://forum.bludit.com) voor ondersteuning(Engels)",
|
||||
"read-the-documentation-for-more-information": "Lees de [documentatie](http://docs.bludit.com) voor meer informatie(Engels)",
|
||||
"share-with-your-friends-and-enjoy": "Deel met je vrienden en veel plezier",
|
||||
"the-page-has-not-been-found": "De pagina werd niet gevonden.",
|
||||
"error": "Error",
|
||||
"bludit-installer": "Bludit installatie programma",
|
||||
"welcome-to-the-bludit-installer": "Welkom bij het Bludit installatie programma",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Vul het formulier in, kies een gebruikersnaam en wachtwoord « admin »",
|
||||
"password-visible-field": "Wachtwoord, zichtbaar veld!",
|
||||
"install": "Installeer",
|
||||
"choose-your-language":"Kies je taal",
|
||||
"next": "Volgende",
|
||||
"the-password-field-is-empty": "Geen wachtwoord ingevuld",
|
||||
"your-email-address-is-invalid":"Het email adres is ongeldig.",
|
||||
"proceed-anyway": "Toch doorgaan!",
|
||||
"drafts":"Concepten",
|
||||
"ip-address-has-been-blocked": "IP adres is geblokkeerd.",
|
||||
"try-again-in-a-few-minutes": "Probeer het over een paar minuten nog eens.",
|
||||
"date": "Datum",
|
||||
"you-can-schedule-the-post-just-select-the-date-and-time": "Je kunt je artikel later plaatsen,voer datum en tijd in",
|
||||
"scheduled": "Ingepland",
|
||||
"publish": "Publiceer",
|
||||
"please-check-your-theme-configuration": "Denk om de thema instellingen."
|
||||
"username": "Gebruikersnaam",
|
||||
"password": "Wachtwoord",
|
||||
"confirm-password": "Bevestig wachtwoord",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Dashboard",
|
||||
"role": "Rol",
|
||||
"post": "Artikel",
|
||||
"posts": "Artikelen",
|
||||
"users": "Gebruikers",
|
||||
"administrator": "Administrator",
|
||||
"add": "Voeg toe",
|
||||
"cancel": "Annuleer",
|
||||
"content": "Inhoud",
|
||||
"title": "Titel",
|
||||
"no-parent": "Geen bovenliggend item",
|
||||
"edit-page": "Pagina aanpassen",
|
||||
"edit-post": "Artikel aanpassen",
|
||||
"add-a-new-user": "Voeg een nieuwe gebruiker toe",
|
||||
"parent": "Bovenliggend item",
|
||||
"friendly-url": "Gebruiksvriendelijke URL",
|
||||
"description": "Omschrijving",
|
||||
"posted-by": "Geplaatst door",
|
||||
"tags": "Tags",
|
||||
"position": "Positie",
|
||||
"save": "Opslaan",
|
||||
"draft": "Concept",
|
||||
"delete": "Verwijder",
|
||||
"registered": "Geregistreerd",
|
||||
"Notifications": "Berichtgevingen",
|
||||
"profile": "Profiel",
|
||||
"email": "Email",
|
||||
"settings": "Instellingen",
|
||||
"general": "Algemeen",
|
||||
"Advanced": "Geavanceerd",
|
||||
"advanced": "Geavanceerd",
|
||||
"regional": "Taal/Tijd/Locatie",
|
||||
"about": "Over ons",
|
||||
"login": "Aanmelden",
|
||||
"logout": "Afmelden",
|
||||
"manage": "Aanpassen",
|
||||
"themes": "Thema",
|
||||
"prev-page": "Vorige pagina",
|
||||
"next-page": "Volgende pagina",
|
||||
"configure-plugin": "Configureer de plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Bevestig het verwijderen,dit kan niet ongedaan worden gemaakt.",
|
||||
"site-title": "Titel van de site",
|
||||
"site-slogan": "Slogan voor de site",
|
||||
"site-description": "Omschrijving van de site",
|
||||
"footer-text": "Footer tekst",
|
||||
"posts-per-page": "Artikelen per pagina",
|
||||
"site-url": "De url van de site",
|
||||
"writting-settings": "Schrijf instellingen",
|
||||
"url-filters": "URL filters",
|
||||
"page": "Pagina",
|
||||
"pages": "Pagina's",
|
||||
"home": "Home",
|
||||
"welcome-back": "Welkom terug",
|
||||
"language": "Taal",
|
||||
"website": "Website",
|
||||
"timezone": "Tijdzone",
|
||||
"locale": "Lokaal",
|
||||
"new-post": "Nieuw artikel",
|
||||
"new-page": "Nieuwe pagina",
|
||||
"html-and-markdown-code-supported": "HTML en Markdown code worden ondersteund",
|
||||
"manage-posts": "Beheer artikelen",
|
||||
"published-date": "Publicatie datum",
|
||||
"modified-date": "Aanpassingsdatum",
|
||||
"empty-title": "Lege titel",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Installeer plugin",
|
||||
"uninstall-plugin": "Verwijder plugin",
|
||||
"new-password": "Nieuw wachtwoord",
|
||||
"edit-user": "Gebruiker aanpassen",
|
||||
"publish-now": "Publiceer nu",
|
||||
"first-name": "Voornaam",
|
||||
"last-name": "Achternaam",
|
||||
"bludit-version": "Bludit Versie",
|
||||
"powered-by": "Aangestuurd door",
|
||||
"recent-posts": "Recente artikelen",
|
||||
"manage-pages": "Beheer pagina's",
|
||||
"advanced-options": "Geavanceerde opties",
|
||||
"user-deleted": "Gebruiker verwijderd",
|
||||
"page-added-successfully": "Pagina succesvol toegevoegd",
|
||||
"post-added-successfully": "Artikel succesvol toegevoegd",
|
||||
"the-post-has-been-deleted-successfully": "Artikel succesvol verwijderd",
|
||||
"the-page-has-been-deleted-successfully": "Pagina succesvol verwijderd",
|
||||
"username-or-password-incorrect": "Gebruikersnaam of wachtwoord is onjuist",
|
||||
"database-regenerated": "Database opnieuw aangemaakt",
|
||||
"the-changes-have-been-saved": "De veranderingen zijn opgeslagen",
|
||||
"enable-more-features-at": "Voeg meer opties toe",
|
||||
"username-already-exists": "Gebruikersnaam bestaat al",
|
||||
"username-field-is-empty": "Gebruikersnaam is leeg",
|
||||
"the-password-and-confirmation-password-do-not-match":"Ingevoerde wachtwoorden zijn niet gelijk aan elkaar",
|
||||
"user-has-been-added-successfully": "Gebruiker toegevoegd",
|
||||
"you-do-not-have-sufficient-permissions": "Onvoldoende rechten voor deze uitvoering",
|
||||
"settings-advanced-writting-settings": "Instellingen-> Geavanceerd-> Schrijf instellingen",
|
||||
"new-posts-and-pages-synchronized": "Pagina's en artikelen zijn gesynchroniseerd.",
|
||||
"you-can-choose-the-users-privilege": "Stel hier privileges in. De editor rol kan alleen pagina's en artikelen plaatsen.",
|
||||
"email-will-not-be-publicly-displayed": "Email(afgeschermd). Aanbevolen voor vergeten wachtwoord en notificaties ",
|
||||
"use-this-field-to-name-your-site": "Titel van de site,wordt op iedere pagina weergegeven.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Slogan voor je site.",
|
||||
"you-can-add-a-site-description-to-provide": "Korte omschrijving van je site.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Plaats hier een korte tekst( bijv.copyright / datum / merknaam )",
|
||||
"number-of-posts-to-show-per-page": "Aantal artikelen per pagina.",
|
||||
"the-url-of-your-site": "De url van je site.",
|
||||
"add-or-edit-description-tags-or": "Plaats of bewerk omschrijving / tags / gebruiksvriendelijke URL.",
|
||||
"select-your-sites-language": "Selecteer taal.",
|
||||
"select-a-timezone-for-a-correct": "Selecteer de tijdzone.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Speciale instellingen voor tijd / datum.",
|
||||
"you-can-modify-the-url-which-identifies":"Plaats hier de tekst voor gebruiksvriendelijke URL / niet meer dan 150 leestekens.",
|
||||
"this-field-can-help-describe-the-content": "Omschrijving voor gebruiksvriendelijke URL / niet meer dan 150 leestekens.",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"Verwijder de gebruiker en alle berichten",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Verwijder de gebruiker en koppel deze berichten aan de admin",
|
||||
"read-more": "Lees meer",
|
||||
"show-blog": "Toon blog",
|
||||
"default-home-page": "Standaard home pagina",
|
||||
"version": "Versie",
|
||||
"there-are-no-drafts": "Er zijn geen concepten.",
|
||||
"create-a-new-article-for-your-blog":"Maak een nieuw artikel aan voor je blog.",
|
||||
"create-a-new-page-for-your-website":"Maak een nieuwe pagina aan voor je website.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Informeer een vriend om mee te werken aan de website.",
|
||||
"change-your-language-and-region-settings":"Verander je taal en regio instellingen.",
|
||||
"language-and-timezone":"Taal en tijdzone",
|
||||
"author": "Auteur",
|
||||
"start-here": "Start hier",
|
||||
"install-theme": "Installeer thema",
|
||||
"first-post": "Eerste bericht",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gefeliciteerd je hebt succesvol **Bludit** geinstalleerd.",
|
||||
"whats-next": "Wat nu",
|
||||
"manage-your-bludit-from-the-admin-panel": "Beheer Bludit vanuit [admin area](./admin/)",
|
||||
"follow-bludit-on": "Volg Bludit via",
|
||||
"visit-the-support-forum": "Bezoek het [forum](https://forum.bludit.com) voor ondersteuning",
|
||||
"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",
|
||||
"the-page-has-not-been-found": "Pagina is niet gevonden.",
|
||||
"error": "Error",
|
||||
"bludit-installer": "Bludit Installatie Programma",
|
||||
"welcome-to-the-bludit-installer": "Welkom bij het Bludit installatie programma",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Vul het formulier in en kies een wachtwoord voor de gebruikersnaam « admin »",
|
||||
"password-visible-field": "Wachtwoord, zichtbaar veld!",
|
||||
"install": "Installeer",
|
||||
"choose-your-language": "Selecteer je taal",
|
||||
"next": "Volgende",
|
||||
"the-password-field-is-empty": "Het wachtwoord veld is leeg",
|
||||
"your-email-address-is-invalid":"Je email adres is ongeldig.",
|
||||
"proceed-anyway": "Alsnog doorgaan!",
|
||||
"drafts":"Concepten",
|
||||
"ip-address-has-been-blocked": "IP adres is geblokkeerd.",
|
||||
"try-again-in-a-few-minutes": "Probeer het zo meteen nogmaals.",
|
||||
"date": "Datum",
|
||||
|
||||
"scheduled": "Ingepland",
|
||||
"publish": "Publiseer",
|
||||
"please-check-your-theme-configuration": "Controleer je thema configuratie.",
|
||||
"plugin-label": "Plugin label",
|
||||
"enabled": "Ingeschakeld",
|
||||
"disabled": "Uitgeschakeld",
|
||||
"cli-mode": "Cli mode",
|
||||
"command-line-mode": "Opdracht lijn mode",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Schakel de opdracht lijn mode in als je posten en pagina's toevoegd, aanpast of verwijderd van het bestandssysteem",
|
||||
|
||||
"configure": "Instellen",
|
||||
"uninstall": "Uitinstalleren",
|
||||
"change-password": "Verander wachtwoord",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Om je post in te plannen, selecteer een datum en tijd.",
|
||||
"write-the-tags-separated-by-commas": "Schrijf tags gescheiden door komma's.",
|
||||
"status": "Status",
|
||||
"published": "Gepubliceerd",
|
||||
"scheduled-posts": "Ingeplande posten",
|
||||
"statistics": "Statistieken",
|
||||
"name": "Naam",
|
||||
"email-account-settings":"Email account instellingen",
|
||||
"sender-email": "Verzend email adres",
|
||||
"emails-will-be-sent-from-this-address":"Emails zullen vanaf dit adres verzonden worden.",
|
||||
"bludit-login-access-code": "BLUDIT - Inlog toegangs code",
|
||||
"check-your-inbox-for-your-login-access-code":"Contreoleer je inbox voor jouw inlog toegangs code",
|
||||
"there-was-a-problem-sending-the-email":"Er was een probleem met het verzenden van de email",
|
||||
"back-to-login-form": "Terug naar inlog formulier",
|
||||
"send-me-a-login-access-code": "Stuur mij een inlog toegangs code",
|
||||
"get-login-access-code": "Krijg een inlog toegangs code",
|
||||
"email-notification-login-access-code": "<p>TDit is een bericht van je website {{WEBSITE_NAME}}</p><p>Je verzoek voor een inlog toegangs code, bekijk de volgende link:</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Er zijn geen ingeplande posten.",
|
||||
"show-password": "Toon wachtwoord",
|
||||
"edit-or-remove-your=pages": "Pagina's aanpassen of verwijderen.",
|
||||
"edit-or-remove-your-blogs-posts": "Blog posten aanpassen of verwijderen.",
|
||||
"general-settings": "Algmene instellingen",
|
||||
"advanced-settings": "Geavanceerde instellingen",
|
||||
"manage-users": "Gebruikersbeheer",
|
||||
"view-and-edit-your-profile": "Profiel bekijken en aanpassen.",
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "Wachtwoord moet minimaal 6 karakters lang zijn",
|
||||
"images": "Afbeeldingen",
|
||||
"upload-image": "Afbeelding uploaden",
|
||||
"drag-and-drop-or-click-here": "Sleep en plak of klik hier",
|
||||
"insert-image": "Afbeelding invoegen",
|
||||
"supported-image-file-types": "Afbeelding types die toegestaan zijn",
|
||||
"date-format": "Datum formaat",
|
||||
"time-format": "Tijd formaat",
|
||||
"chat-with-developers-and-users-on-gitter":"Chat met ontwikkelaars en gebruikers op [Gitter](https://gitter.im/dignajar/bludit)",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"DFit is een korte omschrijving van jezelf of jouw site, om de tekst te veranderen ga naar het administratie paneel, instellingen, plugins, en configureer de plugin over ons.",
|
||||
"profile-picture": "Profiel afbeelding",
|
||||
"the-about-page-is-very-important": "De Over ons pagina is belangrijk en een sterk gereedschap voor potentiele klanten en partners. Voor mensen die willen weten wie achter deze website zit, dan is de Over ons pagina een eerste informatie bron.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Verander de inhoud via het administratie paneel, beheer, pagina's en klik de Over ons pagina.",
|
||||
"about-your-site-or-yourself": "Over de site en jezelf",
|
||||
"welcome-to-bludit": "Welkom bij Bludit",
|
||||
|
||||
"site-information": "Site informatie",
|
||||
"date-and-time-formats": "Datum en tijd formaat",
|
||||
"activate": "Activeer",
|
||||
"deactivate": "Deactiveer"
|
||||
}
|
||||
|
@ -1,22 +1,22 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Polish - Polski",
|
||||
"native": "Polski (Polska)",
|
||||
"english-name": "Polish",
|
||||
"last-update": "2015-12-03",
|
||||
"author": "tom-asz",
|
||||
"email": "",
|
||||
"website": "tomektutoria.eu"
|
||||
"last-update": "2016-02-14",
|
||||
"author": "Dave",
|
||||
"email": "dawid.stawicki@windowslive.com",
|
||||
"website": "http://dave.de/"
|
||||
},
|
||||
|
||||
"username": "Użytkownik",
|
||||
"password": "Hasło",
|
||||
"confirm-password": "Potwierdź hasło",
|
||||
"editor": "Edytor",
|
||||
"dashboard": "Pulpit nawigacyjny",
|
||||
"confirm-password": "Potwierdzenie hasła",
|
||||
"editor": "Redaktor",
|
||||
"dashboard": "Kokpit",
|
||||
"role": "Rola",
|
||||
"post": "Post",
|
||||
"posts": "Posty",
|
||||
"post": "Wpis",
|
||||
"posts": "Wpisy",
|
||||
"users": "Użytkownicy",
|
||||
"administrator": "Administrator",
|
||||
"add": "Dodaj",
|
||||
@ -25,55 +25,55 @@
|
||||
"title": "Tytuł",
|
||||
"no-parent": "Bez rodzica",
|
||||
"edit-page": "Edytuj stronę",
|
||||
"edit-post": "Edytuj post",
|
||||
"add-a-new-user": "Dodaj nowego użytkownika",
|
||||
"edit-post": "Edytuj wpis",
|
||||
"add-a-new-user": "Nowy użytkownik",
|
||||
"parent": "Rodzic",
|
||||
"friendly-url": "Przyjazny URL",
|
||||
"friendly-url": "Przyjazny odnośnik URL",
|
||||
"description": "Opis",
|
||||
"posted-by": "Napisane przez",
|
||||
"posted-by": "Napisał(a)",
|
||||
"tags": "Tagi",
|
||||
"position": "Pozycja",
|
||||
"save": "Zapisz",
|
||||
"draft": "Projekt",
|
||||
"draft": "Szkic",
|
||||
"delete": "Usuń",
|
||||
"registered": "Zarejestrowany",
|
||||
"registered": "Data rejestracji",
|
||||
"Notifications": "Powiadomienia",
|
||||
"profile": "Profil",
|
||||
"email": "Email",
|
||||
"settings": "Ustawienia",
|
||||
"general": "Ogólne",
|
||||
"advanced": "Zaawansowane",
|
||||
"regional": "Regionalne",
|
||||
"about": "O nas",
|
||||
"regional": "Region",
|
||||
"about": "O mnie",
|
||||
"login": "Zaloguj",
|
||||
"logout": "Wyloguj",
|
||||
"manage": "Zarządzaj",
|
||||
"manage": "Zarządzanie",
|
||||
"themes": "Motywy",
|
||||
"prev-page": "Poprzednia strona",
|
||||
"next-page": "Następna strona",
|
||||
"configure-plugin": "Skonfiguruj plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Potwierdź usunięcie, czynność ta nie może być cofnięta.",
|
||||
"configure-plugin": "Konfiguracja wtyczki",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Potwierdzenie usunięcia. Ta operacja jest nieodwracalna.",
|
||||
"site-title": "Nazwa strony",
|
||||
"site-slogan": "Slogan strony",
|
||||
"site-description": "Opis strony",
|
||||
"footer-text": "Tekst w stopce",
|
||||
"posts-per-page": "Posty na stronie:",
|
||||
"site-url": "Adres strony",
|
||||
"writting-settings": "Ustawienie pisania",
|
||||
"url-filters": "Filtr URL",
|
||||
"posts-per-page": "Liczba wpisów na stronę",
|
||||
"site-url": "Adres URL strony",
|
||||
"writting-settings": "Ustawienia pisania",
|
||||
"url-filters": "Filtry URL",
|
||||
"page": "Strona",
|
||||
"pages": "Strony",
|
||||
"home": "Home",
|
||||
"welcome-back": "Witaj ponownie",
|
||||
"home": "Strona główna",
|
||||
"welcome-back": "Cześć, ",
|
||||
"language": "Język",
|
||||
"website": "Strona WWW",
|
||||
"website": "Powrót do strony",
|
||||
"timezone": "Strefa czasowa",
|
||||
"locale": "Ustawienia regionalne",
|
||||
"new-post": "Nowy post",
|
||||
"locale": "Lokalizacja",
|
||||
"new-post": "Nowy wpis",
|
||||
"new-page": "Nowa strona",
|
||||
"html-and-markdown-code-supported": "Kod HTML i Markdown obsługiwany",
|
||||
"manage-posts": "Zarządzaj postami",
|
||||
"published-date": "Data opublikowania",
|
||||
"html-and-markdown-code-supported": "Znaczniki HTML i Markdown są wspierane",
|
||||
"manage-posts": "Zarządzanie wpisami",
|
||||
"published-date": "Data publikacji",
|
||||
"modified-date": "Data modyfikacji",
|
||||
"empty-title": "Brak tytułu",
|
||||
"plugins": "Wtyczki",
|
||||
@ -85,138 +85,154 @@
|
||||
"first-name": "Imię",
|
||||
"last-name": "Nazwisko",
|
||||
"bludit-version": "Wersja Bludit",
|
||||
"powered-by": "Silnik",
|
||||
"recent-posts": "Najnowsze posty",
|
||||
"manage-pages": "Zarządzaj stronami",
|
||||
"advanced-options": "Zaawansowane opcje",
|
||||
"user-deleted": "Użytkownik usunięty",
|
||||
"page-added-successfully": "Strona dodany pomyślnie",
|
||||
"post-added-successfully": "Post dodany pomyślnie",
|
||||
"the-post-has-been-deleted-successfully": "Post został pomyślnie usunięty",
|
||||
"powered-by": "Napędza",
|
||||
"recent-posts": "Ostatnie wpisy",
|
||||
"manage-pages": "Zarządzanie stronami",
|
||||
"advanced-options": "Zaawansowane",
|
||||
"user-deleted": "Użytkownik został usunięty",
|
||||
"page-added-successfully": "Strona została pomyślnie dodana",
|
||||
"post-added-successfully": "Wpis został pomyślnie dodany",
|
||||
"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",
|
||||
"username-or-password-incorrect": "Nazwa użytkownika lub hasło nieprawidłowe",
|
||||
"database-regenerated": "Baza danych regenerowana",
|
||||
"username-or-password-incorrect": "Nazwa użytkownika lub hasło jest nieprawidłowe",
|
||||
"database-regenerated": "Baza danych została naprawiona",
|
||||
"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-field-is-empty": "Pole nazwa użytkownika jest puste",
|
||||
"the-password-and-confirmation-password-do-not-match":"Hasło i potwierdzenie hasła nie pasują do siebie",
|
||||
"user-has-been-added-successfully": "Użytkownik został dodany pomyślnie",
|
||||
"you-do-not-have-sufficient-permissions": "Nie masz wystarczających uprawnień dostępu do tej strony, skontaktuj się z administratorem.",
|
||||
"username-field-is-empty": "Nazwa użytkownika nie może być pusta",
|
||||
"the-password-and-confirmation-password-do-not-match":"Wprowadzone hasła nie pasują do siebie",
|
||||
"user-has-been-added-successfully": "Użytkownik został pomyślnie dodany",
|
||||
"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",
|
||||
"new-posts-and-pages-synchronized": "Nowe posty i strony zsynchronizowane.",
|
||||
"you-can-choose-the-users-privilege": "Możesz wybrać przywilej użytkownika. Edytor może tylko pisać strony i posty.",
|
||||
"email-will-not-be-publicly-displayed": "E-mail nie będzie wyświetlany publicznie. Zalecany dla odzyskiwania hasła i powiadomień.",
|
||||
"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-add-a-catchy-phrase": "Pole to służy do dodawania chwytliwego tytułu na swojej stronie.",
|
||||
"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-small-text-on-the-bottom": "Możesz dodać mały tekst na dole każdej strony. np: prawo autorskie, właściciel, daty, itp",
|
||||
"number-of-posts-to-show-per-page": "Wyświetlana iczba postów na stronie.",
|
||||
"the-url-of-your-site": "Adres URL witryny.",
|
||||
"add-or-edit-description-tags-or": "Dodać lub edytować opis, tagi lub zmodyfikować przyjazne URL.",
|
||||
"select-your-sites-language": "Wybierz język witryny.",
|
||||
"select-a-timezone-for-a-correct": "Wybierz strefę czasową, dla prawidłowego wyświetlania data / czas na swojej 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-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.",
|
||||
"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.",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"Usuń użytkownika i wszystkich jego posty",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Usuń użytkownika i powiązać jego posty do użytkownika administratora",
|
||||
"read-more": "Więcej",
|
||||
"show-blog": "Zobacz blog",
|
||||
"new-posts-and-pages-synchronized": "Nowe wpisy i strony zostały zsynchronizowane.",
|
||||
"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": "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": "Nazwa strony zostanie wyświetlona na każdej podstronie Twojej witryny.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Krótki i chwytliwy slogan Twojej 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": "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": "Liczba wpisów wyświetlanych na jednej stronie.",
|
||||
"the-url-of-your-site": "Adres URL Twojej strony.",
|
||||
"add-or-edit-description-tags-or": "Dodaj lub edytuj opis, tagi oraz zmodyfikuj przyjazne adresy URL.",
|
||||
"select-your-sites-language": "Wybierz język strony",
|
||||
"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ć 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 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 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ń tego użytkownika i wszystkie jego wpisy",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Usuń tego użytkownika a wszystkie jego wpisy przypisz administratorowi",
|
||||
"read-more": "Czytaj więcej",
|
||||
"show-blog": "Blog z wpisami",
|
||||
"default-home-page": "Domyślna strona główna",
|
||||
"version": "Wersja",
|
||||
"there-are-no-drafts": "Brak projektów.",
|
||||
"create-a-new-article-for-your-blog":"Utwórz nowy artykuł na swoim blogu.",
|
||||
"create-a-new-page-for-your-website":"Tworzenie nowej strony na swojej stronie internetowej.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciół do współpracy na swojej stronie internetowej.",
|
||||
"change-your-language-and-region-settings":"Zmień ustawienia języka i regionu.",
|
||||
"language-and-timezone":"Język i strefa czasowa",
|
||||
"there-are-no-drafts": "Brak szkiców.",
|
||||
"create-a-new-article-for-your-blog":"Utwórz nowy wpis na Twoim blogu.",
|
||||
"create-a-new-page-for-your-website":"Utwórz nową stronę na Twoim blogu.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciela do współpracy",
|
||||
"change-your-language-and-region-settings":"Zmień język i ustawienia regionu strony.",
|
||||
"language-and-timezone":"Język i czas",
|
||||
"author": "Autor",
|
||||
"start-here": "Zacznij tutaj",
|
||||
"start-here": "Start",
|
||||
"install-theme": "Zainstaluj motyw",
|
||||
"first-post": "Pierwszy post",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulacje pomyślnie zainstalowano **Bludit**",
|
||||
"whats-next": "Co dalej",
|
||||
"manage-your-bludit-from-the-admin-panel": "Zarządzaj Bludit z [obszaru administracyjnego](./admin/)",
|
||||
"follow-bludit-on": "Śledź Bludit na",
|
||||
"visit-the-support-forum": "Odwiedź [forum](http://forum.bludit.com) wsparcia",
|
||||
"read-the-documentation-for-more-information": "Przeczytaj [dokumentację](http://docs.bludit.com) po więcej informacji",
|
||||
"share-with-your-friends-and-enjoy": "Podziel się z przyjaciółmi i ciesz się z Bludit",
|
||||
"first-post": "Pierwszy wpis ",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulację, Twój **Bludit** został zainstalowany pomyślnie.",
|
||||
"whats-next": "Co teraz?",
|
||||
"manage-your-bludit-from-the-admin-panel": "Zarządzaj blogiem z poziomu [kokpitu](./admin/)",
|
||||
"follow-bludit-on": "Obserwuj Bludit w serwisach",
|
||||
"visit-the-support-forum": "Zajrzyj na [forum wsparcia](http://forum.bludit.com) by otrzymać pomoc",
|
||||
"read-the-documentation-for-more-information": "Przeczytaj [dokumentacje](http://docs.bludit.com) by dowiedzieć się więcej informacji",
|
||||
"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.",
|
||||
"error": "Błąd",
|
||||
"bludit-installer": "Bludit Instalator",
|
||||
"welcome-to-the-bludit-installer": "Zapraszamy do instalatora Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Wpisz hasło dla użytkownika « admin »",
|
||||
"password-visible-field": "Hasło, widoczne pola!",
|
||||
"install": "Instaluj",
|
||||
"choose-your-language": "Wybierz język",
|
||||
"bludit-installer": "Instalator Bludit",
|
||||
"welcome-to-the-bludit-installer": "Witamy w instalatorze Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Uzupełnij formularz, wybierz hasło dla użytkownika « admin »",
|
||||
"password-visible-field": "Password, visible field!",
|
||||
"install": "Zainstaluj",
|
||||
"choose-your-language": "Wybierz swój język",
|
||||
"next": "Dalej",
|
||||
"the-password-field-is-empty": "Pole hasło jest puste",
|
||||
"your-email-address-is-invalid":"Twój adres e-mail jest nieprawidłowy.",
|
||||
"proceed-anyway": "Kontynuuj mimo to!",
|
||||
"drafts":"Projekt",
|
||||
"the-password-field-is-empty": "Proszę wprowadzić hasło",
|
||||
"your-email-address-is-invalid":"Wprowadzony adres email jest nieprawidłowy.",
|
||||
"proceed-anyway": "Kontynnuj mimo to!",
|
||||
"drafts":"Szkice",
|
||||
"ip-address-has-been-blocked": "Adres IP został zablokowany.",
|
||||
"try-again-in-a-few-minutes": "Spróbuj ponownie za kilka minut.",
|
||||
"date": "Data",
|
||||
|
||||
"scheduled": "Zaplanowane",
|
||||
|
||||
"scheduled": "Zaplanowany",
|
||||
"publish": "Opublikuj",
|
||||
"please-check-your-theme-configuration": "Proszę sprawdzić konfigurację szablonu.",
|
||||
"plugin-label": "Etykieta pluginu",
|
||||
"please-check-your-theme-configuration": "Proszę sprawdzić ustawienia motywu.",
|
||||
"plugin-label": "Etykieta wtyczki",
|
||||
"enabled": "Włączony",
|
||||
"disabled": "Wyłączony",
|
||||
"cli-mode": "Tryb Cli",
|
||||
"command-line-mode": "Tryb wiersza 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",
|
||||
"command-line-mode": "Wiersz poleceń",
|
||||
"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",
|
||||
"uninstall": "Odinstaluj",
|
||||
"change-password": "Zmień hasło",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Aby zaplanować post, po prostu wybierz date i czas.",
|
||||
"write-the-tags-separated-by-commas": "Dodaj tagi oddzielając je przecinkami.",
|
||||
"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": "Wprowadź tagi oddzielone przecinkiem.",
|
||||
"status": "Status",
|
||||
"published": "Opublikowane",
|
||||
"scheduled-posts": "Zaplanowane posty",
|
||||
"statics": "Statyki",
|
||||
"published": "Opublikowany",
|
||||
"scheduled-posts": "Zaplanowane wpisy",
|
||||
"statistics": "Statystyki",
|
||||
"name": "Nazwa",
|
||||
"email-account-settings":"Ustawienia konta e-mail",
|
||||
"sender-email": "E-mail nadawcy",
|
||||
"emails-will-be-sent-from-this-address":"Wiadomości e-mail będą wysyłane z tego adresu.",
|
||||
"bludit-login-access-code": "BLUDIT - Logowanie do kodu dostępu",
|
||||
"check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą dla kodu dostępu do logowania",
|
||||
"there-was-a-problem-sending-the-email":"Wystąpił problem podczas wysyłania wiadomości e-mail",
|
||||
"back-to-login-form": "Powrót do formularza logowania",
|
||||
"send-me-a-login-access-code": "Wyślij mi kod dostępu do logowania",
|
||||
"get-login-access-code": "Pobierz kod dostępu do 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>",
|
||||
"there-are-no-scheduled-posts": "Nie ma zaplanowanych postów.",
|
||||
"show-password": "Pokaż Hasło",
|
||||
"edit-or-remove-your=pages": "Edytuj lub usuń swoje strony.",
|
||||
"edit-or-remove-your-blogs-posts": "Edytuj lub usuń posty bloga.",
|
||||
"general-settings": "Ustawienia ogólne",
|
||||
"advanced-settings": "Ustawienia zaawansowane",
|
||||
"manage-users": "Zarządzaj użytkownikami",
|
||||
"view-and-edit-your-profile": "Przeglądać i edytować swój profil.",
|
||||
"email-account-settings":"Ustawienia konta email",
|
||||
"sender-email": "Adres nadawcy",
|
||||
"emails-will-be-sent-from-this-address":"Wszystkie wiadomości email będą wysyłane z tego adresu.",
|
||||
"bludit-login-access-code": "BLUDIT - kod dostępu logowania",
|
||||
"check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą",
|
||||
"there-was-a-problem-sending-the-email":"Wystąpił problem z wysłaniem wiadomości",
|
||||
"back-to-login-form": "Powrót do logowania",
|
||||
"send-me-a-login-access-code": "Wyślij kod dostępu do logowania",
|
||||
"get-login-access-code": "Otrzymaj kod dostępu logowania",
|
||||
"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": "Brak zaplanowanych wpisów.",
|
||||
"show-password": "Pokaż hasło",
|
||||
"edit-or-remove-your=pages": "Edytuj lub usuń strony na Twoim blogu.",
|
||||
"edit-or-remove-your-blogs-posts": "Edytuj lub usuń wpisy na Twoim blogu.",
|
||||
"general-settings": "Ustawienia",
|
||||
"advanced-settings": "Zaawansowane",
|
||||
"manage-users": "Zarządzanie użytkownikami",
|
||||
"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",
|
||||
"images": "Obrazy",
|
||||
"upload-image": "Wgraj obraz",
|
||||
"drag-and-drop-or-click-here": "Przeciągnij i upuść lub kliknij tutaj",
|
||||
"insert-image": "Wstaw obraz",
|
||||
"supported-image-file-types": "Obsługiwane typy plików graficznych",
|
||||
"password-must-be-at-least-6-characters-long": "Hasło musi zawierać przynajmniej 6 znaków",
|
||||
"images": "Obrazki",
|
||||
"upload-image": "Wyślij obrazek",
|
||||
"drag-and-drop-or-click-here": "Przenieś i upuść lub kliknij tutaj",
|
||||
"insert-image": "Wprowadź obrazek",
|
||||
"supported-image-file-types": "Wspierane formaty graficzne",
|
||||
"date-format": "Format daty",
|
||||
"time-format": "Format czasu",
|
||||
"chat-with-developers-and-users-on-gitter":"Czat z programistami i użytkownikami [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.",
|
||||
"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 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",
|
||||
"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.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Zmień zawartość tej strony w panelu administratora, zarządzanie, strony i kliknij na stronę opisującą.",
|
||||
"about-your-site-or-yourself": "Informacje o stronie lub o sobie",
|
||||
"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": "Możesz zmienić treść tej strony przechodząc kolejno do kokpitu, zarządzanie, strony.",
|
||||
"about-your-site-or-yourself": "O stronie lub o Tobie",
|
||||
"welcome-to-bludit": "Witamy w Bludit",
|
||||
|
||||
"site-information": "Informacje o witrynie",
|
||||
|
||||
"site-information": "Informacje o stronie",
|
||||
"date-and-time-formats": "Format daty i czasu",
|
||||
"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"
|
||||
}
|
@ -1,159 +0,0 @@
|
||||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Português (Brasil)",
|
||||
"english-name": "Portuguese",
|
||||
"last-update": "2015-09-21",
|
||||
"author": "Hackdorte",
|
||||
"email": "hackdorte@sapo.pt",
|
||||
"website": "https://twitter.com/hackdorte"
|
||||
},
|
||||
|
||||
"username": "Nome de usuário",
|
||||
"password": "Senha",
|
||||
"confirm-password": "Confirmar senha",
|
||||
"editor": "Editor",
|
||||
"dashboard": "Painel",
|
||||
"role": "Cargo",
|
||||
"post": "Postagem",
|
||||
"posts": "Postagens",
|
||||
"users": "Usuários",
|
||||
"administrator": "Administrador",
|
||||
"add": "Adicionar",
|
||||
"cancel": "Cancelar",
|
||||
"content": "Conteúdo",
|
||||
"title": "Título",
|
||||
"no-parent": "Sem parente",
|
||||
"edit-page": "Editar página",
|
||||
"edit-post": "Editar postagem",
|
||||
"add-a-new-user": "Adicionar novo usuário",
|
||||
"parent": "Parente",
|
||||
"friendly-url": "URL amigável",
|
||||
"description": "Descrição",
|
||||
"posted-by": "Publicado por",
|
||||
"tags": "Tags",
|
||||
"position": "Posição",
|
||||
"save": "Salvar",
|
||||
"draft": "Rascunho",
|
||||
"delete": "Deletar",
|
||||
"registered": "Registrado",
|
||||
"Notifications": "Notificações",
|
||||
"profile": "Perfil",
|
||||
"email": "Email",
|
||||
"settings": "Configurações",
|
||||
"general": "Geral",
|
||||
"advanced": "Avançado",
|
||||
"regional": "Regional",
|
||||
"about": "Sobre",
|
||||
"login": "Entrar",
|
||||
"logout": "Sair",
|
||||
"manage": "Administrar",
|
||||
"themes": "Temas",
|
||||
"prev-page": "Pág. anterior",
|
||||
"next-page": "Pág. seguinte",
|
||||
"configure-plugin": "Configurar plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Confirmar exclusão. Esta operação não poderá ser desfeita.",
|
||||
"site-title": "Título do site",
|
||||
"site-slogan": "Slogan do site",
|
||||
"site-description": "Descrição do site",
|
||||
"footer-text": "Texto do rodapé",
|
||||
"posts-per-page": "Postagens por páginas",
|
||||
"site-url": "URL do site",
|
||||
"writting-settings": "Configurações de escrita",
|
||||
"url-filters": "Filtros para URL",
|
||||
"page": "página",
|
||||
"pages": "páginas",
|
||||
"home": "Início",
|
||||
"welcome-back": "Bem vindo(a)",
|
||||
"language": "Idioma",
|
||||
"website": "Website",
|
||||
"timezone": "Zona horária",
|
||||
"locale": "Codificação",
|
||||
"new-post": "Nova postagem",
|
||||
"new-page": "Nova página",
|
||||
"html-and-markdown-code-supported": "Códigos HTML e Markdown são aceitos",
|
||||
"manage-posts": "Gerenciar postagens",
|
||||
"published-date": "Data de publicação",
|
||||
"modified-date": "Data de modificação",
|
||||
"empty-title": "Título vazio",
|
||||
"plugins": "Plugins",
|
||||
"install-plugin": "Instalar plugin",
|
||||
"uninstall-plugin": "Desinstalar plugin",
|
||||
"new-password": "Nova senha",
|
||||
"edit-user": "Editar usuário",
|
||||
"publish-now": "Publicar",
|
||||
"first-name": "Nome",
|
||||
"last-name": "Sobrenome",
|
||||
"bludit-version": "Bludit versão",
|
||||
"powered-by": "Feito com",
|
||||
"recent-posts": "Postagens recentes",
|
||||
"manage-pages": "Gerenciar páginas",
|
||||
"advanced-options": "Opções avançadas",
|
||||
"user-deleted": "Usuário Deletado",
|
||||
"page-added-successfully": "Página criada com sucesso",
|
||||
"post-added-successfully": "Postagem criada com sucesso ",
|
||||
"the-post-has-been-deleted-successfully": "Postagem eliminada com sucesso",
|
||||
"the-page-has-been-deleted-successfully": "Página deletada com sucesso",
|
||||
"username-or-password-incorrect": "Nome ou senha incorretos",
|
||||
"database-regenerated": "Base de dados regenerada",
|
||||
"the-changes-have-been-saved": "As alterações foram salvas!",
|
||||
"enable-more-features-at": "Habilitar mais funções em",
|
||||
"username-already-exists": "Usuário não existe",
|
||||
"username-field-is-empty": "O campo **Nome** não pode ficar vazio.",
|
||||
"the-password-and-confirmation-password-do-not-match": "Ops! As senhas são diferentes.",
|
||||
"user-has-been-added-successfully": "Usuário criado com sucesso",
|
||||
"you-do-not-have-sufficient-permissions": "Você não tem permissão. Por favor entre em contato com o administrador do site",
|
||||
"settings-advanced-writting-settings": "Configurações->Avançado->Configurações de escrita",
|
||||
"new-posts-and-pages-synchronized": "Novas postagens e páginas sincronizadas.",
|
||||
"you-can-choose-the-users-privilege": "Pode alterar os previlégios dos usuários. O editor só poderá gerenciar páginas e postagens.",
|
||||
"email-will-not-be-publicly-displayed": "O endereço de email não é visível. Recomendado para recuperar sua senha e receber notificações.",
|
||||
"use-this-field-to-name-your-site": "Utilize este campo para adicionar um título para seu site, ele aparecerá na parte superior das páginas.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Utilize este campo se desejar adicionar um slogan ao nome do seu site.",
|
||||
"you-can-add-a-site-description-to-provide": "Pode adicionar um descrição para promover uma biografia do seu site.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Pode adicionar um pequeno texto no final da página. ex: copyright, autor, etc.",
|
||||
"number-of-posts-to-show-per-page": "Número de postagens para mostrar por página.",
|
||||
"the-url-of-your-site": "URL do seu site.",
|
||||
"add-or-edit-description-tags-or": "Adicionar ou editar a descrição, tags e alterar URL amigável.",
|
||||
"select-your-sites-language": "Selecione o idioma padrão do seu site.",
|
||||
"select-a-timezone-for-a-correct": "Selecione a zona horária correta do seu país.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Use este campo para o correto conjunto de idioma, país e preferências especiais.",
|
||||
"you-can-modify-the-url-which-identifies": "Pode alterar a URL para facilitar a sua localização de forma legível. Em 150 caractéres.",
|
||||
"this-field-can-help-describe-the-content": "Resumo do conteúdo da postagem. Em 150 caractéres.",
|
||||
"write-the-tags-separated-by-comma": "Criar tags separadas por vírgulas. ex: tag1, tag2, tag3",
|
||||
"delete-the-user-and-all-its-posts": "Eliminar usuário e suas postagens",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Eliminar usuário e associar postagens ao administrador",
|
||||
"read-more": "Ler mais",
|
||||
"show-blog": "Ver blog",
|
||||
"default-home-page": "página de início padrão",
|
||||
"version": "Versão",
|
||||
"there-are-no-drafts": "Não há rascunhos",
|
||||
"create-a-new-article-for-your-blog":"Criar um novo artigo para seu blog.",
|
||||
"create-a-new-page-for-your-website":"Criar nova página para seu site.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Convidar amigos para colaborar com seu site.",
|
||||
"change-your-language-and-region-settings":"Modificar as configurações de idioma e região.",
|
||||
"language-and-timezone":"Idioma e zona horária",
|
||||
"author": "Autor",
|
||||
"start-here": "Começe aqui",
|
||||
"install-theme": "Instalar tema",
|
||||
"first-post": "Primeira postagem",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Parabéns, você instalou **Bludit** com sucesso",
|
||||
"whats-next": "Siguientes pasos",
|
||||
"manage-your-bludit-from-the-admin-panel": "Gerencie seu Bludit em [painel de administração](./admin/)",
|
||||
"follow-bludit-on": "Siga Bludit em",
|
||||
"visit-the-support-forum": "Visite o [fórum](http://forum.bludit.com) para obter ajuda",
|
||||
"read-the-documentation-for-more-information": "Leia a [documentación](http://docs.bludit.com) para mais informações",
|
||||
"share-with-your-friends-and-enjoy": "Compartilhe com os seus amigos para que desfrutem também",
|
||||
"the-page-has-not-been-found": "A página não foi localizada.",
|
||||
"error": "Erro",
|
||||
"bludit-installer": "Instalador do Bludit",
|
||||
"welcome-to-the-bludit-installer": "Bem vindo(a) ao instalador do Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Crie uma senha e informe um endereço de email para o usuário « admin »",
|
||||
"password-visible-field": "Senha, este campo é visível.",
|
||||
"install": "Instalar",
|
||||
"the-password-field-is-empty": "Preencha o campo da senha",
|
||||
"your-email-address-is-invalid":"O endereço do email é inválido",
|
||||
"proceed-anyway": "Continuar assim mesmo!",
|
||||
"drafts":"Rascunhos",
|
||||
"ip-address-has-been-blocked":"O endereço de IP foi bloqueado.",
|
||||
"try-again-in-a-few-minutes": "Volte e tente daqui uns minutinhos!"
|
||||
}
|
@ -6,7 +6,7 @@
|
||||
"last-update": "2015-11-17",
|
||||
"author": "Сергей Ворон",
|
||||
"email": "sergey@voron.pw",
|
||||
"website": "voron.pw"
|
||||
"website": "http://voron.pw"
|
||||
},
|
||||
|
||||
"username": "Логин",
|
||||
@ -118,7 +118,7 @@
|
||||
"select-a-timezone-for-a-correct": "Выберите часовой пояс для корректного отображения даты и времени на сайте.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Вы можете использовать это поле, чтобы определить набор параметров, связанных с языком, страной и особых предпочтений.",
|
||||
"you-can-modify-the-url-which-identifies":"Вы можете изменить URL, который идентифицирует страницу или запись с помощью удобочитаемых ключевых слов. Не более 150 символов.",
|
||||
|
||||
|
||||
"this-field-can-help-describe-the-content": "Это поле может помочь описать содержимое в нескольких словах. Не более 150 символов.",
|
||||
"delete-the-user-and-all-its-posts":"Удалить пользователя и все его записи",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Удалить пользователя и связать его записи с администратором",
|
||||
@ -140,8 +140,8 @@
|
||||
"whats-next": "Что дальше",
|
||||
"manage-your-bludit-from-the-admin-panel": "Управляйте Bludit из [панели управления](./admin/)",
|
||||
"follow-bludit-on": "Следуйте за Bludit в",
|
||||
"visit-the-support-forum": "Посетите [форум](http://forum.bludit.com) для получения поддержки",
|
||||
"read-the-documentation-for-more-information": "Прочтите [документацию](http://docs.bludit.com) для получения большей информации",
|
||||
"visit-the-support-forum": "Посетите [форум](https://forum.bludit.com) для получения поддержки",
|
||||
"read-the-documentation-for-more-information": "Прочтите [документацию](https://docs.bludit.com) для получения большей информации",
|
||||
"share-with-your-friends-and-enjoy": "Делитесь с друзьями и наслаждайтесь",
|
||||
"the-page-has-not-been-found": "Страница не найдена.",
|
||||
"error": "Ошибка",
|
||||
@ -159,7 +159,7 @@
|
||||
"ip-address-has-been-blocked": "IP адрес заблокирован.",
|
||||
"try-again-in-a-few-minutes": "Попробуйте еще раз через несколько минут.",
|
||||
"date": "Дата",
|
||||
|
||||
|
||||
"scheduled": "Запланировано",
|
||||
"publish": "Опубликовать",
|
||||
"please-check-your-theme-configuration": "Пожалуйста, проверьте конфигурацию вашей темы.",
|
||||
@ -169,7 +169,7 @@
|
||||
"cli-mode": "Режим CLI",
|
||||
"command-line-mode": "Режим командной строки",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Включите режим командной строки, если вы добавляете, изменяете или удаляете записи и страницы из файловой системы",
|
||||
|
||||
|
||||
"configure": "Настроить",
|
||||
"uninstall": "Удалить",
|
||||
"change-password": "Изменить пароль",
|
||||
@ -214,18 +214,30 @@
|
||||
"change-this-pages-content-on-the-admin-panel": "Измените содержимое этой страницы в панели управления, Управление, Страницы и нажмите на страницу about.",
|
||||
"about-your-site-or-yourself": "О Вашем сайте или о вас",
|
||||
"welcome-to-bludit": "Добро пожаловать в Bludit",
|
||||
|
||||
|
||||
"site-information": "Информация о сайте",
|
||||
"date-and-time-formats": "Форматы даты и времени",
|
||||
"activate": "Активировать",
|
||||
"deactivate": "Деактивировать",
|
||||
|
||||
|
||||
"cover-image": "Обложка",
|
||||
"blog": "Блог",
|
||||
"more-images": "Еще изображения",
|
||||
"double-click-on-the-image-to-add-it": "Дважды щелкните по изображению, чтобы добавить его.",
|
||||
|
||||
"click-here-to-cancel": "Нажмите здесь, чтобы отменить.",
|
||||
"type-the-tag-and-press-enter": "Введите тег и нажмите клавишу Enter.",
|
||||
"add": "Добавить",
|
||||
"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"
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
"last-update": "2015-12-02",
|
||||
"author": "ffahri",
|
||||
"email": "",
|
||||
"website": "github.com/ffahri"
|
||||
"website": "https://github.com/ffahri"
|
||||
},
|
||||
|
||||
"username": "Kullanıcı Adı",
|
||||
@ -140,8 +140,8 @@
|
||||
"whats-next": "Sırada Ne Var",
|
||||
"manage-your-bludit-from-the-admin-panel": "Bluditini buradan yönet [yönetici alanı](./admin/)",
|
||||
"follow-bludit-on": "Follow Bludit on",
|
||||
"visit-the-support-forum": "Destek için [forum](http://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",
|
||||
"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](https://docs.bludit.com) dökümanları okuyun",
|
||||
"share-with-your-friends-and-enjoy": "Arkadaşlarına paylaş ve eğlen",
|
||||
"the-page-has-not-been-found": "Sayfa bulunamadı.",
|
||||
"error": "Hata",
|
||||
@ -219,7 +219,7 @@
|
||||
"date-and-time-formats": "Tarih ve saat formatları",
|
||||
"activate": "Aktifleştir",
|
||||
"deactivate": "Deaktive et",
|
||||
|
||||
|
||||
"cover-image": "Kapak resmi",
|
||||
"blog": "Blog",
|
||||
"more-images": "Daha çok resim",
|
||||
|
@ -3,10 +3,10 @@
|
||||
{
|
||||
"native": "Українська (Україна)",
|
||||
"english-name": "Ukrainian",
|
||||
"last-update": "2016-01-23",
|
||||
"last-update": "2016-02-20",
|
||||
"author": "Allec Bernz",
|
||||
"email": "admin@allec.info",
|
||||
"website": "allec.info"
|
||||
"website": "http://allec.info"
|
||||
},
|
||||
|
||||
"username": "Ім'я користувача",
|
||||
@ -37,7 +37,7 @@
|
||||
"draft": "Чернетка",
|
||||
"delete": "Видалити",
|
||||
"registered": "Зареєстрований",
|
||||
"Notifications": "Сповіщення",
|
||||
"notifications": "Повідомлення",
|
||||
"profile": "Профіль",
|
||||
"email": "Email",
|
||||
"settings": "Параметри",
|
||||
@ -140,8 +140,8 @@
|
||||
"whats-next": "Що далі",
|
||||
|
||||
"follow-bludit-on": "Слідуйте за Bludit на",
|
||||
"visit-the-support-forum": "Відвідайте [форум](http://forum.bludit.com) для підтримки",
|
||||
"read-the-documentation-for-more-information": "Читайте [документацію](http://docs.bludit.com) для отримання додаткової інформації",
|
||||
"visit-the-support-forum": "Відвідайте [форум](https://forum.bludit.com) для підтримки",
|
||||
"read-the-documentation-for-more-information": "Читайте [документацію](https://docs.bludit.com) для отримання додаткової інформації",
|
||||
"share-with-your-friends-and-enjoy": "Поділіться з друзями та насолоджуйтеся",
|
||||
"the-page-has-not-been-found": "Сторінку не знайдено.",
|
||||
"error": "Помилка",
|
||||
@ -223,9 +223,17 @@
|
||||
"cover-image": "Зображення обкладинки",
|
||||
"blog": "Блог",
|
||||
"more-images": "Більше зображень",
|
||||
"double-click-on-the-image-to-add-it": "Двічі клацніть на зображення, щоб додати його.",
|
||||
|
||||
"click-here-to-cancel": "Натисніть тут, щоб скасувати.",
|
||||
"type-the-tag-and-press-enter": "Введіть тег і натисніть Enter.",
|
||||
"add": "Додати",
|
||||
"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": "Лінки на соціальні мережі"
|
||||
}
|
||||
|
@ -140,8 +140,8 @@
|
||||
"whats-next": "接下來",
|
||||
"manage-your-bludit-from-the-admin-panel": "透過[admin area](./admin/)管理您的Bludit",
|
||||
"follow-bludit-on": "Follow Bludit on",
|
||||
"visit-the-support-forum": "拜訪[forum](http://forum.bludit.com)來取得支援",
|
||||
"read-the-documentation-for-more-information": "閱讀[documentation](http://docs.bludit.com)來獲得更多資訊",
|
||||
"visit-the-support-forum": "拜訪[forum](https://forum.bludit.com)來取得支援",
|
||||
"read-the-documentation-for-more-information": "閱讀[documentation](https://docs.bludit.com)來獲得更多資訊",
|
||||
"share-with-your-friends-and-enjoy": "分享給您的朋友們",
|
||||
"the-page-has-not-been-found": "此頁面不存在",
|
||||
"error": "錯誤",
|
||||
@ -197,7 +197,7 @@
|
||||
"advanced-settings": "進階設定",
|
||||
"manage-users": "管理使用者",
|
||||
"view-and-edit-your-profile": "查看與編輯您的個人資料。",
|
||||
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "密碼長度必須在6字元以上",
|
||||
"images": "圖片",
|
||||
"upload-image": "上傳圖片",
|
||||
@ -213,9 +213,9 @@
|
||||
"change-this-pages-content-on-the-admin-panel": "在管理介面中更改此頁面的內容,管理/頁面,接著點選關於頁面。",
|
||||
"about-your-site-or-yourself": "關於您的網站或是您自己",
|
||||
"welcome-to-bludit": "歡迎使用Bludit",
|
||||
|
||||
|
||||
"site-information": "網站資訊",
|
||||
"date-and-time-formats": "日期與時間格式",
|
||||
"activate": "啟用",
|
||||
"deactivate": "關閉"
|
||||
}
|
||||
}
|
7
bl-plugins/about/languages/ja_JP.json
Normal file
7
bl-plugins/about/languages/ja_JP.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "About",
|
||||
"description": "サイトやあなた自身についての概要を表示します。"
|
||||
}
|
||||
}
|
@ -2,6 +2,6 @@
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Hakkında",
|
||||
"description": "Senin veya siten hakkında kısa bilgiler",
|
||||
"description": "Senin veya siten hakkında kısa bilgiler"
|
||||
}
|
||||
}
|
||||
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-15",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
12
bl-plugins/disqus/languages/ja_JP.json
Normal file
12
bl-plugins/disqus/languages/ja_JP.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Disqus comment system",
|
||||
"description": "Disqusはブログにコメント機能を提供するWebサイトです。プラグインを使用するにはDisqus.comに登録する必要があります。"
|
||||
},
|
||||
|
||||
"disqus-shortname": "Disqusサイト名(ショートネーム)",
|
||||
"enable-disqus-on-pages": "ページのDisqusを有効",
|
||||
"enable-disqus-on-posts": "記事ページのDisqusを有効",
|
||||
"enable-disqus-on-default-home-page": "規定のホームページのDisqusを有効"
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"plugin-data":
|
||||
{
|
||||
"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",
|
||||
"enable-disqus-on-pages": "Sayfalar için Disqus'ı etkinleştir.",
|
||||
|
12
bl-plugins/disqus/languages/uk_UA.json
Normal file
12
bl-plugins/disqus/languages/uk_UA.json
Normal 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 на домашній сторінці"
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-13",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
@ -2,14 +2,14 @@
|
||||
|
||||
class pluginDisqus extends Plugin {
|
||||
|
||||
private $disable;
|
||||
private $enable;
|
||||
|
||||
public function init()
|
||||
{
|
||||
$this->dbFields = array(
|
||||
'shortname'=>'',
|
||||
'enablePages'=>false,
|
||||
'enablePosts'=>true,
|
||||
'enablePosts'=>false,
|
||||
'enableDefaultHomePage'=>false
|
||||
);
|
||||
}
|
||||
@ -20,25 +20,17 @@ class pluginDisqus extends Plugin {
|
||||
|
||||
global $Url;
|
||||
|
||||
// Disable the plugin IF ...
|
||||
$this->disable = false;
|
||||
$this->enable = false;
|
||||
|
||||
if( (!$this->getDbField('enablePosts')) && ($Url->whereAmI()=='post') ) {
|
||||
$this->disable = true;
|
||||
if( $this->getDbField('enablePosts') && ($Url->whereAmI()=='post') ) {
|
||||
$this->enable = true;
|
||||
}
|
||||
elseif( (!$this->getDbField('enablePages')) && ($Url->whereAmI()=='page') ) {
|
||||
$this->disable = true;
|
||||
elseif( $this->getDbField('enablePages') && ($Url->whereAmI()=='page') ) {
|
||||
$this->enable = true;
|
||||
}
|
||||
elseif( !$this->getDbField('enableDefaultHomePage') && ($Url->whereAmI()=='page') )
|
||||
elseif( $this->getDbField('enableDefaultHomePage') && ($Url->whereAmI()=='home') )
|
||||
{
|
||||
global $Site;
|
||||
|
||||
if( Text::isNotEmpty($Site->homePage()) ) {
|
||||
$this->disable = true;
|
||||
}
|
||||
}
|
||||
elseif( ($Url->whereAmI()!='post') && ($Url->whereAmI()!='page') ) {
|
||||
$this->disable = true;
|
||||
$this->enable = true;
|
||||
}
|
||||
}
|
||||
|
||||
@ -71,41 +63,41 @@ class pluginDisqus extends Plugin {
|
||||
|
||||
public function postEnd()
|
||||
{
|
||||
if( $this->disable ) {
|
||||
return false;
|
||||
if( $this->enable ) {
|
||||
return '<div id="disqus_thread"></div>';
|
||||
}
|
||||
|
||||
$html = '<div id="disqus_thread"></div>';
|
||||
return $html;
|
||||
return false;
|
||||
}
|
||||
|
||||
public function pageEnd()
|
||||
{
|
||||
if( $this->disable ) {
|
||||
return false;
|
||||
global $Url;
|
||||
|
||||
// Bludit check not-found page after the plugin method construct.
|
||||
// It's necesary check here the page not-found.
|
||||
|
||||
if( $this->enable && !$Url->notFound()) {
|
||||
return '<div id="disqus_thread"></div>';
|
||||
}
|
||||
|
||||
$html = '<div id="disqus_thread"></div>';
|
||||
return $html;
|
||||
return false;
|
||||
}
|
||||
|
||||
public function siteHead()
|
||||
{
|
||||
if( $this->disable ) {
|
||||
return false;
|
||||
if( $this->enable ) {
|
||||
return '<style>#disqus_thread { margin: 20px 0 }</style>';
|
||||
}
|
||||
|
||||
$html = '<style>#disqus_thread { margin: 20px 0 }</style>';
|
||||
return $html;
|
||||
return false;
|
||||
}
|
||||
|
||||
public function siteBodyEnd()
|
||||
{
|
||||
if( $this->disable ) {
|
||||
return false;
|
||||
}
|
||||
if( $this->enable ) {
|
||||
|
||||
$html = '
|
||||
$html = '
|
||||
<script type="text/javascript">
|
||||
|
||||
var disqus_shortname = "'.$this->getDbField('shortname').'";
|
||||
@ -119,6 +111,9 @@ class pluginDisqus extends Plugin {
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>';
|
||||
|
||||
return $html;
|
||||
return $html;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
12
bl-plugins/googletools/languages/ja_JP.json
Normal file
12
bl-plugins/googletools/languages/ja_JP.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Google Tools",
|
||||
"description": "Google Search Consoleでサイトを検証するためのメタタグとGoogle AnalyticsでトラッキングするためのJavaScriptコードを生成します。"
|
||||
},
|
||||
|
||||
"google-webmasters-tools": "Google Search Console",
|
||||
"google-analytics-tracking-id": "Google Analytics トラッキングID",
|
||||
"complete-this-field-with-the-google-site-verification": "Google Seach Consoleがサイト所有権を確認するためのメタタグを入力します。",
|
||||
"complete-this-field-with-the-tracking-id": "Google Analyticsがトラッキングをするために生成したトラッキングIDを入力します。"
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"plugin-data":
|
||||
{
|
||||
"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-analytics-tracking-id": "Google Analytics İzleme No",
|
||||
|
12
bl-plugins/googletools/languages/uk_UA.json
Normal file
12
bl-plugins/googletools/languages/uk_UA.json
Normal 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."
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-13",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
10
bl-plugins/latest_posts/languages/bg_BG.json
Normal file
10
bl-plugins/latest_posts/languages/bg_BG.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Последни публикации",
|
||||
"description": "Показва най-новите публикации."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Брой последни публикации",
|
||||
"show-home-link": "Покажи връзка за начало"
|
||||
}
|
10
bl-plugins/latest_posts/languages/es_AR.json
Normal file
10
bl-plugins/latest_posts/languages/es_AR.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Últimas entradas",
|
||||
"description": "Muestra las últimas entradas publicadas."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Cantidad de entradas",
|
||||
"show-home-link": "Mostrar vínculo a inicio"
|
||||
}
|
10
bl-plugins/latest_posts/languages/es_ES.json
Normal file
10
bl-plugins/latest_posts/languages/es_ES.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Últimas entradas",
|
||||
"description": "Muestra las últimas entradas publicadas."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Cantidad de entradas",
|
||||
"show-home-link": "Mostrar vínculo a inicio"
|
||||
}
|
10
bl-plugins/latest_posts/languages/es_VE.json
Normal file
10
bl-plugins/latest_posts/languages/es_VE.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Últimas entradas",
|
||||
"description": "Muestra las últimas entradas publicadas."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Cantidad de entradas",
|
||||
"show-home-link": "Mostrar vínculo a inicio"
|
||||
}
|
10
bl-plugins/latest_posts/languages/ja_JP.json
Normal file
10
bl-plugins/latest_posts/languages/ja_JP.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Latest posts",
|
||||
"description": "公開された最近の投稿を表示します。"
|
||||
},
|
||||
|
||||
"amount-of-posts": "投稿表示数",
|
||||
"show-home-link": "ホーム・リンクを表示"
|
||||
}
|
10
bl-plugins/latest_posts/languages/uk_UA.json
Normal file
10
bl-plugins/latest_posts/languages/uk_UA.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Останні публікації",
|
||||
"description": "Показує останні опубліковані публікації."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Кількість публікацій",
|
||||
"show-home-link": "Показати лінк на домашню сторінку"
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-13",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"notes": ""
|
||||
}
|
0
bl-plugins/maintenancemode/.!3404!.DS_Store
Normal file
0
bl-plugins/maintenancemode/.!3404!.DS_Store
Normal file
0
bl-plugins/maintenancemode/.!3421!.DS_Store
Normal file
0
bl-plugins/maintenancemode/.!3421!.DS_Store
Normal file
@ -5,6 +5,6 @@
|
||||
"description": "Поставете вашия сайт на режим на поддръжка."
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Активиране режим на поддръжка ",
|
||||
"enable-maintenance-mode": "Активиране режим на поддръжка ",
|
||||
"message": "Съобщение"
|
||||
}
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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"
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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"
|
||||
}
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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"
|
||||
}
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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"
|
||||
}
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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"
|
||||
}
|
||||
}
|
10
bl-plugins/maintenancemode/languages/ja_JP.json
Normal file
10
bl-plugins/maintenancemode/languages/ja_JP.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Maintenance mode",
|
||||
"description": "メンテンナンス・モードに設定します。管理エリアにはアクセスできます。"
|
||||
},
|
||||
|
||||
"enable-maintenance-mode": "メンテンナンス・モードを有効にする",
|
||||
"message": "メッセージ"
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"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ść"
|
||||
}
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"description": "Установите ваш сайт в режим обслуживания, вы можете получить доступ к панели управления."
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Включить режим обслуживания",
|
||||
"enable-maintenance-mode": "Включить режим обслуживания",
|
||||
"message": "Сообщение"
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
"plugin-data":
|
||||
{
|
||||
"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"
|
||||
}
|
10
bl-plugins/maintenancemode/languages/uk_UA.json
Normal file
10
bl-plugins/maintenancemode/languages/uk_UA.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Режим обслуговування",
|
||||
"description": "Перемикає ваш сайт у режим обслуговування, але ви матимете доступ до адмінки."
|
||||
},
|
||||
|
||||
"enable-maintenance-mode": "Включити режим обслуговування",
|
||||
"message": "Message"
|
||||
}
|
@ -5,6 +5,6 @@
|
||||
"description": "設定您的網站為維護模式,但是您依然可以登入到管理介面"
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "啟用維護模式",
|
||||
"enable-maintenance-mode": "啟用維護模式",
|
||||
"message": "訊息"
|
||||
}
|
||||
}
|
10
bl-plugins/maintenancemode/metadata.json
Normal file
10
bl-plugins/maintenancemode/metadata.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://plugins.bludit.com",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-20",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
class pluginMaintanceMode extends Plugin {
|
||||
class pluginMaintenanceMode extends Plugin {
|
||||
|
||||
public function init()
|
||||
{
|
||||
@ -16,7 +16,7 @@ class pluginMaintanceMode extends Plugin {
|
||||
|
||||
$html = '<div>';
|
||||
$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>';
|
||||
@ -33,4 +33,4 @@ class pluginMaintanceMode extends Plugin {
|
||||
exit( $this->getDbField('message') );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
bl-plugins/opengraph/languages/ja_JP.json
Normal file
7
bl-plugins/opengraph/languages/ja_JP.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Open Graph",
|
||||
"description": "Open Graph protocol(OGP)を有効にすると、Webページがソーシャルグラフ上のリッチなオブジェクトになります。"
|
||||
}
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-13",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
10
bl-plugins/pages/languages/ja_JP.json
Normal file
10
bl-plugins/pages/languages/ja_JP.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Page list",
|
||||
"description": "ページをリストにして表示します。"
|
||||
},
|
||||
|
||||
"home": "ホーム",
|
||||
"show-home-link": "ホーム・リンクを表示"
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Sayfa listesi",
|
||||
"description": "Sayfaları listeler.",
|
||||
"description": "Sayfaları listeler."
|
||||
},
|
||||
|
||||
"home": "Anasayfa",
|
||||
|
@ -2,9 +2,9 @@
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "1.0",
|
||||
"releaseDate": "2016-01-15",
|
||||
"version": "1.1",
|
||||
"releaseDate": "2016-02-13",
|
||||
"license": "MIT",
|
||||
"requires": "Bludit v1.0",
|
||||
"requires": "Bludit v1.1",
|
||||
"notes": ""
|
||||
}
|
||||
}
|
||||
|
7
bl-plugins/rss/languages/ja_JP.json
Normal file
7
bl-plugins/rss/languages/ja_JP.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "RSS Feed",
|
||||
"description": "サイトのRSSフィードを生成します。"
|
||||
}
|
||||
}
|
7
bl-plugins/rss/languages/uk_UA.json
Normal file
7
bl-plugins/rss/languages/uk_UA.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "RSS-канал",
|
||||
"description": "Цей плагін генерувати RSS для вашого сайту."
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user