Minor fixes

This commit is contained in:
Diego Najar 2017-10-04 00:00:54 +02:00
parent e08d13a9af
commit c2c25d2bec
7 changed files with 250 additions and 266 deletions

View File

@ -14,7 +14,7 @@ HTML::formOpen(array('class'=>'uk-form-horizontal'));
HTML::formSelect(array( HTML::formSelect(array(
'name'=>'itemsPerPage', 'name'=>'itemsPerPage',
'label'=>$L->g('Items per page'), 'label'=>$L->g('Items per page'),
'options'=>array('1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8', '-1'=>$L->g('All pages')), 'options'=>array('1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8', '-1'=>$L->g('All content')),
'selected'=>$Site->itemsPerPage(), 'selected'=>$Site->itemsPerPage(),
'class'=>'uk-width-1-3 uk-form-medium', 'class'=>'uk-width-1-3 uk-form-medium',
'tip'=>$L->g('Number of items to show per page') 'tip'=>$L->g('Number of items to show per page')

View File

@ -10,7 +10,7 @@ define('BLUDIT_BUILD', '20170923');
// Change to FALSE, for prevent warning or errors on browser // Change to FALSE, for prevent warning or errors on browser
define('DEBUG_MODE', TRUE); define('DEBUG_MODE', TRUE);
error_reporting(0); // Turn off all error reporting error_reporting(0); // Turn off all error reporting
if(DEBUG_MODE) { if (DEBUG_MODE) {
// Turn on all error reporting // Turn on all error reporting
ini_set("display_errors", 1); ini_set("display_errors", 1);
ini_set('display_startup_errors',1); ini_set('display_startup_errors',1);
@ -101,9 +101,6 @@ define('PARENT', 'BLUDIT3849abb4cb7abd24c2d8dac17b216f17');
// Items per page for admin area // Items per page for admin area
define('ITEMS_PER_PAGE_ADMIN', 10); define('ITEMS_PER_PAGE_ADMIN', 10);
// Cli mode, enable or disable
define('CLI_MODE', FALSE);
// Cli mode, status for new pages // Cli mode, status for new pages
define('CLI_STATUS', 'published'); define('CLI_STATUS', 'published');
@ -192,14 +189,13 @@ include(PATH_HELPERS.'paginator.class.php');
include(PATH_HELPERS.'image.class.php'); include(PATH_HELPERS.'image.class.php');
include(PATH_HELPERS.'tcp.class.php'); include(PATH_HELPERS.'tcp.class.php');
// Include Bludit PRO if (file_exists(PATH_KERNEL.'bludit.pro.php')) {
if( file_exists(PATH_KERNEL.'bludit.pro.php') ) {
include(PATH_KERNEL.'bludit.pro.php'); include(PATH_KERNEL.'bludit.pro.php');
} }
// Session // Session
Session::start(); Session::start();
if(Session::started()===false) { if (Session::started()===false) {
exit('Bludit CMS. Session initialization failure.'); exit('Bludit CMS. Session initialization failure.');
} }
@ -222,11 +218,10 @@ $Syslog = new dbSyslog();
// Left empty if you want to Bludit try to detect the base URL. // Left empty if you want to Bludit try to detect the base URL.
$base = ''; $base = '';
if( !empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base) ) { if (!empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base)) {
$base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']); $base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']);
$base = dirname($base); $base = dirname($base);
} } elseif (empty($base)) {
elseif( empty($base) ) {
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME']; $base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
$base = dirname($base); $base = dirname($base);
} }
@ -247,23 +242,18 @@ define('HTML_PATH_THEME', HTML_PATH_THEMES.$Site->theme().'/');
define('HTML_PATH_THEME_CSS', HTML_PATH_THEME.'css/'); define('HTML_PATH_THEME_CSS', HTML_PATH_THEME.'css/');
define('HTML_PATH_THEME_JS', HTML_PATH_THEME.'js/'); define('HTML_PATH_THEME_JS', HTML_PATH_THEME.'js/');
define('HTML_PATH_THEME_IMG', HTML_PATH_THEME.'img/'); define('HTML_PATH_THEME_IMG', HTML_PATH_THEME.'img/');
define('HTML_PATH_ADMIN_ROOT', HTML_PATH_ROOT.ADMIN_URI_FILTER.'/'); define('HTML_PATH_ADMIN_ROOT', HTML_PATH_ROOT.ADMIN_URI_FILTER.'/');
define('HTML_PATH_ADMIN_THEME', HTML_PATH_ROOT.'bl-kernel/admin/themes/'.$Site->adminTheme().'/'); define('HTML_PATH_ADMIN_THEME', HTML_PATH_ROOT.'bl-kernel/admin/themes/'.$Site->adminTheme().'/');
define('HTML_PATH_ADMIN_THEME_JS', HTML_PATH_ADMIN_THEME.'js/'); define('HTML_PATH_ADMIN_THEME_JS', HTML_PATH_ADMIN_THEME.'js/');
define('HTML_PATH_ADMIN_THEME_CSS', HTML_PATH_ADMIN_THEME.'css/'); define('HTML_PATH_ADMIN_THEME_CSS', HTML_PATH_ADMIN_THEME.'css/');
define('HTML_PATH_ADMIN_THEME_IMG', HTML_PATH_ADMIN_THEME.'img/'); define('HTML_PATH_ADMIN_THEME_IMG', HTML_PATH_ADMIN_THEME.'img/');
define('HTML_PATH_CORE_JS', HTML_PATH_ROOT.'bl-kernel/js/'); define('HTML_PATH_CORE_JS', HTML_PATH_ROOT.'bl-kernel/js/');
define('HTML_PATH_CORE_CSS', HTML_PATH_ROOT.'bl-kernel/css/'); define('HTML_PATH_CORE_CSS', HTML_PATH_ROOT.'bl-kernel/css/');
define('HTML_PATH_UPLOADS', HTML_PATH_ROOT.'bl-content/uploads/'); define('HTML_PATH_UPLOADS', HTML_PATH_ROOT.'bl-content/uploads/');
define('HTML_PATH_UPLOADS_PROFILES', HTML_PATH_UPLOADS.'profiles/'); define('HTML_PATH_UPLOADS_PROFILES', HTML_PATH_UPLOADS.'profiles/');
define('HTML_PATH_UPLOADS_THUMBNAILS', HTML_PATH_UPLOADS.'thumbnails/'); define('HTML_PATH_UPLOADS_THUMBNAILS', HTML_PATH_UPLOADS.'thumbnails/');
define('HTML_PATH_PLUGINS', HTML_PATH_ROOT.'bl-plugins/'); define('HTML_PATH_PLUGINS', HTML_PATH_ROOT.'bl-plugins/');
define('JQUERY', HTML_PATH_ROOT.'bl-kernel/js/jquery.min.js');
// --- Objects with dependency --- // --- Objects with dependency ---
$Language = new dbLanguage( $Site->language() ); $Language = new dbLanguage( $Site->language() );
$Login = new Login( $dbUsers ); $Login = new Login( $dbUsers );

View File

@ -82,7 +82,7 @@ if ($dbPages->scheduler()) {
// Add to syslog // Add to syslog
$Syslog->add(array( $Syslog->add(array(
'dictionaryKey'=>'page-published-from-scheduler', 'dictionaryKey'=>'content-published-from-scheduler',
'notes'=>'' 'notes'=>''
)); ));
} }

View File

@ -58,7 +58,7 @@ class dbLanguage extends dbJSON
return $this->db[$key]; return $this->db[$key];
} }
file_put_contents(DEBUG_FILE, $key.PHP_EOL, FILE_APPEND); //file_put_contents(DEBUG_FILE, $key.PHP_EOL, FILE_APPEND);
return $string; return $string;
} }

View File

@ -487,18 +487,17 @@ class dbPages extends dbJSON
// Generate a valid Key/Slug // Generate a valid Key/Slug
public function generateKey($text, $parent=false, $returnSlug=false, $oldKey='') public function generateKey($text, $parent=false, $returnSlug=false, $oldKey='')
{ {
if(Text::isEmpty($text)) { if (Text::isEmpty($text)) {
$text = 'empty'; $text = 'empty';
} }
if( empty($parent) ) { if (Text::isEmpty($parent)) {
$newKey = Text::cleanUrl($text); $newKey = Text::cleanUrl($text);
} } else {
else {
$newKey = Text::cleanUrl($parent).'/'.Text::cleanUrl($text); $newKey = Text::cleanUrl($parent).'/'.Text::cleanUrl($text);
} }
if($newKey!==$oldKey) { if ($newKey!==$oldKey) {
// Verify if the key is already been used // Verify if the key is already been used
if( isset($this->db[$newKey]) ) { if( isset($this->db[$newKey]) ) {
if( !Text::endsWithNumeric($newKey) ) { if( !Text::endsWithNumeric($newKey) ) {
@ -511,7 +510,7 @@ class dbPages extends dbJSON
} }
} }
if($returnSlug) { if ($returnSlug) {
$explode = explode('/', $newKey); $explode = explode('/', $newKey);
if(isset($explode[1])) { if(isset($explode[1])) {

View File

@ -54,7 +54,6 @@
"plugin-configured": "Plugin configured", "plugin-configured": "Plugin configured",
"welcome-to-bludit": "Welcome to Bludit", "welcome-to-bludit": "Welcome to Bludit",
"statistics": "Statistics", "statistics": "Statistics",
"pages": "Pages",
"drafts": "Drafts", "drafts": "Drafts",
"title": "Title", "title": "Title",
"save": "Save", "save": "Save",
@ -80,6 +79,7 @@
"published": "Published", "published": "Published",
"draft": "Draft", "draft": "Draft",
"empty-title": "Empty title", "empty-title": "Empty title",
"empty": "empty",
"date": "Date", "date": "Date",
"external-cover-image": "External cover image", "external-cover-image": "External cover image",
"parent": "Parent", "parent": "Parent",
@ -99,7 +99,7 @@
"registered": "Registered", "registered": "Registered",
"site-information": "Site information", "site-information": "Site information",
"site-title": "Site title", "site-title": "Site title",
"use-this-field-to-name-your-site": "Use this field to name your site, it will appear at the top of every page of your site.", "use-this-field-to-name-your-site": "Use this field to name your site.",
"site-slogan": "Site slogan", "site-slogan": "Site slogan",
"use-this-field-to-add-a-catchy-phrase": "Use this field to add a catchy phrase on your site.", "use-this-field-to-add-a-catchy-phrase": "Use this field to add a catchy phrase on your site.",
"site-description": "Site description", "site-description": "Site description",
@ -108,7 +108,6 @@
"you-can-add-a-small-text-on-the-bottom": "You can add a small text on the bottom of every page. eg: copyright, owner, dates, etc.", "you-can-add-a-small-text-on-the-bottom": "You can add a small text on the bottom of every page. eg: copyright, owner, dates, etc.",
"social-networks-links": "Social networks links", "social-networks-links": "Social networks links",
"site-url": "Site URL", "site-url": "Site URL",
"default-home-page": "Default home page",
"email-account-settings": "Email account settings", "email-account-settings": "Email account settings",
"sender-email": "Sender email", "sender-email": "Sender email",
"emails-will-be-sent-from-this-address": "Emails will be sent from this address.", "emails-will-be-sent-from-this-address": "Emails will be sent from this address.",
@ -138,7 +137,6 @@
"disable-the-user": "Disable the user", "disable-the-user": "Disable the user",
"profile-picture": "Profile picture", "profile-picture": "Profile picture",
"edit-or-delete-your-categories": "Edit or delete your categories", "edit-or-delete-your-categories": "Edit or delete your categories",
"create-a-new-page-for-your-site": "Create a new page for your site",
"create-a-new-category-to-organize-your-content": "Create a new category to organize your content", "create-a-new-category-to-organize-your-content": "Create a new category to organize your content",
"confirm-delete-this-action-cannot-be-undone": "Confirm delete, this action cannot be undone.", "confirm-delete-this-action-cannot-be-undone": "Confirm delete, this action cannot be undone.",
"do-you-want-to-disable-the-user": "Do you want to disable the user ?", "do-you-want-to-disable-the-user": "Do you want to disable the user ?",
@ -148,9 +146,6 @@
"invite-a-friend-to-collaborate-on-your-site": "Invite a friend to collaborate on your site", "invite-a-friend-to-collaborate-on-your-site": "Invite a friend to collaborate on your site",
"number-of-items-to-show-per-page": "Number of items to show per page.", "number-of-items-to-show-per-page": "Number of items to show per page.",
"website-or-blog": "Website or Blog", "website-or-blog": "Website or Blog",
"scheduled-pages": "Scheduled pages",
"there-are-no-scheduled-pages": "There are no scheduled pages.",
"there-are-no-draft-pages": "There are no draft pages.",
"order-content-by": "Order content by", "order-content-by": "Order content by",
"edit-or-delete-content-from-your-site": "Edit or delete content from your site", "edit-or-delete-content-from-your-site": "Edit or delete content from your site",
"order-the-content-by-date-to-build-a-blog": "Order the content by date to build a Blog or order the content by position to build a Website.", "order-the-content-by-date-to-build-a-blog": "Order the content by date to build a Blog or order the content by position to build a Website.",
@ -179,7 +174,6 @@
"chat-with-developers-and-users-on-gitter":"Chat with developers and users on [Gitter](https://gitter.im/dignajar/bludit)", "chat-with-developers-and-users-on-gitter":"Chat with developers and users on [Gitter](https://gitter.im/dignajar/bludit)",
"this-is-a-brief-description-of-yourself-our-your-site":"This is a brief description of yourself or your site, to change this text go to the admin panel, settings, plugins, and configure the plugin about.", "this-is-a-brief-description-of-yourself-our-your-site":"This is a brief description of yourself or your site, to change this text go to the admin panel, settings, plugins, and configure the plugin about.",
"read-the-documentation-for-more-information": "Read the [documentation](https://docs.bludit.com) for more information", "read-the-documentation-for-more-information": "Read the [documentation](https://docs.bludit.com) for more information",
"new-page-created": "New page created",
"new-version-available": "New version available", "new-version-available": "New version available",
"new-category-created": "New category created", "new-category-created": "New category created",
"category-deleted": "Category deleted", "category-deleted": "Category deleted",
@ -200,26 +194,19 @@
"password-must-be-at-least-6-characters-long": "Password must be at least 6 characters long", "password-must-be-at-least-6-characters-long": "Password must be at least 6 characters long",
"ip-address-has-been-blocked": "IP address has been blocked", "ip-address-has-been-blocked": "IP address has been blocked",
"try-again-in-a-few-minutes": "Try again in a few minutes", "try-again-in-a-few-minutes": "Try again in a few minutes",
"page-published-from-scheduler": "Page published from scheduler", "content-published-from-scheduler": "Content published from scheduler",
"installer-page-about-content": "The about page is an important and powerful for potential clients and partners. For those who wonder who is behind the website, your About page is the first source of information.", "installer-page-about-content": "The about page is an important and powerful for potential clients and partners. For those who wonder who is behind the website, your About page is the first source of information.",
"blog": "Blog", "blog": "Blog",
"complete-all-fields": "Complete all fields", "complete-all-fields": "Complete all fields",
"static": "Static", "static": "Static",
"manage-pages": "Manage pages",
"new-page": "New page",
"edit-page": "Edit page",
"create-a-new-category-to-organize-your-pages": "Create a new category to organize your pages",
"edit-or-delete-pages-from-your-site": "Edit or delete pages from your site",
"add-new-page": "Add new page",
"about-your-site-or-yourself": "About your site or yourself", "about-your-site-or-yourself": "About your site or yourself",
"homepage": "Homepage", "homepage": "Homepage",
"disabled": "Disabled", "disabled": "Disabled",
"to-enable-the-user-you-must-set-a-new-password": "To enable the user you must set a new password.", "to-enable-the-user-you-must-set-a-new-password": "To enable the user you must set a new password.",
"delete-the-user-and-associate-his-pages-to-admin-user": "Delete the user and associate his pages to admin user", "delete-the-user-and-associate-his-content-to-admin-user": "Delete the user and associate his content to admin user",
"delete-the-user-and-all-his-pages": "Delete the user and all his pages", "delete-the-user-and-all-his-content": "Delete the user and all his content",
"user-disabled": "User disabled", "user-disabled": "User disabled",
"user-password-changed": "User password changed", "user-password-changed": "User password changed",
"page-edited": "Page edited",
"the-password-and-confirmation-password-do-not-match": "The password and confirmation password do not match", "the-password-and-confirmation-password-do-not-match": "The password and confirmation password do not match",
"scheduled-content": "Scheduled content", "scheduled-content": "Scheduled content",
"there-are-no-scheduled-content": "There are no scheduled content.", "there-are-no-scheduled-content": "There are no scheduled content.",
@ -229,19 +216,18 @@
"undefined": "Undefined", "undefined": "Undefined",
"create-new-content-for-your-site": "Create new content for your site", "create-new-content-for-your-site": "Create new content for your site",
"there-are-no-draft-content": "There are no draft content.", "there-are-no-draft-content": "There are no draft content.",
"order-the-pages-by-date-to-build-a-blog": "Order the pages by date to build a Blog or order the pages by position to build a Website.",
"order-items-by": "Order items by", "order-items-by": "Order items by",
"all-pages": "All pages", "all-content": "All content",
"dynamic": "Dynamic", "dynamic": "Dynamic",
"type": "Type", "type": "Type",
"draft-content": "Draft content", "draft-content": "Draft content",
"post": "Post", "post": "Post",
"page": "Page",
"default": "Default", "default": "Default",
"latest-content": "Latest content", "latest-content": "Latest content",
"default-message": "Default message", "default-message": "Default message",
"no-parent": "No parent", "no-parent": "No parent",
"have-you-seen-my-ball": "Have you seen my ball?", "have-you-seen-my-ball": "Have you seen my ball?",
"pagebreak": "Page break", "pagebreak": "Page break",
"pages": "Pages",
"this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit" "this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit"
} }

View File

@ -1,224 +1,233 @@
{ {
"language-data": "language-data": {
{ "native": "Español",
"native": "Español", "english-name": "Spanish",
"english-name": "Spanish", "locale": "es, es_ES, es_AR, es_MX",
"locale": "es, es_ES, es_AR, es_MX", "last-update": "2017-09-10",
"last-update": "2017-09-10", "author": "Bludit",
"author": "Bludit", "email": "",
"email": "", "website": "https://www.bludit.com"
"website": "https://www.bludit.com" },
},
"dashboard": "Panel de administración", "dashboard": "Panel",
"manage-users": "Administrar usuarios", "manage-users": "Administrar usuarios",
"manage-categories": "Manage categories", "manage-categories": "Manage categories",
"general-settings": "Ajustes generales", "general-settings": "Ajustes generales",
"advanced-settings": "Ajustes avanzados", "advanced-settings": "Ajustes avanzados",
"thanks-for-support-bludit": "Thanks for support Bludit", "thanks-for-support-bludit": "Thanks for support Bludit",
"upgrade-to-bludit-pro": "Upgrade to Bludit PRO", "upgrade-to-bludit-pro": "Upgrade to Bludit PRO",
"language": "Idioma", "language": "Idioma",
"plugin": "Plugin", "plugin": "Plugin",
"plugins": "Complementos", "plugins": "Complementos",
"developers": "Developers", "developers": "Developers",
"themes": "Temas", "themes": "Temas",
"about": "Acerca de", "about": "Acerca de",
"url": "URL", "url": "URL",
"fixed": "Fixed", "fixed": "Fixed",
"welcome": "Bienvenido", "welcome": "Bienvenido",
"logout": "Cerrar sesión", "logout": "Cerrar sesión",
"website": "Sitio web", "website": "Sitio web",
"publish": "Publicar", "publish": "Publicar",
"manage": "Administrar", "manage": "Administrar",
"content": "Contenido", "content": "Contenido",
"category": "Category", "category": "Category",
"categories": "Categories", "categories": "Categories",
"users": "Usuarios", "users": "Usuarios",
"settings": "Ajustes", "settings": "Ajustes",
"general": "General", "general": "General",
"advanced": "Avanzado", "advanced": "Avanzado",
"new-content": "New content", "new-content": "New content",
"manage-content": "Manage content", "manage-content": "Manage content",
"add-new-content": "Add new content", "add-new-content": "Add new content",
"new-category": "New category", "new-category": "New category",
"you-do-not-have-sufficient-permissions": "No tiene suficientes permisos para acceder a esta página, contacte al administrador.", "you-do-not-have-sufficient-permissions": "No tiene suficientes permisos para acceder a esta página, contacte al administrador.",
"add-a-new-user": "Agregar nuevo usuario", "add-a-new-user": "Agregar nuevo usuario",
"url-associated-with-the-page": "URL associated with the page.", "url-associated-with-the-content": "URL associated with the content.",
"language-and-timezone": "Idioma y zona horaria", "language-and-timezone": "Idioma y zona horaria",
"change-your-language-and-region-settings": "Cambiar la configuración de idioma y región.", "change-your-language-and-region-settings": "Cambiar la configuración de idioma y región.",
"notifications": "Notifications", "notifications": "Notifications",
"plugin-activated": "Plugin activated", "plugin-activated": "Plugin activated",
"plugin-deactivated": "Plugin deactivated", "plugin-deactivated": "Plugin deactivated",
"new-theme-configured": "New theme configured", "new-theme-configured": "New theme configured",
"changes-on-settings": "Changes on settings", "changes-on-settings": "Changes on settings",
"plugin-configured": "Plugin configured", "plugin-configured": "Plugin configured",
"welcome-to-bludit": "Bienvenido a Bludit", "welcome-to-bludit": "Bienvenido a Bludit",
"statistics": "Estadísticas", "statistics": "Estadísticas",
"pages": "Páginas", "drafts": "Borradores",
"drafts": "Borradores", "title": "Titulo",
"title": "Titulo", "save": "Guardar",
"save": "Guardar", "save-as-draft": "Save as draft",
"save-as-draft": "Save as draft", "cancel": "Cancel",
"cancel": "Cancel", "description": "Descripción",
"description": "Descripción", "this-field-can-help-describe-the-content": "Este campo puede ayudar a describir el contenido en pocas palabras. No mas de 150 caracteres.",
"this-field-can-help-describe-the-content": "Este campo puede ayudar a describir el contenido en pocas palabras. No mas de 150 caracteres.", "images": "Imagenes",
"images": "Imagenes", "error": "Error",
"error": "Error", "supported-image-file-types": "Tipo de imagen soportados",
"supported-image-file-types": "Tipo de imagen soportados", "cover-image": "Imagen de portada",
"cover-image": "Imagen de portada", "drag-and-drop-or-click-here": "Arrastre y suelte, o haga clic aquí",
"drag-and-drop-or-click-here": "Arrastre y suelte, o haga clic aquí", "there-are-no-images": "No hay imagenes",
"there-are-no-images": "No hay imagenes", "upload-and-more-images": "Upload and more images",
"upload-and-more-images": "Upload and more images", "click-on-the-image-for-options": "Clic en la imagen para las opciones.",
"click-on-the-image-for-options": "Clic en la imagen para las opciones.", "click-here-to-cancel": "Clic aquí para cancelar.",
"click-here-to-cancel": "Clic aquí para cancelar.", "insert-image": "Insertar imagen",
"insert-image": "Insertar imagen", "set-as-cover-image": "Establecer como portada",
"set-as-cover-image": "Establecer como portada", "delete-image": "Eliminar imagen",
"delete-image": "Eliminar imagen", "tags": "Etiquetas",
"tags": "Etiquetas", "add": "Agregar",
"add": "Agregar", "status": "Estado",
"status": "Estado", "published": "Publicado",
"published": "Publicado", "draft": "Borrador",
"draft": "Borrador", "empty-title": "Titulo vacío",
"empty-title": "Titulo vacío", "date": "Fecha",
"date": "Fecha", "external-cover-image": "External cover image",
"external-cover-image": "External cover image", "parent": "Padre",
"parent": "Padre", "full-image-url": "Full image URL.",
"full-image-url": "Full image URL.", "this-field-is-used-when-you-order-the-content-by-position": "This field is used when you order the content by position.",
"this-field-is-used-when-you-order-the-content-by-position": "This field is used when you order the content by position.", "position": "Posición",
"position": "Posición", "friendly-url": "URL Amistosa",
"friendly-url": "URL Amistosa", "image-description": "Descripción de la imagen",
"image-description": "Descripción de la imagen", "add-a-new-category": "Add a new category",
"add-a-new-category": "Add a new category", "name": "Nombre",
"name": "Nombre", "username": "Nombre de usuario",
"username": "Nombre de usuario", "first-name": "Nombre",
"first-name": "Nombre", "last-name": "Apellido",
"last-name": "Apellido", "to-schedule-the-content-select-the-date-and-time": "To schedule the content select the date and time, the status has to be set to \"Published\".",
"to-schedule-the-page-select-the-date-and-time": "To schedule the page select the date and time.", "email": "Correo electrónico",
"email": "Correo electrónico", "role": "Rol",
"role": "Rol", "registered": "Registrado",
"registered": "Registrado", "site-information": "información del sitio",
"site-information": "información del sitio", "site-title": "Titulo del sitio",
"site-title": "Titulo del sitio", "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-name-your-site": "Utilice este campo para nombrar su sitio, aparecerá en la parte superior de cada página de su sitio.", "site-slogan": "Slogan del sitio",
"site-slogan": "Slogan del sitio", "use-this-field-to-add-a-catchy-phrase": "Utilice este campo para agregar un slogan a su sitio.",
"use-this-field-to-add-a-catchy-phrase": "Utilice este campo para agregar un slogan a su sitio.", "site-description": "Descripción del sitio",
"site-description": "Descripción del 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-site-description-to-provide": "Puede agregar una descripción del sitio para proporcionar una breve biografía o descripción de su sitio.", "footer-text": "Texto de pie de página",
"footer-text": "Texto de pie de página", "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.",
"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.", "social-networks-links": "Redes sociales enlaces",
"social-networks-links": "Redes sociales enlaces", "site-url": "URL del sitio",
"site-url": "URL del sitio", "email-account-settings": "Configuración de la cuenta de correo electrónico",
"default-home-page": "Página de inicio predeterminada", "sender-email": "Remitente de correo electrónico",
"email-account-settings": "Configuración de la cuenta de correo electrónico", "emails-will-be-sent-from-this-address": "Los correo electrónicos seran enviados desde esta direccion.",
"sender-email": "Remitente de correo electrónico", "url-filters": "Filtros URL",
"emails-will-be-sent-from-this-address": "Los correo electrónicos seran enviados desde esta direccion.", "select-your-sites-language": "Seleccione el idioma de su sitio.",
"url-filters": "Filtros URL", "timezone": "Zona horaria",
"select-your-sites-language": "Seleccione el idioma de su sitio.", "select-a-timezone-for-a-correct": "Seleccione la zona horaria para una correcta visualización de las fechas.",
"timezone": "Zona horaria", "locale": "Locale",
"select-a-timezone-for-a-correct": "Seleccione la zona horaria para una correcta visualización de las fechas.", "date-and-time-formats": "Formato de la fecha y hora",
"locale": "Locale", "date-format": "Formato de fecha",
"date-and-time-formats": "Formato de la fecha y hora", "current-format": "Formato actual",
"date-format": "Formato de fecha", "version": "Version",
"current-format": "Formato actual", "author": "Autor",
"version": "Version", "activate": "Activar",
"author": "Autor", "deactivate": "Desactivar",
"activate": "Activar", "edit-category": "Edit category",
"deactivate": "Desactivar", "delete": "Eliminar",
"edit-category": "Edit category", "password": "Contraseña",
"delete": "Eliminar", "confirm-password": "Confirmar contraseña",
"password": "Contraseña", "editor": "Editor",
"confirm-password": "Confirmar contraseña", "administrator": "Administrador",
"editor": "Editor", "edit-user": "Editar usuario",
"administrator": "Administrador", "edit-content": "Edit content",
"edit-user": "Editar usuario", "profile": "Perfil",
"edit-content": "Edit content", "change-password": "Cambiar contraseña",
"profile": "Perfil", "enabled": "Habilitado",
"change-password": "Cambiar contraseña", "disable-the-user": "Deshabilitar usuario",
"enabled": "Habilitado", "profile-picture": "Imagen de perfil",
"disable-the-user": "Deshabilitar usuario", "edit-or-delete-your-categories": "Edit or delete your categories",
"profile-picture": "Imagen de perfil", "create-a-new-category-to-organize-your-content": "Create a new category to organize your content",
"edit-or-delete-your-categories": "Edit or delete your categories", "confirm-delete-this-action-cannot-be-undone": "Confirmar eliminación, esta operación no se puede deshacer.",
"create-a-new-page-for-your-site": "Create a new page for your site", "do-you-want-to-disable-the-user": "Quiere deshabilitar el usuario ?",
"create-a-new-category-to-organize-your-content": "Create a new category to organize your content", "new-password": "Nueva contraseña",
"confirm-delete-this-action-cannot-be-undone": "Confirmar eliminación, esta operación no se puede deshacer.", "you-can-change-this-field-when-save-the-current-changes": "You can change this field when save the current changes.",
"do-you-want-to-disable-the-user": "Quiere deshabilitar el usuario ?", "items-per-page": "Items per page",
"new-password": "Nueva contraseña", "invite-a-friend-to-collaborate-on-your-site": "Invite a friend to collaborate on your site",
"you-can-change-this-field-when-save-the-current-changes": "You can change this field when save the current changes.", "number-of-items-to-show-per-page": "Number of items to show per page.",
"items-per-page": "Items per page", "website-or-blog": "Website or Blog",
"invite-a-friend-to-collaborate-on-your-site": "Invite a friend to collaborate on your site", "order-content-by": "Order content By",
"number-of-items-to-show-per-page": "Number of items to show per page.", "edit-or-delete-content-from-your-site": "Edit or delete content from your site",
"website-or-blog": "Website or Blog", "order-the-content-by-date-to-build-a-blog": "Order the content by date to build a Blog or order the content by position to build a Website.",
"scheduled-pages": "Scheduled pages", "page-not-found-content": "Hey! look like the page doesn't exist.",
"there-are-no-scheduled-pages": "There are no scheduled pages", "page-not-found": "Page not found",
"there-are-no-draft-pages": "There are no draft pages", "predefined-pages": "Predefined pages",
"order-content-by": "Order content By", "returning-page-when-the-page-doesnt-exist": "Returning page when the page doesn't exist, leave it blank if you want to returns a default message.",
"edit-or-delete-content-from-your-site": "Edit or delete content from your site", "returning-page-for-the-main-page": "Returning page for the main page, leave it blank if you want to show all the pages on the main page.",
"order-the-content-by-position-to-build-a-website": "Order the content by position to build a Website or order the content by date to build a Blog.", "full-url-of-your-site": "Full URL of your site. Complete with the protocol HTTP or HTTPS (only if you have enabled SSL on your server).",
"page-not-found-content": "Hey! look like the page doesn't exist.", "with-the-locales-you-can-set-the-regional-user-interface": "With the locales, you can set the regional user interface, such as the dates in your language. The locales need to be installed on your system.",
"page-not-found": "Page not found", "bludit-installer": "Bludit Instalador",
"predefined-pages": "Predefined pages", "choose-your-language": "Seleccione su idioma",
"returning-page-when-the-page-doesnt-exist": "Returning page when the page doesn't exist, leave it blank if you want to returns a default message.", "next": "Siguiente",
"returning-page-for-the-main-page": "Returning page for the main page, leave it blank if you want to show all the pages on the main page.", "complete-the-form-choose-a-password-for-the-username-admin": "Complete el formulario y elija una contraseña para el usuario « admin »",
"full-url-of-your-site": "Full URL of your site. Complete with the protocol HTTP or HTTPS (only if you have enabled SSL on your server).", "show-password": "Mostrar contraseña",
"with-the-locales-you-can-set-the-regional-user-interface": "With the locales, you can set the regional user interface, such as the dates in your language. The locales need to be installed on your system.", "install": "Instalar",
"bludit-installer": "Bludit Instalador", "login": "Iniciar sesión",
"choose-your-language": "Seleccione su idioma", "back-to-login-form": "Volver al formulario de ingreso",
"next": "Siguiente", "get-login-access-code": "Obtener el codigo de acceso",
"complete-the-form-choose-a-password-for-the-username-admin": "Complete el formulario y elija una contraseña para el usuario « admin »", "email-access-code": "Código de acceso via email",
"show-password": "Mostrar contraseña", "whats-next": "Siguientes pasos",
"install": "Instalar", "username-or-password-incorrect": "Nombre de usuario o contraseña incorrectos",
"login": "Iniciar sesión", "follow-bludit-on": "Siga Bludit en",
"back-to-login-form": "Volver al formulario de ingreso", "visit-the-forum-for-support": "Visit the [forum](https:\/\/forum.bludit.org) for support",
"get-login-access-code": "Obtener el codigo de acceso", "manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración]({{ADMIN_AREA_LINK}})",
"email-access-code": "Código de acceso via email", "chat-with-developers-and-users-on-gitter": "Charla con los desarrolladores y usuarios en [Gitter](https:\/\/gitter.im\/dignajar\/bludit)",
"whats-next": "Siguientes pasos", "this-is-a-brief-description-of-yourself-our-your-site": "Breve descripción de ti o de tu sitio, para cambiar este texto, vaya al panel de administración, ajustes, complementos, y configurar el complemento Acerca de",
"username-or-password-incorrect": "Nombre de usuario o contraseña incorrectos", "read-the-documentation-for-more-information": "Lea la [documentación](https:\/\/docs.bludit.com) para mas información",
"follow-bludit-on": "Siga Bludit en", "new-version-available": "New version available",
"visit-the-forum-for-support": "Visit the [forum](https:\/\/forum.bludit.org) for support", "new-category-created": "New category created",
"manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración]({{ADMIN_AREA_LINK}})", "category-deleted": "Category deleted",
"chat-with-developers-and-users-on-gitter": "Charla con los desarrolladores y usuarios en [Gitter](https:\/\/gitter.im\/dignajar\/bludit)", "category-edited": "Category edited",
"this-is-a-brief-description-of-yourself-our-your-site": "Breve descripción de ti o de tu sitio, para cambiar este texto, vaya al panel de administración, ajustes, complementos, y configurar el complemento Acerca de", "new-user-created": "New user created",
"read-the-documentation-for-more-information": "Lea la [documentación](https:\/\/docs.bludit.com) para mas información", "user-edited": "User edited",
"new-page-created": "New page created", "user-deleted": "Usuario eliminado",
"new-version-available": "New version available", "recommended-for-recovery-password-and-notifications": "Recommended for recovery password and notifications.",
"new-category-created": "New category created", "authentication-token": "Authentication Token",
"category-deleted": "Category deleted", "token": "Token",
"category-edited": "Category edited", "current-status": "Current status",
"new-user-created": "New user created", "upload-image": "Subir imagen",
"user-edited": "User edited", "this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it.",
"user-deleted": "Usuario eliminado", "the-changes-have-been-saved": "Los cambios fueron guardados",
"recommended-for-recovery-password-and-notifications": "Recommended for recovery password and notifications.", "label": "Label",
"authentication-token": "Authentication Token", "links": "Links",
"token": "Token", "this-title-is-almost-always-used-in-the-sidebar-of-the-site": "This title is almost always used in the sidebar of the site.",
"current-status": "Current status", "password-must-be-at-least-6-characters-long": "La contraseña debe tener al menos 6 carácteres.",
"upload-image": "Subir imagen", "ip-address-has-been-blocked": "La direccion IP fue bloqueada.",
"this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it.", "try-again-in-a-few-minutes": "Vuelva a intentar en unos minutos.",
"the-changes-have-been-saved": "Los cambios fueron guardados", "content-published-from-scheduler": "Content published from scheduler",
"label": "Label", "installer-page-about-content": "The about page is an important and powerful for potential clients and partners. For those who wonder who is behind the website, your About page is the first source of information.",
"links": "Links", "blog": "Blog",
"this-title-is-almost-always-used-in-the-sidebar-of-the-site": "This title is almost always used in the sidebar of the site.", "complete-all-fields": "Complete all fields",
"password-must-be-at-least-6-characters-long": "La contraseña debe tener al menos 6 carácteres.", "static": "Static",
"ip-address-has-been-blocked": "La direccion IP fue bloqueada.", "about-your-site-or-yourself": "About your site or yourself",
"try-again-in-a-few-minutes": "Vuelva a intentar en unos minutos.", "homepage": "Homepage",
"page-published-from-scheduler": "Page published from scheduler", "disabled": "Disabled",
"installer-page-about-content": "The about page is an important and powerful for potential clients and partners. For those who wonder who is behind the website, your About page is the first source of information.", "to-enable-the-user-you-must-set-a-new-password": "To enable the user you must set a new password.",
"blog": "Blog", "delete-the-user-and-associate-his-content-to-admin-user": "Delete the user and associate his content to admin user",
"complete-all-fields": "Complete all fields", "delete-the-user-and-all-his-content": "Delete the user and all his content",
"static": "Static", "user-disabled": "User disabled",
"manage-pages": "Manage pages", "user-password-changed": "User password changed",
"new-page": "New page", "the-password-and-confirmation-password-do-not-match": "The password and confirmation password do not match",
"edit-page": "Edit page", "scheduled-content": "Scheduled content",
"create-a-new-category-to-organize-your-pages": "Create a new category to organize your pages", "there-are-no-scheduled-content": "There are no scheduled content.",
"edit-or-delete-pages-from-your-site": "Edit or delete pages from your site", "new-content-created": "New content created",
"add-new-page": "Add new page", "content-edited": "Content edited",
"this-field-is-used-when-you-order-the-pages-by-position": "This field is used when you order the pages by position.", "content-deleted": "Contente deleted",
"about-your-site-or-yourself": "About your site or yourself", "undefined": "Undefined",
"homepage": "Homepage", "create-new-content-for-your-site": "Create new content for your site",
"disabled": "Disabled", "there-are-no-draft-content": "There are no draft content.",
"to-enable-the-user-you-must-set-a-new-password": "To enable the user you must set a new password.", "order-items-by": "Order items by",
"delete-the-user-and-associate-his-pages-to-admin-user": "Delete the user and associate his pages to admin user", "all-content": "All content",
"delete-the-user-and-all-his-pages": "Delete the user and all his pages", "dynamic": "Dynamic",
"user-disabled": "User disabled", "type": "Type",
"user-password-changed": "User password changed", "draft-content": "Draft content",
"page-edited": "Page edited" "post": "Post",
"default": "Default",
"latest-content": "Latest content",
"default-message": "Default message",
"no-parent": "No parent",
"have-you-seen-my-ball": "Have you seen my ball?",
"pagebreak": "Page break",
"pages": "Páginas",
"this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit",
"next-page": "Next page",
"previous-page": "Previous page"
} }