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(
'name'=>'itemsPerPage',
'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(),
'class'=>'uk-width-1-3 uk-form-medium',
'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
define('DEBUG_MODE', TRUE);
error_reporting(0); // Turn off all error reporting
if(DEBUG_MODE) {
if (DEBUG_MODE) {
// Turn on all error reporting
ini_set("display_errors", 1);
ini_set('display_startup_errors',1);
@ -101,9 +101,6 @@ define('PARENT', 'BLUDIT3849abb4cb7abd24c2d8dac17b216f17');
// Items per page for admin area
define('ITEMS_PER_PAGE_ADMIN', 10);
// Cli mode, enable or disable
define('CLI_MODE', FALSE);
// Cli mode, status for new pages
define('CLI_STATUS', 'published');
@ -192,14 +189,13 @@ include(PATH_HELPERS.'paginator.class.php');
include(PATH_HELPERS.'image.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');
}
// Session
Session::start();
if(Session::started()===false) {
if (Session::started()===false) {
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.
$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 = dirname($base);
}
elseif( empty($base) ) {
} elseif (empty($base)) {
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
$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_JS', HTML_PATH_THEME.'js/');
define('HTML_PATH_THEME_IMG', HTML_PATH_THEME.'img/');
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_JS', HTML_PATH_ADMIN_THEME.'js/');
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_CORE_JS', HTML_PATH_ROOT.'bl-kernel/js/');
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_PROFILES', HTML_PATH_UPLOADS.'profiles/');
define('HTML_PATH_UPLOADS_THUMBNAILS', HTML_PATH_UPLOADS.'thumbnails/');
define('HTML_PATH_PLUGINS', HTML_PATH_ROOT.'bl-plugins/');
define('JQUERY', HTML_PATH_ROOT.'bl-kernel/js/jquery.min.js');
// --- Objects with dependency ---
$Language = new dbLanguage( $Site->language() );
$Login = new Login( $dbUsers );

View File

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

View File

@ -58,7 +58,7 @@ class dbLanguage extends dbJSON
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;
}

View File

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

View File

@ -54,7 +54,6 @@
"plugin-configured": "Plugin configured",
"welcome-to-bludit": "Welcome to Bludit",
"statistics": "Statistics",
"pages": "Pages",
"drafts": "Drafts",
"title": "Title",
"save": "Save",
@ -80,6 +79,7 @@
"published": "Published",
"draft": "Draft",
"empty-title": "Empty title",
"empty": "empty",
"date": "Date",
"external-cover-image": "External cover image",
"parent": "Parent",
@ -99,7 +99,7 @@
"registered": "Registered",
"site-information": "Site information",
"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",
"use-this-field-to-add-a-catchy-phrase": "Use this field to add a catchy phrase on your site.",
"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.",
"social-networks-links": "Social networks links",
"site-url": "Site URL",
"default-home-page": "Default home page",
"email-account-settings": "Email account settings",
"sender-email": "Sender email",
"emails-will-be-sent-from-this-address": "Emails will be sent from this address.",
@ -138,7 +137,6 @@
"disable-the-user": "Disable the user",
"profile-picture": "Profile picture",
"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",
"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 ?",
@ -148,9 +146,6 @@
"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.",
"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",
"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.",
@ -179,7 +174,6 @@
"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.",
"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-category-created": "New category created",
"category-deleted": "Category deleted",
@ -200,26 +194,19 @@
"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",
"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.",
"blog": "Blog",
"complete-all-fields": "Complete all fields",
"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",
"homepage": "Homepage",
"disabled": "Disabled",
"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-all-his-pages": "Delete the user and all his pages",
"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-content": "Delete the user and all his content",
"user-disabled": "User disabled",
"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",
"scheduled-content": "Scheduled content",
"there-are-no-scheduled-content": "There are no scheduled content.",
@ -229,19 +216,18 @@
"undefined": "Undefined",
"create-new-content-for-your-site": "Create new content for your site",
"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",
"all-pages": "All pages",
"all-content": "All content",
"dynamic": "Dynamic",
"type": "Type",
"draft-content": "Draft content",
"post": "Post",
"page": "Page",
"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": "Pages",
"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":
{
"native": "Español",
"english-name": "Spanish",
"locale": "es, es_ES, es_AR, es_MX",
"last-update": "2017-09-10",
"author": "Bludit",
"email": "",
"website": "https://www.bludit.com"
},
"language-data": {
"native": "Español",
"english-name": "Spanish",
"locale": "es, es_ES, es_AR, es_MX",
"last-update": "2017-09-10",
"author": "Bludit",
"email": "",
"website": "https://www.bludit.com"
},
"dashboard": "Panel de administración",
"manage-users": "Administrar usuarios",
"manage-categories": "Manage categories",
"general-settings": "Ajustes generales",
"advanced-settings": "Ajustes avanzados",
"thanks-for-support-bludit": "Thanks for support Bludit",
"upgrade-to-bludit-pro": "Upgrade to Bludit PRO",
"language": "Idioma",
"plugin": "Plugin",
"plugins": "Complementos",
"developers": "Developers",
"themes": "Temas",
"about": "Acerca de",
"url": "URL",
"fixed": "Fixed",
"welcome": "Bienvenido",
"logout": "Cerrar sesión",
"website": "Sitio web",
"publish": "Publicar",
"manage": "Administrar",
"content": "Contenido",
"category": "Category",
"categories": "Categories",
"users": "Usuarios",
"settings": "Ajustes",
"general": "General",
"advanced": "Avanzado",
"new-content": "New content",
"manage-content": "Manage content",
"add-new-content": "Add new content",
"new-category": "New category",
"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",
"url-associated-with-the-page": "URL associated with the page.",
"language-and-timezone": "Idioma y zona horaria",
"change-your-language-and-region-settings": "Cambiar la configuración de idioma y región.",
"notifications": "Notifications",
"plugin-activated": "Plugin activated",
"plugin-deactivated": "Plugin deactivated",
"new-theme-configured": "New theme configured",
"changes-on-settings": "Changes on settings",
"plugin-configured": "Plugin configured",
"welcome-to-bludit": "Bienvenido a Bludit",
"statistics": "Estadísticas",
"pages": "Páginas",
"drafts": "Borradores",
"title": "Titulo",
"save": "Guardar",
"save-as-draft": "Save as draft",
"cancel": "Cancel",
"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.",
"images": "Imagenes",
"error": "Error",
"supported-image-file-types": "Tipo de imagen soportados",
"cover-image": "Imagen de portada",
"drag-and-drop-or-click-here": "Arrastre y suelte, o haga clic aquí",
"there-are-no-images": "No hay imagenes",
"upload-and-more-images": "Upload and more images",
"click-on-the-image-for-options": "Clic en la imagen para las opciones.",
"click-here-to-cancel": "Clic aquí para cancelar.",
"insert-image": "Insertar imagen",
"set-as-cover-image": "Establecer como portada",
"delete-image": "Eliminar imagen",
"tags": "Etiquetas",
"add": "Agregar",
"status": "Estado",
"published": "Publicado",
"draft": "Borrador",
"empty-title": "Titulo vacío",
"date": "Fecha",
"external-cover-image": "External cover image",
"parent": "Padre",
"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.",
"position": "Posición",
"friendly-url": "URL Amistosa",
"image-description": "Descripción de la imagen",
"add-a-new-category": "Add a new category",
"name": "Nombre",
"username": "Nombre de usuario",
"first-name": "Nombre",
"last-name": "Apellido",
"to-schedule-the-page-select-the-date-and-time": "To schedule the page select the date and time.",
"email": "Correo electrónico",
"role": "Rol",
"registered": "Registrado",
"site-information": "información 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.",
"site-slogan": "Slogan del 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",
"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",
"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",
"site-url": "URL del sitio",
"default-home-page": "Página de inicio predeterminada",
"email-account-settings": "Configuración de la cuenta de correo electrónico",
"sender-email": "Remitente de correo electrónico",
"emails-will-be-sent-from-this-address": "Los correo electrónicos seran enviados desde esta direccion.",
"url-filters": "Filtros URL",
"select-your-sites-language": "Seleccione el idioma de su sitio.",
"timezone": "Zona horaria",
"select-a-timezone-for-a-correct": "Seleccione la zona horaria para una correcta visualización de las fechas.",
"locale": "Locale",
"date-and-time-formats": "Formato de la fecha y hora",
"date-format": "Formato de fecha",
"current-format": "Formato actual",
"version": "Version",
"author": "Autor",
"activate": "Activar",
"deactivate": "Desactivar",
"edit-category": "Edit category",
"delete": "Eliminar",
"password": "Contraseña",
"confirm-password": "Confirmar contraseña",
"editor": "Editor",
"administrator": "Administrador",
"edit-user": "Editar usuario",
"edit-content": "Edit content",
"profile": "Perfil",
"change-password": "Cambiar contraseña",
"enabled": "Habilitado",
"disable-the-user": "Deshabilitar usuario",
"profile-picture": "Imagen de perfil",
"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",
"confirm-delete-this-action-cannot-be-undone": "Confirmar eliminación, esta operación no se puede deshacer.",
"do-you-want-to-disable-the-user": "Quiere deshabilitar el usuario ?",
"new-password": "Nueva contraseña",
"you-can-change-this-field-when-save-the-current-changes": "You can change this field when save the current changes.",
"items-per-page": "Items per page",
"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.",
"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",
"edit-or-delete-content-from-your-site": "Edit or delete content from your site",
"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.",
"page-not-found-content": "Hey! look like the page doesn't exist.",
"page-not-found": "Page not found",
"predefined-pages": "Predefined pages",
"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.",
"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.",
"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).",
"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.",
"bludit-installer": "Bludit Instalador",
"choose-your-language": "Seleccione su idioma",
"next": "Siguiente",
"complete-the-form-choose-a-password-for-the-username-admin": "Complete el formulario y elija una contraseña para el usuario « admin »",
"show-password": "Mostrar contraseña",
"install": "Instalar",
"login": "Iniciar sesión",
"back-to-login-form": "Volver al formulario de ingreso",
"get-login-access-code": "Obtener el codigo de acceso",
"email-access-code": "Código de acceso via email",
"whats-next": "Siguientes pasos",
"username-or-password-incorrect": "Nombre de usuario o contraseña incorrectos",
"follow-bludit-on": "Siga Bludit en",
"visit-the-forum-for-support": "Visit the [forum](https:\/\/forum.bludit.org) for support",
"manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración]({{ADMIN_AREA_LINK}})",
"chat-with-developers-and-users-on-gitter": "Charla con los desarrolladores y usuarios en [Gitter](https:\/\/gitter.im\/dignajar\/bludit)",
"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",
"read-the-documentation-for-more-information": "Lea la [documentación](https:\/\/docs.bludit.com) para mas información",
"new-page-created": "New page created",
"new-version-available": "New version available",
"new-category-created": "New category created",
"category-deleted": "Category deleted",
"category-edited": "Category edited",
"new-user-created": "New user created",
"user-edited": "User edited",
"user-deleted": "Usuario eliminado",
"recommended-for-recovery-password-and-notifications": "Recommended for recovery password and notifications.",
"authentication-token": "Authentication Token",
"token": "Token",
"current-status": "Current status",
"upload-image": "Subir imagen",
"this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it.",
"the-changes-have-been-saved": "Los cambios fueron guardados",
"label": "Label",
"links": "Links",
"this-title-is-almost-always-used-in-the-sidebar-of-the-site": "This title is almost always used in the sidebar of the site.",
"password-must-be-at-least-6-characters-long": "La contraseña debe tener al menos 6 carácteres.",
"ip-address-has-been-blocked": "La direccion IP fue bloqueada.",
"try-again-in-a-few-minutes": "Vuelva a intentar en unos minutos.",
"page-published-from-scheduler": "Page 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.",
"blog": "Blog",
"complete-all-fields": "Complete all fields",
"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",
"this-field-is-used-when-you-order-the-pages-by-position": "This field is used when you order the pages by position.",
"about-your-site-or-yourself": "About your site or yourself",
"homepage": "Homepage",
"disabled": "Disabled",
"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-all-his-pages": "Delete the user and all his pages",
"user-disabled": "User disabled",
"user-password-changed": "User password changed",
"page-edited": "Page edited"
"dashboard": "Panel",
"manage-users": "Administrar usuarios",
"manage-categories": "Manage categories",
"general-settings": "Ajustes generales",
"advanced-settings": "Ajustes avanzados",
"thanks-for-support-bludit": "Thanks for support Bludit",
"upgrade-to-bludit-pro": "Upgrade to Bludit PRO",
"language": "Idioma",
"plugin": "Plugin",
"plugins": "Complementos",
"developers": "Developers",
"themes": "Temas",
"about": "Acerca de",
"url": "URL",
"fixed": "Fixed",
"welcome": "Bienvenido",
"logout": "Cerrar sesión",
"website": "Sitio web",
"publish": "Publicar",
"manage": "Administrar",
"content": "Contenido",
"category": "Category",
"categories": "Categories",
"users": "Usuarios",
"settings": "Ajustes",
"general": "General",
"advanced": "Avanzado",
"new-content": "New content",
"manage-content": "Manage content",
"add-new-content": "Add new content",
"new-category": "New category",
"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",
"url-associated-with-the-content": "URL associated with the content.",
"language-and-timezone": "Idioma y zona horaria",
"change-your-language-and-region-settings": "Cambiar la configuración de idioma y región.",
"notifications": "Notifications",
"plugin-activated": "Plugin activated",
"plugin-deactivated": "Plugin deactivated",
"new-theme-configured": "New theme configured",
"changes-on-settings": "Changes on settings",
"plugin-configured": "Plugin configured",
"welcome-to-bludit": "Bienvenido a Bludit",
"statistics": "Estadísticas",
"drafts": "Borradores",
"title": "Titulo",
"save": "Guardar",
"save-as-draft": "Save as draft",
"cancel": "Cancel",
"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.",
"images": "Imagenes",
"error": "Error",
"supported-image-file-types": "Tipo de imagen soportados",
"cover-image": "Imagen de portada",
"drag-and-drop-or-click-here": "Arrastre y suelte, o haga clic aquí",
"there-are-no-images": "No hay imagenes",
"upload-and-more-images": "Upload and more images",
"click-on-the-image-for-options": "Clic en la imagen para las opciones.",
"click-here-to-cancel": "Clic aquí para cancelar.",
"insert-image": "Insertar imagen",
"set-as-cover-image": "Establecer como portada",
"delete-image": "Eliminar imagen",
"tags": "Etiquetas",
"add": "Agregar",
"status": "Estado",
"published": "Publicado",
"draft": "Borrador",
"empty-title": "Titulo vacío",
"date": "Fecha",
"external-cover-image": "External cover image",
"parent": "Padre",
"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.",
"position": "Posición",
"friendly-url": "URL Amistosa",
"image-description": "Descripción de la imagen",
"add-a-new-category": "Add a new category",
"name": "Nombre",
"username": "Nombre de usuario",
"first-name": "Nombre",
"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\".",
"email": "Correo electrónico",
"role": "Rol",
"registered": "Registrado",
"site-information": "información 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.",
"site-slogan": "Slogan del 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",
"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",
"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",
"site-url": "URL del sitio",
"email-account-settings": "Configuración de la cuenta de correo electrónico",
"sender-email": "Remitente de correo electrónico",
"emails-will-be-sent-from-this-address": "Los correo electrónicos seran enviados desde esta direccion.",
"url-filters": "Filtros URL",
"select-your-sites-language": "Seleccione el idioma de su sitio.",
"timezone": "Zona horaria",
"select-a-timezone-for-a-correct": "Seleccione la zona horaria para una correcta visualización de las fechas.",
"locale": "Locale",
"date-and-time-formats": "Formato de la fecha y hora",
"date-format": "Formato de fecha",
"current-format": "Formato actual",
"version": "Version",
"author": "Autor",
"activate": "Activar",
"deactivate": "Desactivar",
"edit-category": "Edit category",
"delete": "Eliminar",
"password": "Contraseña",
"confirm-password": "Confirmar contraseña",
"editor": "Editor",
"administrator": "Administrador",
"edit-user": "Editar usuario",
"edit-content": "Edit content",
"profile": "Perfil",
"change-password": "Cambiar contraseña",
"enabled": "Habilitado",
"disable-the-user": "Deshabilitar usuario",
"profile-picture": "Imagen de perfil",
"edit-or-delete-your-categories": "Edit or delete your categories",
"create-a-new-category-to-organize-your-content": "Create a new category to organize your content",
"confirm-delete-this-action-cannot-be-undone": "Confirmar eliminación, esta operación no se puede deshacer.",
"do-you-want-to-disable-the-user": "Quiere deshabilitar el usuario ?",
"new-password": "Nueva contraseña",
"you-can-change-this-field-when-save-the-current-changes": "You can change this field when save the current changes.",
"items-per-page": "Items per page",
"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.",
"website-or-blog": "Website or Blog",
"order-content-by": "Order content By",
"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.",
"page-not-found-content": "Hey! look like the page doesn't exist.",
"page-not-found": "Page not found",
"predefined-pages": "Predefined pages",
"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.",
"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.",
"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).",
"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.",
"bludit-installer": "Bludit Instalador",
"choose-your-language": "Seleccione su idioma",
"next": "Siguiente",
"complete-the-form-choose-a-password-for-the-username-admin": "Complete el formulario y elija una contraseña para el usuario « admin »",
"show-password": "Mostrar contraseña",
"install": "Instalar",
"login": "Iniciar sesión",
"back-to-login-form": "Volver al formulario de ingreso",
"get-login-access-code": "Obtener el codigo de acceso",
"email-access-code": "Código de acceso via email",
"whats-next": "Siguientes pasos",
"username-or-password-incorrect": "Nombre de usuario o contraseña incorrectos",
"follow-bludit-on": "Siga Bludit en",
"visit-the-forum-for-support": "Visit the [forum](https:\/\/forum.bludit.org) for support",
"manage-your-bludit-from-the-admin-panel": "Administre su Bludit desde el [panel de administración]({{ADMIN_AREA_LINK}})",
"chat-with-developers-and-users-on-gitter": "Charla con los desarrolladores y usuarios en [Gitter](https:\/\/gitter.im\/dignajar\/bludit)",
"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",
"read-the-documentation-for-more-information": "Lea la [documentación](https:\/\/docs.bludit.com) para mas información",
"new-version-available": "New version available",
"new-category-created": "New category created",
"category-deleted": "Category deleted",
"category-edited": "Category edited",
"new-user-created": "New user created",
"user-edited": "User edited",
"user-deleted": "Usuario eliminado",
"recommended-for-recovery-password-and-notifications": "Recommended for recovery password and notifications.",
"authentication-token": "Authentication Token",
"token": "Token",
"current-status": "Current status",
"upload-image": "Subir imagen",
"this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it.",
"the-changes-have-been-saved": "Los cambios fueron guardados",
"label": "Label",
"links": "Links",
"this-title-is-almost-always-used-in-the-sidebar-of-the-site": "This title is almost always used in the sidebar of the site.",
"password-must-be-at-least-6-characters-long": "La contraseña debe tener al menos 6 carácteres.",
"ip-address-has-been-blocked": "La direccion IP fue bloqueada.",
"try-again-in-a-few-minutes": "Vuelva a intentar en unos minutos.",
"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.",
"blog": "Blog",
"complete-all-fields": "Complete all fields",
"static": "Static",
"about-your-site-or-yourself": "About your site or yourself",
"homepage": "Homepage",
"disabled": "Disabled",
"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-content-to-admin-user": "Delete the user and associate his content to admin user",
"delete-the-user-and-all-his-content": "Delete the user and all his content",
"user-disabled": "User disabled",
"user-password-changed": "User password changed",
"the-password-and-confirmation-password-do-not-match": "The password and confirmation password do not match",
"scheduled-content": "Scheduled content",
"there-are-no-scheduled-content": "There are no scheduled content.",
"new-content-created": "New content created",
"content-edited": "Content edited",
"content-deleted": "Contente deleted",
"undefined": "Undefined",
"create-new-content-for-your-site": "Create new content for your site",
"there-are-no-draft-content": "There are no draft content.",
"order-items-by": "Order items by",
"all-content": "All content",
"dynamic": "Dynamic",
"type": "Type",
"draft-content": "Draft content",
"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"
}