mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
Merge branch 'master' of https://github.com/humhub/humhub
This commit is contained in:
commit
807ee57255
@ -82,6 +82,11 @@ HumHub Change Log
|
||||
- Enh: Added new controller init event
|
||||
- Enh: Made admin base controller method "getAccessRules()" non static
|
||||
- Enh: Created new ImageController for user image and banner handling
|
||||
- Enh: Decreased OEmbed url max length 180chars (acs-ferreira)
|
||||
- Enh: Added APCu Support
|
||||
- Enh: Added ContentContainer integrity check (Daha62)
|
||||
- Fix #2331: Bug image load on PHP 7.1 with dynamic memory alloc (githubjeka)
|
||||
|
||||
|
||||
1.2.0-beta.2 (February 24, 2017)
|
||||
--------------------------------
|
||||
|
@ -11,7 +11,6 @@ namespace humhub\libs;
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
|
||||
/**
|
||||
* DynamicConfig provides access to the dynamic configuration file.
|
||||
*
|
||||
@ -109,12 +108,19 @@ class DynamicConfig extends \yii\base\Object
|
||||
|
||||
// Add Caching
|
||||
$cacheClass = Yii::$app->settings->get('cache.class');
|
||||
if (in_array($cacheClass, ['yii\caching\DummyCache', 'yii\caching\ApcCache', 'yii\caching\FileCache'])) {
|
||||
if (in_array($cacheClass, ['yii\caching\DummyCache', 'yii\caching\FileCache'])) {
|
||||
$config['components']['cache'] = [
|
||||
'class' => $cacheClass,
|
||||
'keyPrefix' => Yii::$app->id
|
||||
];
|
||||
} elseif ($cacheClass == 'yii\caching\ApcCache' && (function_exists('apcu_add') || function_exists('apc_add'))) {
|
||||
$config['components']['cache'] = [
|
||||
'class' => $cacheClass,
|
||||
'keyPrefix' => Yii::$app->id,
|
||||
'useApcu' => (function_exists('apcu_add'))
|
||||
];
|
||||
}
|
||||
|
||||
// Add User settings
|
||||
$config['components']['user'] = array();
|
||||
if (Yii::$app->getModule('user')->settings->get('auth.defaultUserIdleTimeoutSec')) {
|
||||
|
@ -113,6 +113,8 @@ class Helpers
|
||||
*
|
||||
* @param String $val
|
||||
* @return int bytes
|
||||
* @deprecated bug on PHP7 "A non well formed numeric value encountered"
|
||||
* @see \humhub\libs\Helpers::getBytesOfIniValue instead
|
||||
*/
|
||||
public static function GetBytesOfPHPIniValue($val)
|
||||
{
|
||||
@ -130,6 +132,26 @@ class Helpers
|
||||
return $val;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns bytes of a PHP Ini Setting Value
|
||||
* E.g. 10M will converted into 10485760
|
||||
*
|
||||
* Source: http://php.net/manual/en/function.ini-get.php#96996
|
||||
*
|
||||
* @param string $valueString
|
||||
* @return int bytes
|
||||
*/
|
||||
public static function getBytesOfIniValue($valueString)
|
||||
{
|
||||
switch (substr($valueString, -1))
|
||||
{
|
||||
case 'M': case 'm': return (int)$valueString * 1048576;
|
||||
case 'K': case 'k': return (int)$valueString * 1024;
|
||||
case 'G': case 'g': return (int)$valueString * 1073741824;
|
||||
default: return (int) $valueString;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a unique string
|
||||
*
|
||||
|
@ -204,7 +204,7 @@ class SelfTest
|
||||
}
|
||||
|
||||
// Checks APC Extension
|
||||
$title = 'PHP - APC Support';
|
||||
$title = 'PHP - APC(u) Support';
|
||||
if (function_exists('apc_add') || function_exists('apcu_add')) {
|
||||
$checks[] = array(
|
||||
'title' => Yii::t('base', $title),
|
||||
@ -214,7 +214,7 @@ class SelfTest
|
||||
$checks[] = array(
|
||||
'title' => Yii::t('base', $title),
|
||||
'state' => 'WARNING',
|
||||
'hint' => 'Optional - Install APC Extension for APC Caching'
|
||||
'hint' => 'Optional - Install APCu Extension for APC Caching'
|
||||
);
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,15 +1,15 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Confirm</strong> Action' => '',
|
||||
'<strong>Confirm</strong> Action' => '<strong>Confirmar</strong> Acción',
|
||||
'<strong>Latest</strong> updates' => '<strong>Últimas</strong> actualizaciones',
|
||||
'<strong>Mail</strong> summary' => '',
|
||||
'<strong>Mail</strong> summary' => '<strong>Resumen</strong> de Correo',
|
||||
'Account settings' => 'Configuración de la cuenta',
|
||||
'Administration' => 'Administración',
|
||||
'Allow' => 'Permitir',
|
||||
'An error occured while handling your last action. (Handler not found).' => '',
|
||||
'An unexpected error occured while loading the search result.' => '',
|
||||
'An unexpected error occured. If this keeps happening, please contact a site administrator.' => '',
|
||||
'An unexpected server error occured. If this keeps happening, please contact a site administrator.' => '',
|
||||
'An error occured while handling your last action. (Handler not found).' => 'Se ha producido un error al manejar la última acción. (No se encuentra el manejador).',
|
||||
'An unexpected error occured while loading the search result.' => 'Se ha producido un error inesperado al cargar el resultado de la búsqueda.',
|
||||
'An unexpected error occured. If this keeps happening, please contact a site administrator.' => 'Ocurrió un error inesperado. Si esto sigue sucediendo, póngase en contacto con un administrador del sitio.',
|
||||
'An unexpected server error occured. If this keeps happening, please contact a site administrator.' => 'Se ha producido un error inesperado en el servidor. Si esto sigue sucediendo, póngase en contacto con un administrador del sitio.',
|
||||
'Back' => 'Atrás',
|
||||
'Back to dashboard' => 'Volver al Panel de Control',
|
||||
'Cancel' => 'Cancelar',
|
||||
@ -18,18 +18,18 @@ return array (
|
||||
'Collapse' => 'Cerrar',
|
||||
'Confirm' => 'Confirmar',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '¡La fuente de Contenido del Complemento debe ser una instancia de HActiveRecordContent ó HActiveRecordContentAddon!',
|
||||
'Copy to clipboard: Ctrl/Cmd+C' => '',
|
||||
'Copy to clipboard: Ctrl/Cmd+C' => 'Copiar al portapapeles: Ctrl / Cmd + C',
|
||||
'Could not determine content container!' => '¡No se pudo determinar el contenedor de contenido!',
|
||||
'Could not find content of addon!' => '¡No se pudo encontrar el contenido del complemento!',
|
||||
'Default' => 'Por Defecto',
|
||||
'Deny' => 'Denegar',
|
||||
'Do you really want to perform this action?' => '',
|
||||
'Do you really want to perform this action?' => '¿Realmente deseas ejecutar esta acción?',
|
||||
'Error' => 'Error',
|
||||
'Error while running your last action (Invalid request method).' => '',
|
||||
'Error while running your last action (Invalid request method).' => 'Error al ejecutar la última acción (método de solicitud no válido).',
|
||||
'Expand' => 'Ampliar',
|
||||
'It looks like you may have taken the wrong turn.' => 'Parece que puede haber tomado el camino equivocado.',
|
||||
'Language' => 'Idioma',
|
||||
'Loading...' => '',
|
||||
'Loading...' => 'Cargando...',
|
||||
'Login' => 'Iniciar sesión',
|
||||
'Logout' => 'Salir',
|
||||
'Menu' => 'Menú',
|
||||
@ -37,23 +37,23 @@ return array (
|
||||
'My profile' => 'Mi perfil',
|
||||
'New profile image' => 'Nueva imagen de perfil',
|
||||
'Next' => 'Siguiente',
|
||||
'No error information given.' => '',
|
||||
'No error information given.' => 'No se dio información.',
|
||||
'Oooops...' => 'Oooops...',
|
||||
'Open' => '',
|
||||
'Open' => 'Abrir',
|
||||
'Please type at least 3 characters' => 'Por favor escriba al menos 3 caracteres',
|
||||
'Save' => 'Guardar',
|
||||
'Saved' => 'Guardado',
|
||||
'Search' => 'Buscar',
|
||||
'Show less' => '',
|
||||
'Show less' => 'Mostrar menos',
|
||||
'Show more' => 'Mostrar más',
|
||||
'Some files could not be uploaded:' => '',
|
||||
'Some files could not be uploaded:' => 'Algunos archivos no se pueden cargar:',
|
||||
'Space not found!' => '¡Espacio no encontrado!',
|
||||
'The date has to be in the past.' => 'La fecha tiene que ser en el pasado.',
|
||||
'The file has been deleted.' => '',
|
||||
'The requested resource could not be found.' => '',
|
||||
'The space has be archived.' => '',
|
||||
'The space has be unarchived.' => '',
|
||||
'The file has been deleted.' => 'Este archivo ha sido borrado.',
|
||||
'The requested resource could not be found.' => 'El recurso solicitado no pudo ser encontrado.',
|
||||
'The space has be archived.' => 'Este espacio ha sido archivado.',
|
||||
'The space has be unarchived.' => 'Este espacio ha sido desarchivado.',
|
||||
'Unsubscribe' => 'Anular la suscripción',
|
||||
'User not found!' => '¡Usuario no encontrado!',
|
||||
'You are not allowed to run this action.' => '',
|
||||
'You are not allowed to run this action.' => 'No estás autorizado para realizar esta acción.',
|
||||
);
|
||||
|
@ -13,6 +13,7 @@ return array (
|
||||
'Insert Image Hyperlink' => 'Insertar imagen',
|
||||
'Italic' => 'Cursiva',
|
||||
'List' => 'Lista',
|
||||
'Ordered List' => 'Lista ordenada',
|
||||
'Please wait while uploading...' => 'Por favor, espera mientras se sube...',
|
||||
'Preview' => 'Previsualizar',
|
||||
'Quote' => 'Cita',
|
||||
@ -20,6 +21,7 @@ return array (
|
||||
'Title' => 'Título',
|
||||
'Title of your link' => 'Título de tu enlace',
|
||||
'URL/Link' => 'URL/Enlace',
|
||||
'Unordered List' => 'Lista sin orden',
|
||||
'code text here' => 'Texto con código aquí',
|
||||
'emphasized text' => 'Texto subrayado',
|
||||
'enter image description here' => 'Escribe la descripción de la imagen aquí',
|
||||
@ -29,6 +31,4 @@ return array (
|
||||
'list text here' => 'Lista de texto aquí',
|
||||
'quote here' => 'Citar aquí',
|
||||
'strong text' => 'Texto en negrita',
|
||||
'Unordered List' => '',
|
||||
'Ordered List' => '',
|
||||
);
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,15 +1,15 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Confirm</strong> Action' => '',
|
||||
'<strong>Confirm</strong> Action' => '<strong>确认</strong> 操作',
|
||||
'<strong>Latest</strong> updates' => '<strong>最近</strong> 更新',
|
||||
'<strong>Mail</strong> summary' => '',
|
||||
'<strong>Mail</strong> summary' => '<strong>邮件</strong> 概要',
|
||||
'Account settings' => '帐户设置',
|
||||
'Administration' => '管理',
|
||||
'Allow' => '允许',
|
||||
'An error occured while handling your last action. (Handler not found).' => '',
|
||||
'An unexpected error occured while loading the search result.' => '',
|
||||
'An unexpected error occured. If this keeps happening, please contact a site administrator.' => '',
|
||||
'An unexpected server error occured. If this keeps happening, please contact a site administrator.' => '',
|
||||
'An error occured while handling your last action. (Handler not found).' => '执行最后一个操作出错。(处理器没有找到)',
|
||||
'An unexpected error occured while loading the search result.' => '加载搜索结果时发生意外错误。',
|
||||
'An unexpected error occured. If this keeps happening, please contact a site administrator.' => '发现了意外错误,如果一直出现该错误,请联系网站管理员',
|
||||
'An unexpected server error occured. If this keeps happening, please contact a site administrator.' => '发生意外的服务器错误。如果这种情况不断发生,请联系网站管理员',
|
||||
'Back' => '返回',
|
||||
'Back to dashboard' => '返回主面板',
|
||||
'Cancel' => '取消',
|
||||
@ -18,18 +18,18 @@ return array (
|
||||
'Collapse' => '折叠',
|
||||
'Confirm' => '确认',
|
||||
'Content Addon source must be instance of HActiveRecordContent or HActiveRecordContentAddon!' => '内容插件源必须是hactive record content或hactive record contentaddon实例',
|
||||
'Copy to clipboard: Ctrl/Cmd+C' => '',
|
||||
'Copy to clipboard: Ctrl/Cmd+C' => '复制到剪贴板: Ctrl/Cmd+C',
|
||||
'Could not determine content container!' => '检测不到内容器!',
|
||||
'Could not find content of addon!' => '找不到内容的插件!',
|
||||
'Default' => '默认',
|
||||
'Deny' => '拒绝',
|
||||
'Do you really want to perform this action?' => '',
|
||||
'Do you really want to perform this action?' => '你真的要执行此操作吗?',
|
||||
'Error' => '错误',
|
||||
'Error while running your last action (Invalid request method).' => '',
|
||||
'Error while running your last action (Invalid request method).' => '执行最后一个操作出错。(无效的请求方法)',
|
||||
'Expand' => '展开',
|
||||
'It looks like you may have taken the wrong turn.' => '看来出错了。',
|
||||
'Language' => '语言',
|
||||
'Loading...' => '',
|
||||
'Loading...' => '加载中...',
|
||||
'Login' => '登录',
|
||||
'Logout' => '退出',
|
||||
'Menu' => '菜单',
|
||||
@ -37,23 +37,23 @@ return array (
|
||||
'My profile' => '我的资料',
|
||||
'New profile image' => '新图片',
|
||||
'Next' => '下一步',
|
||||
'No error information given.' => '',
|
||||
'No error information given.' => '没有给出错误消息。',
|
||||
'Oooops...' => '糟糕...',
|
||||
'Open' => '',
|
||||
'Open' => '打开',
|
||||
'Please type at least 3 characters' => '请至少输入3个字符',
|
||||
'Save' => '保存',
|
||||
'Saved' => '已保存',
|
||||
'Search' => '搜索',
|
||||
'Show less' => '',
|
||||
'Show less' => '展示更少',
|
||||
'Show more' => '展示更多',
|
||||
'Some files could not be uploaded:' => '',
|
||||
'Some files could not be uploaded:' => '有些文件无法被上传:',
|
||||
'Space not found!' => '没找到空间',
|
||||
'The date has to be in the past.' => '必须为过去的日期。',
|
||||
'The file has been deleted.' => '',
|
||||
'The requested resource could not be found.' => '',
|
||||
'The space has be archived.' => '',
|
||||
'The space has be unarchived.' => '',
|
||||
'The file has been deleted.' => '文件已被删除',
|
||||
'The requested resource could not be found.' => '未找到请求的资源',
|
||||
'The space has be archived.' => '空间已归档',
|
||||
'The space has be unarchived.' => '空间已解除归档',
|
||||
'Unsubscribe' => '退订',
|
||||
'User not found!' => '没找到用户',
|
||||
'You are not allowed to run this action.' => '',
|
||||
'You are not allowed to run this action.' => '你不被允许执行此操作。',
|
||||
);
|
||||
|
@ -9,7 +9,7 @@ class m131203_110444_oembed extends Migration
|
||||
public function up()
|
||||
{
|
||||
$this->createTable('url_oembed', array(
|
||||
'url' => 'varchar(255) NOT NULL',
|
||||
'url' => 'varchar(180) NOT NULL',
|
||||
'preview' => 'text NOT NULL',
|
||||
'PRIMARY KEY (`url`)'
|
||||
));
|
||||
|
@ -30,7 +30,7 @@ class UrlOembed extends \yii\db\ActiveRecord
|
||||
return [
|
||||
[['url', 'preview'], 'required'],
|
||||
[['preview'], 'string'],
|
||||
[['url'], 'string', 'max' => 255]
|
||||
[['url'], 'string', 'max' => 180]
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -1,21 +1,21 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>E-Mail</strong> Summaries' => '',
|
||||
'<strong>E-Mail</strong> Summaries' => '<strong>Resúmenes</strong> de Correo',
|
||||
'Activities' => 'Actividades',
|
||||
'Daily' => '',
|
||||
'E-Mail Summaries' => '',
|
||||
'E-Mail summaries are sent to inform you about recent activities in the network.' => '',
|
||||
'E-Mail summaries are sent to users to inform them about recent activities in your network.' => '',
|
||||
'Exclude spaces below from the mail summary' => '',
|
||||
'Hourly' => '',
|
||||
'Interval' => '',
|
||||
'Daily' => 'Diario',
|
||||
'E-Mail Summaries' => 'Resúmenes de Correo',
|
||||
'E-Mail summaries are sent to inform you about recent activities in the network.' => 'Resúmenes de correo son enviados para informarte acerca de actividades recientes en la red.',
|
||||
'E-Mail summaries are sent to users to inform them about recent activities in your network.' => 'Resúmenes de correo son enviados a los usuarios para informarles acerca de actividades recientes en la red.',
|
||||
'Exclude spaces below from the mail summary' => 'Excluir estos espacios del Resumen de Correo',
|
||||
'Hourly' => 'Por hora',
|
||||
'Interval' => 'Intervalo',
|
||||
'Latest news' => 'Últimas noticias',
|
||||
'Never' => 'Nunca',
|
||||
'On this page you can configure the contents and the interval of these e-mail updates.' => '',
|
||||
'On this page you can define the default behavior for your users. These settings can be overwritten by users in their account settings page.' => '',
|
||||
'Only include spaces below to the mail summary' => '',
|
||||
'Reset to defaults' => '',
|
||||
'On this page you can configure the contents and the interval of these e-mail updates.' => 'En esta página puedes configurar los contenidos y el intervalo de estos correos de actualizaciones.',
|
||||
'On this page you can define the default behavior for your users. These settings can be overwritten by users in their account settings page.' => 'En esta página puedes definir el comportamiento de tus usuarios. Estos ajustes pueden ser sobreescritos por los usuarios en la página de ajustes de su cuenta.',
|
||||
'Only include spaces below to the mail summary' => 'Incluir solo estos espacios en el correo de resumen',
|
||||
'Reset to defaults' => 'Restablecer los valores predeterminados',
|
||||
'Spaces' => 'Espacios',
|
||||
'You will only receive an e-mail if there is something new.' => '',
|
||||
'Your daily summary' => 'Su resumen diario',
|
||||
'You will only receive an e-mail if there is something new.' => 'Solamente recibirás un correo si hay algo nuevo.',
|
||||
'Your daily summary' => 'Tu resumen diario',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'See online:' => '',
|
||||
'see online' => 'Ver online',
|
||||
return array (
|
||||
'See online:' => 'Ver en línea:',
|
||||
'see online' => 'ver en línea',
|
||||
'via' => 'en',
|
||||
];
|
||||
);
|
||||
|
@ -1,21 +1,21 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>E-Mail</strong> Summaries' => '',
|
||||
'<strong>E-Mail</strong> Summaries' => '<strong>邮件</strong> 概要',
|
||||
'Activities' => '启用',
|
||||
'Daily' => '',
|
||||
'E-Mail Summaries' => '',
|
||||
'E-Mail summaries are sent to inform you about recent activities in the network.' => '',
|
||||
'E-Mail summaries are sent to users to inform them about recent activities in your network.' => '',
|
||||
'Exclude spaces below from the mail summary' => '',
|
||||
'Hourly' => '',
|
||||
'Interval' => '',
|
||||
'Daily' => '日报',
|
||||
'E-Mail Summaries' => '邮件概要',
|
||||
'E-Mail summaries are sent to inform you about recent activities in the network.' => '发送电子邮件摘要通知你最近的网络活动。',
|
||||
'E-Mail summaries are sent to users to inform them about recent activities in your network.' => '发送电子邮件摘要给用户通知他们最近的活动。',
|
||||
'Exclude spaces below from the mail summary' => '排除以下空间',
|
||||
'Hourly' => '小时任务',
|
||||
'Interval' => '间隔',
|
||||
'Latest news' => '最新消息',
|
||||
'Never' => '从不',
|
||||
'On this page you can configure the contents and the interval of these e-mail updates.' => '',
|
||||
'On this page you can define the default behavior for your users. These settings can be overwritten by users in their account settings page.' => '',
|
||||
'Only include spaces below to the mail summary' => '',
|
||||
'Reset to defaults' => '',
|
||||
'On this page you can configure the contents and the interval of these e-mail updates.' => '在此页上,你可以配置电子邮件的内容和更新时间间隔',
|
||||
'On this page you can define the default behavior for your users. These settings can be overwritten by users in their account settings page.' => '在此页中,您可以为用户定义默认行为。这些设置可以通过他们在自己的帐户设置页面里设置来覆盖。',
|
||||
'Only include spaces below to the mail summary' => '包含以下空间',
|
||||
'Reset to defaults' => '重置为默认',
|
||||
'Spaces' => '空间',
|
||||
'You will only receive an e-mail if there is something new.' => '',
|
||||
'You will only receive an e-mail if there is something new.' => '如果有新的动态,你会收到邮件。',
|
||||
'Your daily summary' => '你的日常',
|
||||
);
|
||||
|
@ -17,7 +17,7 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'See online:' => '',
|
||||
'See online:' => '在线看:',
|
||||
'see online' => '看在线',
|
||||
'via' => '通过',
|
||||
];
|
||||
|
@ -110,13 +110,7 @@ class SettingController extends Controller
|
||||
return $this->redirect(['/admin/setting/caching']);
|
||||
}
|
||||
|
||||
$cacheTypes = array(
|
||||
'yii\caching\DummyCache' => Yii::t('AdminModule.controllers_SettingController', 'No caching (Testing only!)'),
|
||||
'yii\caching\FileCache' => Yii::t('AdminModule.controllers_SettingController', 'File'),
|
||||
'yii\caching\ApcCache' => Yii::t('AdminModule.controllers_SettingController', 'APC'),
|
||||
);
|
||||
|
||||
return $this->render('caching', array('model' => $form, 'cacheTypes' => $cacheTypes));
|
||||
return $this->render('caching', array('model' => $form, 'cacheTypes' => $form->getTypes()));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,28 +1,28 @@
|
||||
<?php
|
||||
return array (
|
||||
'About' => 'Acerca de',
|
||||
'Add purchased module by licence key' => '',
|
||||
'Add purchased module by licence key' => 'Agregar licencia de módulo comprado',
|
||||
'Admin' => 'Administrador',
|
||||
'Administration' => 'Administración',
|
||||
'Approval' => '',
|
||||
'Approval' => 'Aprobación',
|
||||
'Authentication' => 'Autenticación',
|
||||
'Back to overview' => 'Regresar a la vista previa',
|
||||
'Basic' => 'Básica',
|
||||
'Caching' => 'Caché',
|
||||
'Cronjobs' => '',
|
||||
'Cronjobs' => 'Tareas programadas',
|
||||
'Design' => 'Diseño',
|
||||
'Files' => 'Archivos',
|
||||
'Groups' => 'Grupos',
|
||||
'Logging' => 'Registro',
|
||||
'Mailing' => 'Correos',
|
||||
'Modules' => 'Módulos',
|
||||
'OEmbed providers' => '',
|
||||
'OEmbed providers' => 'Proveedores OEmbed',
|
||||
'Proxy' => 'Proxy',
|
||||
'Security' => 'Seguridad',
|
||||
'Self test' => '',
|
||||
'Self test' => 'Auto prueba',
|
||||
'Spaces' => 'Espacios',
|
||||
'Statistics' => 'Estadísticas',
|
||||
'User posts' => '',
|
||||
'Userprofiles' => '',
|
||||
'User posts' => 'Publicaciones de usuario',
|
||||
'Userprofiles' => 'Perfiles de usuario',
|
||||
'Users' => 'Usuarios',
|
||||
);
|
||||
|
@ -1,22 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
return array (
|
||||
'Account Request for \'{displayName}\' has been approved.' => 'La solicitud de cuenta para \'{displayName}\' ha sido aprobada.',
|
||||
'Account Request for \'{displayName}\' has been declined.' => 'La solicitud de cuenta para \'{displayName}\' ha sido denegada.',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account has been activated.<br><br>
|
||||
@ -25,14 +10,12 @@ return [
|
||||
<a href=\'{loginURL}\'>{loginURL}</a><br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
{AdminName}<br><br>' => 'Hola {displayName},<br><br> tu cuenta ha sido activada.<br><br> Clic aquí para ingresar:<br> <a href=\'{loginURL}\'>{loginURL}</a><br><br> Saludos<br> {AdminName}<br><br>',
|
||||
'Hello {displayName},<br><br>
|
||||
|
||||
your account request has been declined.<br><br>
|
||||
|
||||
Kind Regards<br>
|
||||
{AdminName}<br><br>' => '',
|
||||
'Account Request for \'{displayName}\' has been approved.' => 'La solicitud de cuenta para \'{displayName}\' ha sido aprobada.',
|
||||
'Account Request for \'{displayName}\' has been declined.' => 'La solicitud de cuenta para \'{displayName}\' ha sido denegada.',
|
||||
{AdminName}<br><br>' => 'Hola {displayName},<br><br> tu cuenta ha sido rechazada.<br><br> Saludos<br> {AdminName}<br><br>',
|
||||
'User not found!' => '¡Usuario no encontrado!',
|
||||
];
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Group user not found!' => '',
|
||||
'No value found!' => '',
|
||||
'User is already a member of this group.' => '',
|
||||
return array (
|
||||
'Group not found!' => '¡Grupo no encontrado!',
|
||||
];
|
||||
'Group user not found!' => '¡Usuario de grupo no encontrado!',
|
||||
'No value found!' => '¡Valor no encontrado!',
|
||||
'User is already a member of this group.' => 'Este usuario ya es miembro de este grupo.',
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Add Groups...' => '',
|
||||
'Select Groups' => '',
|
||||
return array (
|
||||
'Add Groups...' => 'Agregar grupos...',
|
||||
'Become this user' => 'Convertirse en este usuario',
|
||||
'Delete' => 'Borrar',
|
||||
'Disabled' => 'Deshabilitado',
|
||||
'Enabled' => 'Habilitado',
|
||||
'Save' => 'Guardado',
|
||||
'Select Groups' => 'Seleccionar grupos',
|
||||
'Unapproved' => 'Desaprobado',
|
||||
'User not found!' => '¡Usuario no encontrado!',
|
||||
'You cannot delete yourself!' => '¡No te puedes borrar a tí mismo!',
|
||||
];
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'E-Mail Address Attribute' => '',
|
||||
return array (
|
||||
'Base DN' => 'DN de base',
|
||||
'E-Mail Address Attribute' => 'Atributo de dirección de correo',
|
||||
'Enable LDAP Support' => 'Activar soporte LDAP',
|
||||
'Encryption' => 'Cifrado',
|
||||
'Fetch/Update Users Automatically' => 'Cargar/actualizar usuarios automáticamente',
|
||||
@ -29,4 +12,4 @@ return [
|
||||
'User Filer' => 'Filtro de usuario',
|
||||
'Username' => 'Nombre de usuario',
|
||||
'Username Attribute' => 'Atributo del nombre de usuario',
|
||||
];
|
||||
);
|
||||
|
@ -1,35 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Date input format' => '',
|
||||
'Default stream content order' => '',
|
||||
'Enable user friendship system' => '',
|
||||
'Horizontal scrolling images on a mobile device' => '',
|
||||
'Server Timezone' => '',
|
||||
'Sort by creation date' => '',
|
||||
'Sort by update date' => '',
|
||||
return array (
|
||||
'Base URL' => 'URL Base',
|
||||
'Date input format' => 'Formato de fecha',
|
||||
'Default language' => 'Idioma por defecto',
|
||||
'Default space' => 'Espacio por defecto',
|
||||
'Default stream content order' => 'Orden del contenido de Actividad',
|
||||
'Enable user friendship system' => 'Activar el Sistema de Amigos',
|
||||
'Horizontal scrolling images on a mobile device' => 'Desplazamiento horizontal en dispositivos móviles',
|
||||
'Invalid space' => 'Espacio no válido',
|
||||
'Logo upload' => 'Subir logo',
|
||||
'Name of the application' => 'Nombre de la aplicación',
|
||||
'Server Timezone' => 'Zona horaria del Servidor',
|
||||
'Show introduction tour for new users' => 'Mostrar guía de introducción a los nuevos usuarios',
|
||||
'Show user profile post form on dashboard' => 'Mostrar el formulario para escribir entradas en Inicio',
|
||||
];
|
||||
'Sort by creation date' => 'Ordenar por fecha de creación',
|
||||
'Sort by update date' => 'Ordenar por fecha de actualización',
|
||||
);
|
||||
|
@ -1,27 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'1 month' => '',
|
||||
'1 week' => '',
|
||||
'1 year' => '',
|
||||
'2 weeks' => '',
|
||||
'3 months' => '',
|
||||
'6 months' => '',
|
||||
'never' => '',
|
||||
];
|
||||
return array (
|
||||
'1 month' => '1 mes',
|
||||
'1 week' => '1 semana',
|
||||
'1 year' => '1 año',
|
||||
'2 weeks' => '2 semanas',
|
||||
'3 months' => '3 meses',
|
||||
'6 months' => '6 meses',
|
||||
'never' => 'nunca',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Default Content Visiblity' => '',
|
||||
return array (
|
||||
'Default Content Visiblity' => 'Visibilidad de contenido predeterminada',
|
||||
'Default Join Policy' => 'Política de unión por defecto',
|
||||
'Default Visibility' => 'Visibilidad por defecto',
|
||||
];
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Maximum allowed age for logs.' => '',
|
||||
return array (
|
||||
'HTML tracking code' => 'Código de seguimiento HTML',
|
||||
];
|
||||
'Maximum allowed age for logs.' => 'Edad máxima para los logs.',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Administrative group' => '',
|
||||
];
|
||||
return array (
|
||||
'Administrative group' => 'Grupo administrativo',
|
||||
);
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return array (
|
||||
'About HumHub' => '',
|
||||
'CronJobs' => '',
|
||||
'About HumHub' => 'Acerca de HumHub',
|
||||
'CronJobs' => 'Tareas programadas',
|
||||
'Database' => 'Base de datos',
|
||||
'Logging' => 'Registro',
|
||||
'Prerequisites' => '',
|
||||
'Prerequisites' => 'Pre-requisitos',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'Advanced' => '',
|
||||
'Advanced' => 'Avanzado',
|
||||
'Basic' => 'Básica',
|
||||
'General' => 'General',
|
||||
'Permissions' => '',
|
||||
'Permissions' => 'Permisos',
|
||||
);
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'Installed' => 'Instalado',
|
||||
'No modules found!' => '¡¡No se han encontrado módulos!',
|
||||
'No purchased modules found!' => '',
|
||||
'No modules found!' => '¡No se han encontrado módulos!',
|
||||
'No purchased modules found!' => 'No se encontraron módulos comprados',
|
||||
'Register' => 'Registrarse',
|
||||
'Search' => 'Buscar',
|
||||
'Third-party' => '',
|
||||
'search for available modules online' => '',
|
||||
'Third-party' => 'Terceros',
|
||||
'search for available modules online' => 'buscar módulos disponibles en línea',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Ok' => 'Ok',
|
||||
'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => '',
|
||||
'Third-party disclaimer' => '',
|
||||
'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => 'Los desarrolladores de HumHub no proporcionan soporte para los módulos de terceros y no dan ninguna garantía sobre la idoneidad, funcionalidad o seguridad de este módulo.',
|
||||
'Third-party disclaimer' => 'Aviso de responsabilidad de terceros',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'There is a new HumHub Version ({version}) available.' => '',
|
||||
];
|
||||
return array (
|
||||
'There is a new HumHub Version ({version}) available.' => 'Hay una nueva versión de HumHub ({versión}) disponible.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Administrative' => '',
|
||||
'Receive Notifications for administrative events like available updates.' => '',
|
||||
];
|
||||
return array (
|
||||
'Administrative' => 'Administrativo',
|
||||
'Receive Notifications for administrative events like available updates.' => 'Recibir notificaciones para eventos administrativos como actualizaciones disponibles.',
|
||||
);
|
||||
|
@ -1,14 +1,14 @@
|
||||
<?php
|
||||
return array (
|
||||
'Advanced Settings' => '',
|
||||
'Appearance Settings' => '',
|
||||
'Advanced Settings' => 'Ajustes avanzados',
|
||||
'Appearance Settings' => 'Ajustes de apariencia',
|
||||
'General' => 'General',
|
||||
'General Settings' => '',
|
||||
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => '',
|
||||
'Here you can configure basic settings of your social network.' => '',
|
||||
'General Settings' => 'Ajustes generales',
|
||||
'Here you can configurate the registration behaviour and additinal user settings of your social network.' => 'Aquí puede configurar el comportamiento de registro y la configuración de usuario adicional de su red social.',
|
||||
'Here you can configure basic settings of your social network.' => 'Aquí puede configurar los ajustes básicos de su red social.',
|
||||
'LDAP' => 'LDAP',
|
||||
'Notification Settings' => '',
|
||||
'These settings refer to advanced topics of your social network.' => '',
|
||||
'These settings refer to the appearance of your social network.' => '',
|
||||
'User Settings' => '',
|
||||
'Notification Settings' => 'Configuración de las notificaciones',
|
||||
'These settings refer to advanced topics of your social network.' => 'Estos ajustes se refieren a temas avanzados de su red social.',
|
||||
'These settings refer to the appearance of your social network.' => 'Estos ajustes se refieren a la apariencia de su red social.',
|
||||
'User Settings' => 'Ajustes de usuario',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Add new space' => '',
|
||||
];
|
||||
return array (
|
||||
'Add new space' => 'Agregar nuevo espacio',
|
||||
);
|
||||
|
@ -1,29 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'<strong>Information</strong>' => '',
|
||||
'<strong>Settings</strong> and Configuration' => '',
|
||||
'<strong>User</strong> administration' => '',
|
||||
'Add new group' => '',
|
||||
'Manage group: {groupName}' => '',
|
||||
'Pending approvals' => '',
|
||||
'Profiles' => '',
|
||||
return array (
|
||||
'<strong>Information</strong>' => '<strong>Información</strong>',
|
||||
'<strong>Settings</strong> and Configuration' => '<strong>Ajustes</strong> y Configuración',
|
||||
'<strong>User</strong> administration' => 'Administración de <strong>Usuarios</strong>',
|
||||
'Add new group' => 'Agregar un nuevo grupo',
|
||||
'Groups' => 'Grupos',
|
||||
'Manage group: {groupName}' => 'Administrar grupo: {groupName}',
|
||||
'Overview' => 'Resumen',
|
||||
];
|
||||
'Pending approvals' => 'Aprobaciones pendientes',
|
||||
'Profiles' => 'Perfiles',
|
||||
);
|
||||
|
@ -1,26 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'HumHub is currently in debug mode. Disable it when running on production!' => '',
|
||||
'See installation manual for more details.' => '',
|
||||
return array (
|
||||
'Currently installed version: %currentVersion%' => 'Versión instalada actualmente: %currentVersion%',
|
||||
'HumHub is currently in debug mode. Disable it when running on production!' => 'HumHub está actualmente en modo de depuración. ¡Deshabilitarlo cuando se ejecute en la producción!',
|
||||
'Licences' => 'Licencias',
|
||||
'See installation manual for more details.' => 'Consulte el manual de instalación para obtener más detalles.',
|
||||
'There is a new update available! (Latest version: %version%)' => '¡Hay una nueva versión disponible! (Última versión: %version%)',
|
||||
'This HumHub installation is up to date!' => '¡Esta instalación de HumHub ya está actualizada!',
|
||||
];
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Actions' => '',
|
||||
'Pending user approvals' => '',
|
||||
'The following list contains all registered users awaiting an approval.' => '',
|
||||
];
|
||||
return array (
|
||||
'Actions' => 'Acciones',
|
||||
'Pending user approvals' => 'Aprobaciones de usuario pendientes',
|
||||
'The following list contains all registered users awaiting an approval.' => 'La siguiente lista contiene todos los usuarios registrados que esperan una aprobación.',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Actions' => '',
|
||||
'Manage groups' => '',
|
||||
'Actions' => 'Acciones',
|
||||
'Manage groups' => 'Gestionar grupos',
|
||||
'Members' => 'Miembros',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add new members...' => '',
|
||||
'Add new members...' => 'Agregar nuevos usuarios...',
|
||||
'No' => 'No',
|
||||
'Remove from group' => '',
|
||||
'Remove from group' => 'Remover del grupo',
|
||||
'Yes' => 'Sí',
|
||||
);
|
||||
|
@ -2,6 +2,6 @@
|
||||
return array (
|
||||
'Create new group' => 'Crear nuevo grupo',
|
||||
'Members' => 'Miembros',
|
||||
'Permissions' => '',
|
||||
'Users can be assigned to different groups (e.g. teams, departments etc.) with specific standard spaces, group managers and permissions.' => '',
|
||||
'Permissions' => 'Permisos',
|
||||
'Users can be assigned to different groups (e.g. teams, departments etc.) with specific standard spaces, group managers and permissions.' => 'Los usuarios pueden asignarse a diferentes grupos (por ejemplo, equipos, departamentos, etc.) con espacios estándar específicos, administradores de grupo y permisos.',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Purchases' => '',
|
||||
return array (
|
||||
'Available updates' => 'Actualizaciones disponibles',
|
||||
'Browse online' => 'Explorar en línea',
|
||||
'Installed' => 'Instalado',
|
||||
'Modules extend the functionality of HumHub. Here you can install and manage modules from the HumHub Marketplace.' => 'Los módulos permiten extender las funcionalidades de HumHub. Aquí puedes instalar y configurar módulos de la HumHub Marketplace.',
|
||||
];
|
||||
'Purchases' => 'Compras',
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Enable module...' => '',
|
||||
return array (
|
||||
'<strong>Modules</strong> directory' => 'Directorio de <strong>módulos</strong>',
|
||||
'Are you sure? *ALL* module data will be lost!' => '¿Estás seguro? ¡*TODOS* los datos del módulo se perderán!',
|
||||
'Are you sure? *ALL* module related data and files will be lost!' => '¿Estás seguro? ¡*TODOS* los archivos y datos relacionados con el módulo se perderán!',
|
||||
'Configure' => 'Configurar',
|
||||
'Disable' => 'Deshabilitar',
|
||||
'Enable' => 'Habilitar',
|
||||
'Enable module...' => 'Activar módulo...',
|
||||
'More info' => 'Más información',
|
||||
'Set as default' => 'Establecer como predeterminado',
|
||||
'Uninstall' => 'Desinstalar',
|
||||
];
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Buy (%price%)' => '',
|
||||
'Disclaimer' => '',
|
||||
'Installing module...' => '',
|
||||
'Licence Key:' => '',
|
||||
return array (
|
||||
'<strong>Modules</strong> directory' => 'Directorio de <strong>módulos</strong> ',
|
||||
'Buy (%price%)' => 'Comprar (%price%)',
|
||||
'Disclaimer' => 'Aviso legal',
|
||||
'Install' => 'Instalar',
|
||||
'Installing module...' => 'Instalando módulo...',
|
||||
'Latest compatible version:' => 'Última versión compatible:',
|
||||
'Latest version:' => 'Última versión:',
|
||||
'Licence Key:' => 'Número de licencia:',
|
||||
'More info' => 'Más información',
|
||||
'No compatible module version found!' => '¡No se encontró un versión compatible del módulo!',
|
||||
];
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Updating module...' => '',
|
||||
return array (
|
||||
'<strong>Modules</strong> directory' => 'Directorio de <strong>módulos</strong> ',
|
||||
'Installed version:' => 'Versión instalada:',
|
||||
'Latest compatible Version:' => 'Última versión compatible:',
|
||||
'Update' => 'Actualizar',
|
||||
];
|
||||
'Updating module...' => 'Actualizando módulo...',
|
||||
);
|
||||
|
@ -5,6 +5,6 @@ return array (
|
||||
'Min value is 20 seconds. If not set, session will timeout after 1400 seconds (24 minutes) regardless of activity (default session timeout)' => 'El valor mínimo son 20 segundos. Si la casilla está vacía, la sesión se terminará automáticamente después de 1400 segundos (24 minutos) si no hay actividad.',
|
||||
'Only applicable when limited access for non-authenticated users is enabled. Only affects new users.' => 'Sólo aplicable cuando hay acceso limitado activado para los usuarios no autentificados. Sólo afecta a los usuarios nuevos.',
|
||||
'Save' => 'Guardar',
|
||||
'Visible for members only' => '',
|
||||
'Visible for members+guests' => '',
|
||||
'Visible for members only' => 'Visible para miembros únicamente',
|
||||
'Visible for members+guests' => 'Visible para miembros + invitados',
|
||||
);
|
||||
|
@ -1,25 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'LDAP Attribute for E-Mail Address. Default: "mail"' => '',
|
||||
return array (
|
||||
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'Una conexión TLS/SSL es altamente recomendada en entornos de producción para evitar que las contraseñas se transmitan en texto claro.',
|
||||
'Defines the filter to apply, when login is attempted. %s replaces the username in the login action. Example: "(sAMAccountName=%s)" or "(uid=%s)"' => 'Define el filtro que aplicar cuando se intenta iniciar sesión. %s reemplaza el nombre de usuario en la acción de iniciar sesión. Ejemplo: quot;(sAMAccountName=%s)" o "(uid=%s)"',
|
||||
'LDAP Attribute for E-Mail Address. Default: "mail"' => 'Atributo para dirección de correo LDAP. Default: "mail"',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => 'Atributo LDAP para el nombre de usuario. Ejemplo: "uid" o "sAMAccountName"',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => 'Limita el acceso a usuarios que cumplan estos criterios. Ejemplo: "(objectClass=posixAccount)" o "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"',
|
||||
'Save' => 'Guardar',
|
||||
@ -28,4 +11,4 @@ return [
|
||||
'The default base DN used for searching for accounts.' => 'El DN base por defecto usado para buscar cuentas.',
|
||||
'The default credentials password (used only with username above).' => 'La contraseña de las credenciales por defecto (usada sólo con el nombre de usuario de arriba).',
|
||||
'The default credentials username. Some servers require that this be in DN form. This must be given in DN form if the LDAP server requires a DN to bind and binding should be possible with simple usernames.' => 'El nombre de usuario de las credenciales por defecto. Algunos servidores requieren que este esté en formato DN. Este tiene que estar en formato DN si el servidor LDAP requiere un DN para unirse y la unión debería ser posible con nombres de usuario simples.',
|
||||
];
|
||||
);
|
||||
|
@ -1,27 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Auto format based on user language - Example: {example}' => '',
|
||||
'Fixed format (mm/dd/yyyy) - Example: {example}' => '',
|
||||
return array (
|
||||
'Alphabetical' => 'Alfabético',
|
||||
'Auto format based on user language - Example: {example}' => 'Formato automático basado en el lenguaje del usuario - Ejemplo: {example}',
|
||||
'Firstname Lastname (e.g. John Doe)' => 'Nombre y Apellido (p.ej. John Doe)',
|
||||
'Fixed format (mm/dd/yyyy) - Example: {example}' => 'Formato fijo (mm/dd/aaa) - Ejemplo: {example}',
|
||||
'Last visit' => 'Última visita',
|
||||
'Save' => 'Guardar',
|
||||
'Username (e.g. john)' => 'Usuario (p.ej. john)',
|
||||
];
|
||||
);
|
||||
|
@ -1,29 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'<strong>Confirm</strong> image deletion' => '',
|
||||
'Friendship' => '',
|
||||
'New users will automatically be added to these space(s).' => '',
|
||||
'Wall entry layout' => '',
|
||||
return array (
|
||||
'<strong>Confirm</strong> image deletion' => '<strong>Confirmar</strong> borrar imagen',
|
||||
'Dashboard' => 'Inicio',
|
||||
'Delete' => 'Borrar',
|
||||
'E.g. http://example.com/humhub' => 'P.ej. http://example.com/humhub',
|
||||
'Friendship' => 'Amistad',
|
||||
'New users will automatically be added to these space(s).' => 'Los nuevos usuarios se agregarán automáticamente a estos espacios.',
|
||||
'Save' => 'Guardar',
|
||||
'Wall entry layout' => 'Diseño de la entrada del Muro',
|
||||
'You\'re using no logo at the moment. Upload your logo now.' => 'No estás usando un logo ahora. Sube tu logo ahora.',
|
||||
];
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Currently there are {count} records in the database dating from {dating}.' => '',
|
||||
'Old logs can significantly increase the size of your database while providing little information.' => '',
|
||||
'Currently there are {count} records in the database dating from {dating}.' => 'Actualmente hay {count} registros en la base de datos que data de {dating}.',
|
||||
'Old logs can significantly increase the size of your database while providing little information.' => 'Registros antiguos pueden aumentar significativamente el tamaño de su base de datos, proporcionando poca información.',
|
||||
'Save' => 'Guardar',
|
||||
);
|
||||
|
@ -1,23 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Enabled OEmbed providers' => '',
|
||||
return array (
|
||||
'Add new provider' => 'Añadir nuevo proveedor',
|
||||
'Currently no provider active!' => '¡No hay ningún proveedor activo!',
|
||||
];
|
||||
'Enabled OEmbed providers' => 'Proveedores de OEmbed activados',
|
||||
);
|
||||
|
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
return array (
|
||||
'Add OEmbed provider' => '',
|
||||
'Add OEmbed provider' => 'Agregar proveedor de OEmbed',
|
||||
'Back to overview' => 'Regresar a la vista previa',
|
||||
'Delete' => 'Eliminar',
|
||||
'Edit OEmbed provider' => '',
|
||||
'Edit OEmbed provider' => 'Editar proveedor de OEmbed',
|
||||
'Save' => 'Guardar',
|
||||
'Url Prefix without http:// or https:// (e.g. youtube.com)' => 'Prefijo URL sin http:// o https:// (p.ej. youtube.com)',
|
||||
'Use %url% as placeholder for URL. Format needs to be JSON. (e.g. http://www.youtube.com/oembed?url=%url%&format=json)' => 'Usa %url% como marcador para la URL. El formato necesario es JSON. (p.ej. http://www.youtube.com/oembed?url=%url%&format=json) ',
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'You can add an statistics HTML code snippet - which will added to all rendered pags.' => '',
|
||||
return array (
|
||||
'Save' => 'Guardar',
|
||||
];
|
||||
'You can add an statistics HTML code snippet - which will added to all rendered pags.' => 'Puede agregar un fragmento de código HTML de estadísticas, que se agregará a todas las páginas renderizadas.',
|
||||
);
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Manage</strong> spaces' => '<strong>Gestionar</strong> espacios',
|
||||
'Actions' => '',
|
||||
'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => '',
|
||||
'Actions' => 'Acciones',
|
||||
'Here you can define your default settings for new spaces. These settings can be overwritten for each individual space.' => 'Aquí puede definir la configuración predeterminada para los espacios nuevos. Estos ajustes se pueden sobrescribir para cada espacio individual.',
|
||||
'Overview' => 'Resúmen',
|
||||
'Settings' => 'Configuraciones',
|
||||
'Spaces' => 'Espacios',
|
||||
'This overview contains a list of each space with actions to view, edit and delete spaces.' => '',
|
||||
'This overview contains a list of each space with actions to view, edit and delete spaces.' => 'Esta vista general contiene una lista de cada espacio con acciones para ver, editar y eliminar espacios.',
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Space Settings' => '',
|
||||
return array (
|
||||
'Save' => 'Guardar',
|
||||
];
|
||||
'Space Settings' => 'Ajustes del espacio',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Edit user: {name}' => '',
|
||||
];
|
||||
return array (
|
||||
'Edit user: {name}' => 'Editar usuario: {name}',
|
||||
);
|
||||
|
@ -1,30 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Actions' => '',
|
||||
'Group Manager' => '',
|
||||
'Last login' => '',
|
||||
'Send invite' => '',
|
||||
'This overview contains a list of each registered user with actions to view, edit and delete users.' => '',
|
||||
'never' => '',
|
||||
return array (
|
||||
'Actions' => 'Acciones',
|
||||
'Add new user' => 'Añadir nuevo usuario',
|
||||
'Group Manager' => 'Administrador de Grupo',
|
||||
'Last login' => 'Último registro',
|
||||
'Overview' => 'Resúmen',
|
||||
'Send invite' => 'Enviar invitación',
|
||||
'Settings' => 'Ajustes',
|
||||
'This overview contains a list of each registered user with actions to view, edit and delete users.' => 'Esta vista contiene una lista de cada usuario registrado con acciones para ver, editar y eliminar usuarios.',
|
||||
'Users' => 'Usuarios',
|
||||
];
|
||||
'never' => 'Nunca',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Create new profile category' => '',
|
||||
'Edit profile category' => '',
|
||||
return array (
|
||||
'Create new profile category' => 'Crear nueva categoría de perfil',
|
||||
'Delete' => 'Borrar',
|
||||
'Edit profile category' => 'Editar categoría de perfil',
|
||||
'Save' => 'Guardar',
|
||||
];
|
||||
);
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Create new profile field' => '',
|
||||
'Edit profile field' => '',
|
||||
];
|
||||
return array (
|
||||
'Create new profile field' => 'Crear nuevo campo de perfil',
|
||||
'Edit profile field' => 'Editar campo de perfil',
|
||||
);
|
||||
|
@ -1,24 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Here you can create or edit profile categories and fields.' => '',
|
||||
'Manage profile attributes' => '',
|
||||
return array (
|
||||
'Add new category' => 'Añadir nueva categoría',
|
||||
'Add new field' => 'Añadir nuevo campo',
|
||||
];
|
||||
'Here you can create or edit profile categories and fields.' => 'Aquí puedes crear o editar categorías y campos de perfil.',
|
||||
'Manage profile attributes' => 'Gestionar atributos de perfil',
|
||||
);
|
||||
|
@ -1,17 +1,17 @@
|
||||
<?php
|
||||
return array (
|
||||
'<strong>Administration</strong> menu' => 'Menú de <strong>administración</strong>',
|
||||
'Advanced' => '',
|
||||
'Appearance' => '',
|
||||
'Advanced' => 'Avanzado',
|
||||
'Appearance' => 'Apariencia',
|
||||
'Caching' => 'Caché',
|
||||
'E-Mail summaries' => '',
|
||||
'E-Mail summaries' => 'Resúmenes de Correo',
|
||||
'Files' => 'Archivos',
|
||||
'General' => 'General',
|
||||
'Information' => '',
|
||||
'Logs' => '',
|
||||
'Information' => 'Información',
|
||||
'Logs' => 'Logs',
|
||||
'Modules' => 'Módulos',
|
||||
'Notifications' => 'Notificaciones',
|
||||
'OEmbed' => '',
|
||||
'OEmbed' => 'OEmbed',
|
||||
'Proxy' => 'Proxy',
|
||||
'Settings' => 'Ajustes',
|
||||
'Spaces' => 'Espacios',
|
||||
|
@ -17,7 +17,7 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'User is already a member of this group.' => '',
|
||||
'User is already a member of this group.' => '用户已经是这个组的成员了。',
|
||||
'Group not found!' => '组未找到',
|
||||
'Group user not found!' => '用户组没有找到!',
|
||||
'No value found!' => '没有发现值',
|
||||
|
@ -17,8 +17,8 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Add Groups...' => '',
|
||||
'Select Groups' => '',
|
||||
'Add Groups...' => '增加组...',
|
||||
'Select Groups' => '选择组',
|
||||
'Become this user' => '成为这个用户',
|
||||
'Delete' => '删除',
|
||||
'Disabled' => '生效',
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'1 month' => '',
|
||||
'1 week' => '',
|
||||
'1 year' => '',
|
||||
'2 weeks' => '',
|
||||
'3 months' => '',
|
||||
'6 months' => '',
|
||||
'1 month' => '1个月',
|
||||
'1 week' => '1周',
|
||||
'1 year' => '1年',
|
||||
'2 weeks' => '两周',
|
||||
'3 months' => '3个月',
|
||||
'6 months' => '6个月',
|
||||
'never' => '从不',
|
||||
);
|
||||
|
@ -17,6 +17,6 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Maximum allowed age for logs.' => '',
|
||||
'Maximum allowed age for logs.' => '日志允许的最长时间。',
|
||||
'HTML tracking code' => 'HTML的跟踪代码',
|
||||
];
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Ok' => 'Ok',
|
||||
'Ok' => '好',
|
||||
'The HumHub developers provide no support for third-party modules and neighter give any guarantee about the suitability, functionality or security of this module.' => 'humhub开发商不对第三方模块的功能或安全提供任何保障。',
|
||||
'Third-party disclaimer' => '第三方申明',
|
||||
);
|
||||
|
@ -17,6 +17,6 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Administrative' => '',
|
||||
'Receive Notifications for administrative events like available updates.' => '',
|
||||
'Administrative' => '管理',
|
||||
'Receive Notifications for administrative events like available updates.' => '接收管理事件的通知,例如有可用更新。',
|
||||
];
|
||||
|
@ -17,16 +17,16 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Access Admin Information' => '',
|
||||
'Can access the \'Administration -> Information\' section.' => '',
|
||||
'Can manage spaces within the \'Administration -> Spaces\' section (create/edit/delete).' => '',
|
||||
'Can manage user- space- and general-settings.' => '',
|
||||
'Can manage users and groups' => '',
|
||||
'Can manage users and user profiles.' => '',
|
||||
'Can manage modules within the \'Administration -> Modules\' section.' => '',
|
||||
'Manage Groups' => '',
|
||||
'Manage Modules' => '',
|
||||
'Manage Settings' => '',
|
||||
'Manage Spaces' => '',
|
||||
'Manage Users' => '',
|
||||
'Access Admin Information' => '访问管理信息',
|
||||
'Can access the \'Administration -> Information\' section.' => '可以访问 \'管理 -> 信息\'',
|
||||
'Can manage spaces within the \'Administration -> Spaces\' section (create/edit/delete).' => '可以访问 \'管理 -> 空间\'(增加/编辑/删除)',
|
||||
'Can manage user- space- and general-settings.' => '可以管理用户 空间 和常规设置。',
|
||||
'Can manage users and groups' => '可以管理用户和组',
|
||||
'Can manage users and user profiles.' => '可以管理用户和用户属性。',
|
||||
'Cann manage modules within the \'Administration -> Modules\' section.' => '可以访问\'管理 -> 模块管理\'',
|
||||
'Manage Groups' => '管理组',
|
||||
'Manage Modules' => '管理模块',
|
||||
'Manage Settings' => '管理设置',
|
||||
'Manage Spaces' => '管理空间',
|
||||
'Manage Users' => '管理用户',
|
||||
];
|
||||
|
@ -18,7 +18,7 @@
|
||||
*/
|
||||
return [
|
||||
'LDAP' => '',
|
||||
'Notification Settings' => '',
|
||||
'Notification Settings' => '通知设置',
|
||||
'Advanced Settings' => '高级设置',
|
||||
'Appearance Settings' => '外观设置',
|
||||
'General' => '一般',
|
||||
|
@ -17,7 +17,7 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'<strong>Confirm</strong> image deletion' => '',
|
||||
'<strong>Confirm</strong> image deletion' => '<strong>确认</strong> 删除图片',
|
||||
'Dashboard' => '<strong>主面板</strong>',
|
||||
'Delete' => '删除',
|
||||
'E.g. http://example.com/humhub' => '例如 http://example.com/humhub',
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return array (
|
||||
'Currently there are {count} records in the database dating from {dating}.' => '',
|
||||
'Old logs can significantly increase the size of your database while providing little information.' => '',
|
||||
'Currently there are {count} records in the database dating from {dating}.' => '从 {dating} 到目前为止数据库有 {count} 条记录。',
|
||||
'Old logs can significantly increase the size of your database while providing little information.' => '旧日志会明显增加您的数据库的大小,同时提供很少的信息。',
|
||||
'Save' => '保存',
|
||||
);
|
||||
|
@ -4,11 +4,11 @@ return array (
|
||||
'Advanced' => '高级',
|
||||
'Appearance' => '外观',
|
||||
'Caching' => '缓存设置',
|
||||
'E-Mail summaries' => '',
|
||||
'E-Mail summaries' => '邮件概览',
|
||||
'Files' => '附件设置',
|
||||
'General' => '一般',
|
||||
'Information' => '信息',
|
||||
'Logs' => '',
|
||||
'Logs' => '日志',
|
||||
'Modules' => '模块管理',
|
||||
'Notifications' => '通知消息',
|
||||
'OEmbed' => '',
|
||||
|
@ -58,9 +58,9 @@ class CacheSettingsForm extends Model
|
||||
public function getTypes()
|
||||
{
|
||||
return array(
|
||||
'yii\caching\DummyCache' => \Yii::t('AdminModule.forms_CacheSettingsForm', 'No caching (Testing only!)'),
|
||||
'yii\caching\DummyCache' => \Yii::t('AdminModule.forms_CacheSettingsForm', 'No caching'),
|
||||
'yii\caching\FileCache' => \Yii::t('AdminModule.forms_CacheSettingsForm', 'File'),
|
||||
'yii\caching\ApcCache' => \Yii::t('AdminModule.forms_CacheSettingsForm', 'APC'),
|
||||
'yii\caching\ApcCache' => \Yii::t('AdminModule.forms_CacheSettingsForm', 'APC(u)'),
|
||||
);
|
||||
}
|
||||
|
||||
@ -69,8 +69,8 @@ class CacheSettingsForm extends Model
|
||||
*/
|
||||
public function checkCacheType($attribute, $params)
|
||||
{
|
||||
if ($this->type == 'yii\caching\ApcCache' && !function_exists('apc_add')) {
|
||||
$this->addError($attribute, \Yii::t('AdminModule.forms_CacheSettingsForm', "PHP APC Extension missing - Type not available!"));
|
||||
if ($this->type == 'yii\caching\ApcCache' && !function_exists('apc_add') && !function_exists('apc_addu')) {
|
||||
$this->addError($attribute, \Yii::t('AdminModule.forms_CacheSettingsForm', "PHP APC(u) Extension missing - Type not available!"));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Comments' => 'Comentarios',
|
||||
'Whenever a new comment was written.' => '',
|
||||
'Whenever a new comment was written.' => 'Cuando un nuevo comentario sea escrito.',
|
||||
);
|
||||
|
@ -1,30 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'{displayNames} commented {contentTitle}' => '',
|
||||
'{displayNames} commented {contentTitle} in space {space}' => '',
|
||||
'{displayNames} just commented your {contentTitle}' => '',
|
||||
'{displayNames} just commented your {contentTitle} in space {space}' => '',
|
||||
'{displayName} commented {contentTitle}' => '',
|
||||
'{displayName} commented {contentTitle} in space {space}' => '',
|
||||
'{displayName} just commented your {contentTitle}' => '',
|
||||
'{displayName} just commented your {contentTitle} in space {space}' => '',
|
||||
return array (
|
||||
'{displayNames} commented {contentTitle}' => '{displayNames} comentaron {contentTitle}',
|
||||
'{displayNames} commented {contentTitle} in space {space}' => '{displayNames} comentaron {contentTitle} en {space}',
|
||||
'{displayNames} commented {contentTitle}.' => '{displayNames} comentaron en {contentTitle}.',
|
||||
'{displayNames} just commented your {contentTitle}' => '{displayNames} acaban de comentar tu {contentTitle}',
|
||||
'{displayNames} just commented your {contentTitle} in space {space}' => '{displayNames} acaban de comentar tu {contentTitle} en {space}',
|
||||
'{displayName} commented {contentTitle}' => '{displayName} comentó {contentTitle}
|
||||
',
|
||||
'{displayName} commented {contentTitle} in space {space}' => '{displayName} comentó {contentTitle} en {space}',
|
||||
'{displayName} commented {contentTitle}.' => '{displayName} comentó en {contentTitle}.',
|
||||
];
|
||||
'{displayName} just commented your {contentTitle}' => '{displayName} comentó tu {contentTitle}',
|
||||
'{displayName} just commented your {contentTitle} in space {space}' => '{displayName} comentó tu {contentTitle} en {space}',
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Comments' => 'Comentarios',
|
||||
'Receive Notifications when someone comments on my own or a following post.' => '',
|
||||
'Receive Notifications when someone comments on my own or a following post.' => 'Recibir Notificaciones cuando alguien comente en una publicación propia o que esté siguiendo.',
|
||||
);
|
||||
|
@ -1,21 +1,4 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'View Online' => '',
|
||||
];
|
||||
return array (
|
||||
'View Online' => 'Ver en línea',
|
||||
);
|
||||
|
@ -1,29 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Cancel Edit' => '',
|
||||
'Comment has been deleted' => '',
|
||||
'Read full comment...' => '',
|
||||
return array (
|
||||
'<strong>Confirm</strong> comment deleting' => '<strong>Confirmar</strong> la eliminación del comentario',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Cancel Edit' => 'Cancelar edición',
|
||||
'Comment has been deleted' => 'El comentario ha sido borrado',
|
||||
'Delete' => 'Eliminar',
|
||||
'Do you really want to delete this comment?' => '¿Seguro que quieres borrar este comentario?',
|
||||
'Edit' => 'Editar',
|
||||
'Read full comment...' => 'Leer el comentario completo...',
|
||||
'Updated :timeago' => 'Actualizado :timeago',
|
||||
];
|
||||
);
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Comments' => '评论',
|
||||
'Whenever a new comment was written.' => '',
|
||||
'Whenever a new comment was written.' => '每当一个新的评论被书写',
|
||||
);
|
||||
|
@ -17,14 +17,14 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'{displayNames} commented {contentTitle}' => '',
|
||||
'{displayNames} commented {contentTitle} in space {space}' => '',
|
||||
'{displayNames} just commented your {contentTitle}' => '',
|
||||
'{displayNames} just commented your {contentTitle} in space {space}' => '',
|
||||
'{displayName} commented {contentTitle}' => '',
|
||||
'{displayName} commented {contentTitle} in space {space}' => '',
|
||||
'{displayName} just commented your {contentTitle}' => '',
|
||||
'{displayName} just commented your {contentTitle} in space {space}' => '',
|
||||
'{displayNames} commented {contentTitle}' => '{displayNames} 评论了 {contentTitle}',
|
||||
'{displayNames} commented {contentTitle} in space {space}' => '{displayNames} 在空间 {space} 评论了 {contentTitle}',
|
||||
'{displayNames} just commented your {contentTitle}' => '{displayNames} 刚评论了你的 {contentTitle}',
|
||||
'{displayNames} just commented your {contentTitle} in space {space}' => '{displayNames} 刚在空间 {space} 评论了你的 {contentTitle}',
|
||||
'{displayName} commented {contentTitle}' => '{displayName} 评论了 {contentTitle}',
|
||||
'{displayName} commented {contentTitle} in space {space}' => '{displayName} 在空间 {space} 评论了 {contentTitle}',
|
||||
'{displayName} just commented your {contentTitle}' => '{displayName} 刚评论了你的 {contentTitle}',
|
||||
'{displayName} just commented your {contentTitle} in space {space}' => '{displayName} 刚在空间 {space} 评论了你的 {contentTitle}',
|
||||
'{displayNames} commented {contentTitle}.' => '{displayNames} 评论了 {contentTitle}.',
|
||||
'{displayName} commented {contentTitle}.' => '{displayName} 评论了 {contentTitle}.',
|
||||
];
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
return array (
|
||||
'Comments' => '评论',
|
||||
'Receive Notifications when someone comments on my own or a following post.' => '',
|
||||
'Receive Notifications when someone comments on my own or a following post.' => '当有人评论了我的文章或关注我时接收通知。',
|
||||
);
|
||||
|
@ -17,5 +17,5 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'View Online' => '',
|
||||
'View Online' => '在线看',
|
||||
];
|
||||
|
@ -17,9 +17,9 @@
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Cancel Edit' => '',
|
||||
'Comment has been deleted' => '',
|
||||
'Read full comment...' => '',
|
||||
'Cancel Edit' => '取消编辑',
|
||||
'Comment has been deleted' => '评论已被删除',
|
||||
'Read full comment...' => '阅读完整的评论...',
|
||||
'<strong>Confirm</strong> comment deleting' => '<strong>确认</strong> 删除评论',
|
||||
'Cancel' => '取消',
|
||||
'Delete' => '删除',
|
||||
|
@ -1,22 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* Message translations.
|
||||
*
|
||||
* This file is automatically generated by 'yii message/extract' command.
|
||||
* It contains the localizable messages extracted from source code.
|
||||
* You may modify this file by translating the extracted messages.
|
||||
*
|
||||
* Each array element represents the translation (value) of a message (key).
|
||||
* If the value is empty, the message is considered as not translated.
|
||||
* Messages that no longer need translation will have their translations
|
||||
* enclosed between a pair of '@@' marks.
|
||||
*
|
||||
* Message string can be used with plural forms format. Check i18n section
|
||||
* of the guide for details.
|
||||
*
|
||||
* NOTE: this file must be saved in UTF-8 encoding.
|
||||
*/
|
||||
return [
|
||||
'Contents' => '',
|
||||
'Whenever a new content (e.g. post) has been created.' => '',
|
||||
];
|
||||
return array (
|
||||
'Contents' => 'Contenidos',
|
||||
'Whenever a new content (e.g. post) has been created.' => 'Cuando sea que un nuevo contenido sea creado (ej: publicación).',
|
||||
);
|
||||
|
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