Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d4bde46f8 | |||
| cb89ad59af | |||
| 092b5024fe | |||
| 517edf2ced | |||
| 219c28313c | |||
| 311d92202b | |||
| 05cb2ee272 | |||
| f896a2d71a | |||
| dd6704ace5 | |||
| 1dc4d44a65 | |||
| bfb28ea178 | |||
| ec6f3a22f2 | |||
| 5a0c7c330c | |||
| f64df5af87 | |||
| d4dc7a4051 | |||
| d676f85c8f | |||
| ab382f2387 | |||
| 206219c738 | |||
| 37d1c707cb | |||
| 93af1c9bfc | |||
| a021c4c8d5 | |||
| a125244cdf | |||
| 1cfd251c4c | |||
| d2f4f312e5 | |||
| c468b061d9 | |||
| 7bf945f0b6 | |||
| fecbb26cbf | |||
| a5ae33ab81 | |||
| c6fa0e464e | |||
| 38bae6238a | |||
| 79de4c874f | |||
| 814748ec61 | |||
| 1f0ad0cbec | |||
| 7224f566d6 | |||
| eefb01ec4f | |||
| 24d46ed81d | |||
| 37c749faf8 | |||
| 4306a3131e | |||
| 8fa95fcce3 | |||
| b7c41ce640 | |||
| a21be94ed3 | |||
| 9d59edcae2 | |||
| deaa26a355 | |||
| 25d6fb6d82 | |||
| c1bcc44f04 | |||
| fdf8183385 |
@@ -29,12 +29,12 @@
|
||||
|
||||
namespace Espo\Acl;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Attachment extends \Espo\Core\Acl\Base
|
||||
{
|
||||
public function checkEntityRead(User $user, Entity $entity, $data)
|
||||
public function checkEntityRead(EntityUser $user, Entity $entity, $data)
|
||||
{
|
||||
if ($user->isAdmin()) {
|
||||
return true;
|
||||
@@ -82,7 +82,7 @@ class Attachment extends \Espo\Core\Acl\Base
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('createdById')) {
|
||||
return true;
|
||||
|
||||
@@ -29,13 +29,13 @@
|
||||
|
||||
namespace Espo\Acl;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Email extends \Espo\Core\Acl\Base
|
||||
{
|
||||
|
||||
public function checkEntityRead(User $user, Entity $entity, $data)
|
||||
public function checkEntityRead(EntityUser $user, Entity $entity, $data)
|
||||
{
|
||||
if ($this->checkEntity($user, $entity, $data, 'read')) {
|
||||
return true;
|
||||
@@ -60,7 +60,7 @@ class Email extends \Espo\Core\Acl\Base
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('assignedUserId')) {
|
||||
return true;
|
||||
@@ -76,5 +76,46 @@ class Email extends \Espo\Core\Acl\Base
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkEntityDelete(EntityUser $user, Entity $entity, $data)
|
||||
{
|
||||
if ($user->isAdmin()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ($data === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($data->delete === 'own') {
|
||||
if ($user->id === $entity->get('assignedUserId')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ($user->id === $entity->get('createdById')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$assignedUserIdList = $entity->getLinkMultipleIdList('assignedUsers');
|
||||
if (count($assignedUserIdList) === 1 && $entity->hasLinkMultipleId('assignedUsers', $user->id)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($this->checkEntity($user, $entity, $data, 'delete')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ($data->edit !== 'no' || $data->create !== 'no') {
|
||||
if ($entity->get('createdById') === $user->id) {
|
||||
if ($entity->get('status') !== 'Sent' && $entity->get('status') !== 'Archived') {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -29,12 +29,12 @@
|
||||
|
||||
namespace Espo\Acl;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class EmailFilter extends \Espo\Core\Acl\Base
|
||||
{
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($entity->has('parentId') && $entity->has('parentType')) {
|
||||
$parentType = $entity->get('parentType');
|
||||
|
||||
@@ -29,12 +29,12 @@
|
||||
|
||||
namespace Espo\Acl;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Notification extends \Espo\Core\Acl\Base
|
||||
{
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('userId')) {
|
||||
return true;
|
||||
|
||||
@@ -29,12 +29,12 @@
|
||||
|
||||
namespace Espo\AclPortal;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Attachment extends \Espo\Core\AclPortal\Base
|
||||
{
|
||||
public function checkEntityRead(User $user, Entity $entity, $data)
|
||||
public function checkEntityRead(EntityUser $user, Entity $entity, $data)
|
||||
{
|
||||
if ($user->isAdmin()) {
|
||||
return true;
|
||||
@@ -82,7 +82,7 @@ class Attachment extends \Espo\Core\AclPortal\Base
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('createdById')) {
|
||||
return true;
|
||||
|
||||
@@ -29,13 +29,13 @@
|
||||
|
||||
namespace Espo\AclPortal;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Email extends \Espo\Core\AclPortal\Base
|
||||
{
|
||||
|
||||
public function checkEntityRead(User $user, Entity $entity, $data)
|
||||
public function checkEntityRead(EntityUser $user, Entity $entity, $data)
|
||||
{
|
||||
if ($this->checkEntity($user, $entity, $data, 'read')) {
|
||||
return true;
|
||||
@@ -60,7 +60,7 @@ class Email extends \Espo\Core\AclPortal\Base
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('createdById')) {
|
||||
return true;
|
||||
|
||||
@@ -29,12 +29,12 @@
|
||||
|
||||
namespace Espo\AclPortal;
|
||||
|
||||
use \Espo\Entities\User;
|
||||
use \Espo\Entities\User as EntityUser;
|
||||
use \Espo\ORM\Entity;
|
||||
|
||||
class Notification extends \Espo\Core\AclPortal\Base
|
||||
{
|
||||
public function checkIsOwner(User $user, Entity $entity)
|
||||
public function checkIsOwner(EntityUser $user, Entity $entity)
|
||||
{
|
||||
if ($user->id === $entity->get('userId')) {
|
||||
return true;
|
||||
|
||||
@@ -237,9 +237,11 @@ class Record extends Base
|
||||
$ids = $request->get('ids');
|
||||
$where = $request->get('where');
|
||||
$byWhere = $request->get('byWhere');
|
||||
$selectData = $request->get('selectData');
|
||||
|
||||
$params = array();
|
||||
if ($byWhere) {
|
||||
$params['selectData'] = $selectData;
|
||||
$params['where'] = $where;
|
||||
} else {
|
||||
$params['ids'] = $ids;
|
||||
@@ -266,6 +268,9 @@ class Record extends Base
|
||||
$params = array();
|
||||
if (array_key_exists('where', $data) && !empty($data['byWhere'])) {
|
||||
$params['where'] = json_decode(json_encode($data['where']), true);
|
||||
if (array_key_exists('selectData', $data)) {
|
||||
$params['selectData'] = json_decode(json_encode($data['selectData']), true);
|
||||
}
|
||||
} else if (array_key_exists('ids', $data)) {
|
||||
$params['ids'] = $data['ids'];
|
||||
}
|
||||
@@ -290,6 +295,9 @@ class Record extends Base
|
||||
if (array_key_exists('where', $data) && !empty($data['byWhere'])) {
|
||||
$where = json_decode(json_encode($data['where']), true);
|
||||
$params['where'] = $where;
|
||||
if (array_key_exists('selectData', $data)) {
|
||||
$params['selectData'] = json_decode(json_encode($data['selectData']), true);
|
||||
}
|
||||
}
|
||||
if (array_key_exists('ids', $data)) {
|
||||
$params['ids'] = $data['ids'];
|
||||
@@ -318,7 +326,13 @@ class Record extends Base
|
||||
throw new BadRequest();
|
||||
}
|
||||
$where = json_decode(json_encode($data['where']), true);
|
||||
return $this->getRecordService()->linkEntityMass($id, $link, $where);
|
||||
|
||||
$selectData = null;
|
||||
if (isset($data['selectData']) && is_array($data['selectData'])) {
|
||||
$selectData = json_decode(json_encode($data['selectData']), true);
|
||||
}
|
||||
|
||||
return $this->getRecordService()->linkEntityMass($id, $link, $where, $selectData);
|
||||
} else {
|
||||
$foreignIdList = array();
|
||||
if (isset($data['id'])) {
|
||||
@@ -423,5 +437,21 @@ class Record extends Base
|
||||
|
||||
return $this->getRecordService()->merge($targetId, $sourceIds, $attributes);
|
||||
}
|
||||
|
||||
public function postActionGetDuplicateAttributes($params, $data, $request)
|
||||
{
|
||||
if (empty($data['id'])) {
|
||||
throw new BadRequest();
|
||||
}
|
||||
|
||||
if (!$this->getAcl()->check($this->name, 'create')) {
|
||||
throw new Forbidden();
|
||||
}
|
||||
if (!$this->getAcl()->check($this->name, 'read')) {
|
||||
throw new Forbidden();
|
||||
}
|
||||
|
||||
return $this->getRecordService()->getDuplicateAttributes($data['id']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -72,6 +72,9 @@ class Importer
|
||||
$email->set('isBeingImported', true);
|
||||
|
||||
$subject = $message->subject;
|
||||
if (!empty($subject) && is_string($subject)) {
|
||||
$subject = trim($subject);
|
||||
}
|
||||
if ($subject !== '0' && empty($subject)) {
|
||||
$subject = '(No Subject)';
|
||||
}
|
||||
|
||||
@@ -31,6 +31,8 @@ namespace Espo\Core\ORM;
|
||||
|
||||
use \Espo\Core\Interfaces\Injectable;
|
||||
|
||||
use \Espo\ORM\EntityFactory;
|
||||
|
||||
abstract class Repository extends \Espo\ORM\Repository implements Injectable
|
||||
{
|
||||
protected $dependencies = array();
|
||||
|
||||
@@ -47,9 +47,9 @@ class LDAP extends Base
|
||||
*/
|
||||
protected $ldapFieldMap = array(
|
||||
'userName' => 'userNameAttribute',
|
||||
'firstName' => 'userTitleAttribute',
|
||||
'lastName' => 'userFirstNameAttribute',
|
||||
'title' => 'userLastNameAttribute',
|
||||
'firstName' => 'userFirstNameAttribute',
|
||||
'lastName' => 'userLastNameAttribute',
|
||||
'title' => 'userTitleAttribute',
|
||||
'emailAddress' => 'userEmailAddressAttribute',
|
||||
'phoneNumber' => 'userPhoneNumberAttribute',
|
||||
);
|
||||
@@ -108,33 +108,34 @@ class LDAP extends Base
|
||||
|
||||
$ldapClient = $this->getLdapClient();
|
||||
|
||||
//login LDAP admin user (ldapUsername, ldapPassword)
|
||||
//login LDAP system user (ldapUsername, ldapPassword)
|
||||
try {
|
||||
$ldapClient->bind();
|
||||
} catch (\Exception $e) {
|
||||
$options = $this->getUtils()->getLdapClientOptions();
|
||||
$GLOBALS['log']->error('LDAP: Authentication failed for user ['.$options['username'].'], details: ' . $e->getMessage());
|
||||
return;
|
||||
$GLOBALS['log']->error('LDAP: Could not connect to LDAP server ['.$options['host'].'], details: ' . $e->getMessage());
|
||||
|
||||
$adminUser = $this->adminLogin($username, $password);
|
||||
if (!isset($adminUser)) {
|
||||
return null;
|
||||
}
|
||||
$GLOBALS['log']->info('LDAP: Administrator ['.$username.'] was logged in by Espo method.');
|
||||
}
|
||||
|
||||
$userDn = $this->findLdapUserDnByUsername($username);
|
||||
$GLOBALS['log']->debug('Found DN for ['.$username.']: ['.$userDn.'].');
|
||||
if (!isset($userDn)) {
|
||||
$GLOBALS['log']->error('LDAP: Authentication failed for user ['.$username.'], details: user is not found.');
|
||||
return;
|
||||
}
|
||||
if (!isset($adminUser)) {
|
||||
$userDn = $this->findLdapUserDnByUsername($username);
|
||||
$GLOBALS['log']->debug('Found DN for ['.$username.']: ['.$userDn.'].');
|
||||
if (!isset($userDn)) {
|
||||
$GLOBALS['log']->error('LDAP: Authentication failed for user ['.$username.'], details: user is not found.');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
$ldapClient->bind($userDn, $password);
|
||||
} catch (\Exception $e) {
|
||||
|
||||
$admin = $this->adminLogin($username, $password);
|
||||
if (!isset($admin)) {
|
||||
try {
|
||||
$ldapClient->bind($userDn, $password);
|
||||
} catch (\Exception $e) {
|
||||
$GLOBALS['log']->error('LDAP: Authentication failed for user ['.$username.'], details: ' . $e->getMessage());
|
||||
return null;
|
||||
}
|
||||
|
||||
$GLOBALS['log']->info('LDAP: Administrator ['.$username.'] was logged in by Espo method.');
|
||||
}
|
||||
|
||||
$user = $this->getEntityManager()->getRepository('User')->findOne(array(
|
||||
@@ -262,8 +263,8 @@ class LDAP extends Base
|
||||
$loginFilterString = $this->convertToFilterFormat($options['userLoginFilter']);
|
||||
}
|
||||
|
||||
$searchString = '(&(objectClass=user)('.$options['userNameAttribute'].'='.$username.')'.$loginFilterString.')';
|
||||
$result = $ldapClient->search($searchString, null, LDAP\Client::SEARCH_SCOPE_ONE);
|
||||
$searchString = '(&(objectClass='.$options['userObjectClass'].')('.$options['userNameAttribute'].'='.$username.')'.$loginFilterString.')';
|
||||
$result = $ldapClient->search($searchString, null, LDAP\Client::SEARCH_SCOPE_SUB);
|
||||
$GLOBALS['log']->debug('LDAP: user search string: "' . $searchString . '"');
|
||||
|
||||
foreach ($result as $item) {
|
||||
|
||||
@@ -66,6 +66,7 @@ class Utils
|
||||
'userLoginFilter' => 'ldapUserLoginFilter',
|
||||
'userTeamsIds' => 'ldapUserTeamsIds',
|
||||
'userDefaultTeamId' => 'ldapUserDefaultTeamId',
|
||||
'userObjectClass' => 'ldapUserObjectClass',
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -76,6 +77,7 @@ class Utils
|
||||
protected $permittedEspoOptions = array(
|
||||
'createEspoUser',
|
||||
'userNameAttribute',
|
||||
'userObjectClass',
|
||||
'userTitleAttribute',
|
||||
'userFirstNameAttribute',
|
||||
'userLastNameAttribute',
|
||||
|
||||
@@ -373,7 +373,7 @@ class Permission
|
||||
protected function chmodReal($filename, $mode)
|
||||
{
|
||||
try {
|
||||
$result = chmod($filename, $mode);
|
||||
$result = @chmod($filename, $mode);
|
||||
} catch (\Exception $e) {
|
||||
$result = false;
|
||||
}
|
||||
@@ -383,7 +383,7 @@ class Permission
|
||||
$this->chgrp($filename, $this->getDefaultGroup(true));
|
||||
|
||||
try {
|
||||
$result = chmod($filename, $mode);
|
||||
$result = @chmod($filename, $mode);
|
||||
} catch (\Exception $e) {
|
||||
throw new Error($e->getMessage());
|
||||
}
|
||||
@@ -395,7 +395,7 @@ class Permission
|
||||
protected function chownReal($path, $user)
|
||||
{
|
||||
try {
|
||||
$result = chown($path, $user);
|
||||
$result = @chown($path, $user);
|
||||
} catch (\Exception $e) {
|
||||
throw new Error($e->getMessage());
|
||||
}
|
||||
@@ -406,7 +406,7 @@ class Permission
|
||||
protected function chgrpReal($path, $group)
|
||||
{
|
||||
try {
|
||||
$result = chgrp($path, $group);
|
||||
$result = @chgrp($path, $group);
|
||||
} catch (\Exception $e) {
|
||||
throw new Error($e->getMessage());
|
||||
}
|
||||
|
||||
@@ -131,6 +131,7 @@ return array ( 'defaultPermissions' =>
|
||||
'ldapUserTitleAttribute',
|
||||
'ldapUserEmailAddressAttribute',
|
||||
'ldapUserPhoneNumberAttribute',
|
||||
'ldapUserObjectClass',
|
||||
'maxEmailAccountCount',
|
||||
'massEmailMaxPerHourCount',
|
||||
'personalEmailMaxPortionSize',
|
||||
@@ -145,5 +146,6 @@ return array ( 'defaultPermissions' =>
|
||||
'ldapUserTitleAttribute' => 'title',
|
||||
'ldapUserEmailAddressAttribute' => 'mail',
|
||||
'ldapUserPhoneNumberAttribute' => 'telephoneNumber',
|
||||
'ldapUserObjectClass' => 'person',
|
||||
);
|
||||
|
||||
|
||||
@@ -58,11 +58,11 @@ class Stream extends \Espo\Core\Hooks\Base
|
||||
|
||||
protected function checkHasStream(Entity $entity)
|
||||
{
|
||||
$entityName = $entity->getEntityName();
|
||||
if (!array_key_exists($entityName, $this->hasStreamCache)) {
|
||||
$this->hasStreamCache[$entityName] = $this->getMetadata()->get("scopes.{$entityName}.stream");
|
||||
$entityType = $entity->getEntityType();
|
||||
if (!array_key_exists($entityType, $this->hasStreamCache)) {
|
||||
$this->hasStreamCache[$entityType] = $this->getMetadata()->get("scopes.{$entityType}.stream");
|
||||
}
|
||||
return $this->hasStreamCache[$entityName];
|
||||
return $this->hasStreamCache[$entityType];
|
||||
}
|
||||
|
||||
protected function isLinkObservableInStream($scope, $link)
|
||||
@@ -177,7 +177,11 @@ class Stream extends \Espo\Core\Hooks\Base
|
||||
$assignedUserId = $entity->get('assignedUserId');
|
||||
$createdById = $entity->get('createdById');
|
||||
|
||||
if ($this->getConfig()->get('followCreatedEntities') && !empty($createdById)) {
|
||||
if (
|
||||
($this->getConfig()->get('followCreatedEntities') || $this->getUser()->get('isPortalUser'))
|
||||
&&
|
||||
!empty($createdById)
|
||||
) {
|
||||
$userIdList[] = $createdById;
|
||||
}
|
||||
if (!empty($assignedUserId) && !in_array($assignedUserId, $userIdList)) {
|
||||
|
||||
@@ -1,79 +1,81 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Teléfono",
|
||||
"billingAddress": "Dirección de Facturación",
|
||||
"shippingAddress": "Dirección de Envío",
|
||||
"description": "Descripción",
|
||||
"sicCode": "Sic Code",
|
||||
"industry": "Industria",
|
||||
"type": "Tipo",
|
||||
"contactRole": "Título",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Teléfono",
|
||||
"billingAddress": "Dirección de Facturación",
|
||||
"shippingAddress": "Dirección de Envío",
|
||||
"description": "Descripción",
|
||||
"sicCode": "Sic Code",
|
||||
"industry": "Industria",
|
||||
"type": "Tipo",
|
||||
"contactRole": "Título",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contactos",
|
||||
"opportunities": "Oportunidades",
|
||||
"cases": "Casos",
|
||||
"documents": "Documentos",
|
||||
"meetingsPrimary": "Reuniones (ampliado)",
|
||||
"callsPrimary": "Llamadas (ampliado)",
|
||||
"tasksPrimary": "Tareas (ampliado)",
|
||||
"emailsPrimary": "Correos (ampliado)",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña",
|
||||
"portalUsers": "Usuarios del portal"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Customer": "Cliente",
|
||||
"Investor": "Inversor",
|
||||
"Partner": "Socio",
|
||||
"Reseller": "Revendedor"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contactos",
|
||||
"opportunities": "Oportunidades",
|
||||
"cases": "Casos",
|
||||
"documents": "Documentos",
|
||||
"meetingsPrimary": "Reuniones (ampliado)",
|
||||
"callsPrimary": "Llamadas (ampliado)",
|
||||
"tasksPrimary": "Tareas (ampliado)",
|
||||
"emailsPrimary": "Correos (ampliado)",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Customer": "Cliente",
|
||||
"Investor": "Inversor",
|
||||
"Partner": "Socio",
|
||||
"Reseller": "Revendedor"
|
||||
},
|
||||
"industry": {
|
||||
"Agriculture": "Agricultura",
|
||||
"Advertising": "Publicidad",
|
||||
"Apparel & Accessories": "Ropa y Accesorios",
|
||||
"Automotive": "Automotriz",
|
||||
"Banking": "Banca",
|
||||
"Biotechnology": "Biotecnolodía",
|
||||
"Building Materials & Equipment": "Materiales de construcción y equipamiento",
|
||||
"Chemical": "Química",
|
||||
"Computer": "Computación",
|
||||
"Education": "Educación",
|
||||
"Electronics": "Electrónicos",
|
||||
"Energy": "Energía",
|
||||
"Entertainment & Leisure": "Entretenimiento y Ocio",
|
||||
"Finance": "Finanzas",
|
||||
"Food & Beverage": "Alimentación y bebidas",
|
||||
"Grocery": "Comestibles",
|
||||
"Healthcare": "Cuidado de la Salud",
|
||||
"Insurance": "Seguros",
|
||||
"Legal": "Jurídico",
|
||||
"Manufacturing": "Fabricación",
|
||||
"Publishing": "Publicaciones",
|
||||
"Real Estate": "Bienes Raices",
|
||||
"Service": "Servicio",
|
||||
"Sports": "Deportes",
|
||||
"Software": "Software",
|
||||
"Technology": "Tecnología",
|
||||
"Telecommunications": "Telecomunicaciones",
|
||||
"Television": "Televisión",
|
||||
"Transportation": "Transporte",
|
||||
"Venture Capital": "Capital de Riesgo"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Account": "Crear Cuenta",
|
||||
"Copy Billing": "Copia Facturación"
|
||||
},
|
||||
"presetFilters": {
|
||||
"customers": "Clientes",
|
||||
"partners": "Socios"
|
||||
"industry": {
|
||||
"Agriculture": "Agricultura",
|
||||
"Advertising": "Publicidad",
|
||||
"Apparel & Accessories": "Ropa y Accesorios",
|
||||
"Automotive": "Automotriz",
|
||||
"Banking": "Banca",
|
||||
"Biotechnology": "Biotecnolodía",
|
||||
"Building Materials & Equipment": "Materiales de construcción y equipamiento",
|
||||
"Chemical": "Química",
|
||||
"Computer": "Computación",
|
||||
"Education": "Educación",
|
||||
"Electronics": "Electrónicos",
|
||||
"Energy": "Energía",
|
||||
"Entertainment & Leisure": "Entretenimiento y Ocio",
|
||||
"Finance": "Finanzas",
|
||||
"Food & Beverage": "Alimentación y bebidas",
|
||||
"Grocery": "Comestibles",
|
||||
"Healthcare": "Cuidado de la Salud",
|
||||
"Insurance": "Seguros",
|
||||
"Legal": "Jurídico",
|
||||
"Manufacturing": "Fabricación",
|
||||
"Publishing": "Publicaciones",
|
||||
"Real Estate": "Bienes Raices",
|
||||
"Service": "Servicio",
|
||||
"Sports": "Deportes",
|
||||
"Software": "Software",
|
||||
"Technology": "Tecnología",
|
||||
"Telecommunications": "Telecomunicaciones",
|
||||
"Television": "Televisión",
|
||||
"Transportation": "Transporte",
|
||||
"Venture Capital": "Capital de Riesgo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Account": "Crear Cuenta",
|
||||
"Copy Billing": "Copia Facturación"
|
||||
},
|
||||
"presetFilters": {
|
||||
"customers": "Clientes",
|
||||
"partners": "Socios",
|
||||
"recentlyCreated": "Creado recientemente"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"layouts": {
|
||||
"detailConvert": "Convertir Potencial",
|
||||
"listForAccount": "Listado (por Cuentas)"
|
||||
}
|
||||
}
|
||||
"layouts": {
|
||||
"detailConvert": "Convertir Potencial",
|
||||
"listForAccount": "Listado (por Cuentas)"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,20 @@
|
||||
{
|
||||
"modes": {
|
||||
"month": "Mes",
|
||||
"week": "Semana",
|
||||
"day": "Día",
|
||||
"agendaWeek": "Semana",
|
||||
"agendaDay": "Día"
|
||||
},
|
||||
"labels": {
|
||||
"Today": "Hoy",
|
||||
"Create": "Crear"
|
||||
}
|
||||
}
|
||||
"modes": {
|
||||
"month": "Mes",
|
||||
"week": "Semana",
|
||||
"agendaWeek": "Semana",
|
||||
"day": "Día",
|
||||
"agendaDay": "Día",
|
||||
"timeline": "Línea de tiempo"
|
||||
},
|
||||
"labels": {
|
||||
"Today": "Hoy",
|
||||
"Create": "Crear",
|
||||
"Shared": "Compartido",
|
||||
"Add User": "Agregar usuario",
|
||||
"current": "corriente",
|
||||
"time": "Tiempo",
|
||||
"User List": "Lista de usuarios",
|
||||
"Manage Users": "Administrar usuarios"
|
||||
}
|
||||
}
|
||||
@@ -1,51 +1,49 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de Finalización",
|
||||
"direction": "Dirección",
|
||||
"duration": "Duración",
|
||||
"description": "Descripción",
|
||||
"users": "Usuarios",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"reminders": "Recordatorios",
|
||||
"account": "Cuenta"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de Finalización",
|
||||
"direction": "Dirección",
|
||||
"duration": "Duración",
|
||||
"description": "Descripción",
|
||||
"users": "Usuarios",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"reminders": "Recordatorios",
|
||||
"account": "Cuenta"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Planeadas",
|
||||
"Held": "Celebradas",
|
||||
"Not Held": "Sin Celebrar"
|
||||
},
|
||||
"links": {
|
||||
"direction": {
|
||||
"Outbound": "Saliente",
|
||||
"Inbound": "Entrante"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Planeadas",
|
||||
"Held": "Celebradas",
|
||||
"Not Held": "Sin Celebrar"
|
||||
},
|
||||
"direction": {
|
||||
"Outbound": "Saliente",
|
||||
"Inbound": "Entrante"
|
||||
},
|
||||
"acceptanceStatus": {
|
||||
"None": "Ninguno",
|
||||
"Accepted": "Aceptado",
|
||||
"Declined": "Rechazado",
|
||||
"Tentative": "Tentativa"
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Marcar como Celebrada",
|
||||
"setNotHeld": "Marcar como No Celebrada"
|
||||
},
|
||||
"labels": {
|
||||
"Create Call": "Crear Llamada",
|
||||
"Set Held": "Marcar como Celebrada",
|
||||
"Set Not Held": "Marcar como No Celebrada",
|
||||
"Send Invitations": "Enviar Invitaciones"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Planeadas",
|
||||
"held": "Celebradas",
|
||||
"todays": "De Hoy"
|
||||
"acceptanceStatus": {
|
||||
"None": "Ninguno",
|
||||
"Accepted": "Aceptado",
|
||||
"Declined": "Rechazado",
|
||||
"Tentative": "Tentativa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Marcar como Celebrada",
|
||||
"setNotHeld": "Marcar como No Celebrada"
|
||||
},
|
||||
"labels": {
|
||||
"Create Call": "Crear Llamada",
|
||||
"Set Held": "Marcar como Celebrada",
|
||||
"Set Not Held": "Marcar como No Celebrada",
|
||||
"Send Invitations": "Enviar Invitaciones"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Planeadas",
|
||||
"held": "Celebradas",
|
||||
"todays": "De Hoy"
|
||||
}
|
||||
}
|
||||
@@ -1,68 +1,71 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"description": "Descripción",
|
||||
"status": "Estado",
|
||||
"type": "Tipo",
|
||||
"startDate": "Fecha de Inicio",
|
||||
"endDate": "Fecha de Fin",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"sentCount": "Enviado",
|
||||
"openedCount": "Abierto",
|
||||
"clickedCount": "Cliqueados",
|
||||
"optedOutCount": "optado por no",
|
||||
"bouncedCount": "Rebotados",
|
||||
"hardBouncedCount": "Rebotados Duro",
|
||||
"softBouncedCount": "Rebotado Suave",
|
||||
"leadCreatedCount": "Potenciales Creados",
|
||||
"revenue": "Ingresos",
|
||||
"revenueConverted": "ingresos (convertido)",
|
||||
"budget": "Presupuesto"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"description": "Descripción",
|
||||
"status": "Estado",
|
||||
"type": "Tipo",
|
||||
"startDate": "Fecha de Inicio",
|
||||
"endDate": "Fecha de Fin",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"sentCount": "Enviado",
|
||||
"openedCount": "Abierto",
|
||||
"clickedCount": "Cliqueados",
|
||||
"optedOutCount": "optado por no",
|
||||
"bouncedCount": "Rebotados",
|
||||
"hardBouncedCount": "Rebotados Duro",
|
||||
"softBouncedCount": "Rebotado Suave",
|
||||
"leadCreatedCount": "Potenciales Creados",
|
||||
"revenue": "Ingresos",
|
||||
"revenueConverted": "ingresos (convertido)",
|
||||
"budget": "Presupuesto",
|
||||
"budgetConverted": "Presupuesto (convertido)"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"accounts": "Cuentas",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"opportunities": "Oportunidades",
|
||||
"campaignLogRecords": "Registro de Log",
|
||||
"massEmails": "Emails Masivos",
|
||||
"trackingUrls": "URLs de Seguimiento"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Correo electrónico",
|
||||
"Web": "Web",
|
||||
"Television": "Televisión",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter",
|
||||
"Mail": "Correo"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"accounts": "Cuentas",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"opportunities": "Oportunidades",
|
||||
"campaignLogRecords": "Registro de Log",
|
||||
"massEmails": "Emails Masivos",
|
||||
"trackingUrls": "URLs de Seguimiento"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Correo electrónico",
|
||||
"Web": "Web",
|
||||
"Television": "Televisión",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter",
|
||||
"Mail": "Correo"
|
||||
},
|
||||
"status": {
|
||||
"Planning": "Planificación",
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo",
|
||||
"Complete": "Completada"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Campaign": "Crear Campaña",
|
||||
"Target Lists": "Lista de Objetivos",
|
||||
"Statistics": "Estadísticas",
|
||||
"hard": "duro",
|
||||
"soft": "suave",
|
||||
"Unsubscribe": "Desuscribirse"
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo"
|
||||
},
|
||||
"messages": {
|
||||
"unsubscribed": "Usted ha cancelado la suscripción a nuestra lista de correo."
|
||||
},
|
||||
"tooltips": {
|
||||
"targetLists": "Los objetivos que deben recibir los mensajes.",
|
||||
"excludingTargetLists": "Los objetivos que no deben recibir mensajes."
|
||||
"status": {
|
||||
"Planning": "Planificación",
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo",
|
||||
"Complete": "Completada"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Campaign": "Crear Campaña",
|
||||
"Target Lists": "Lista de Objetivos",
|
||||
"Statistics": "Estadísticas",
|
||||
"hard": "duro",
|
||||
"soft": "suave",
|
||||
"Unsubscribe": "Desuscribirse",
|
||||
"Mass Emails": "Correos electrónicos masivos",
|
||||
"Email Templates": "Plantillas de correos"
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo"
|
||||
},
|
||||
"messages": {
|
||||
"unsubscribed": "Usted ha cancelado la suscripción a nuestra lista de correo."
|
||||
},
|
||||
"tooltips": {
|
||||
"targetLists": "Los objetivos que deben recibir los mensajes.",
|
||||
"excludingTargetLists": "Los objetivos que no deben recibir mensajes."
|
||||
}
|
||||
}
|
||||
@@ -1,33 +1,40 @@
|
||||
{
|
||||
"fields": {
|
||||
"action": "Acción",
|
||||
"actionDate": "Fecha",
|
||||
"data": "Datos",
|
||||
"campaign": "Campaña",
|
||||
"parent": "Objetivo",
|
||||
"object": "Objeto",
|
||||
"application": "Aplicacion",
|
||||
"queueItem": "Item de Cola"
|
||||
},
|
||||
"options": {
|
||||
"action": {
|
||||
"Sent": "Enviado",
|
||||
"Opened": "Abierto",
|
||||
"Opted Out": "optado por no",
|
||||
"Bounced": "Rebotados",
|
||||
"Clicked": "Cliqueados",
|
||||
"Lead Created": "Potencial Creado"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"All": "Todos"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Enviado",
|
||||
"opened": "Abierto",
|
||||
"optedOut": "optado por no",
|
||||
"bounced": "Rebotados",
|
||||
"clicked": "Cliqueados",
|
||||
"leadCreated": "Potencial Creado"
|
||||
"fields": {
|
||||
"action": "Acción",
|
||||
"actionDate": "Fecha",
|
||||
"data": "Datos",
|
||||
"campaign": "Campaña",
|
||||
"parent": "Objetivo",
|
||||
"object": "Objeto",
|
||||
"application": "Aplicacion",
|
||||
"queueItem": "Item de Cola",
|
||||
"stringData": "Cadena de datos",
|
||||
"stringAdditionalData": "Cadena de datos adicional"
|
||||
},
|
||||
"links": {
|
||||
"queueItem": "Cola de artículos",
|
||||
"parent": "Padre",
|
||||
"object": "Objeto"
|
||||
},
|
||||
"options": {
|
||||
"action": {
|
||||
"Sent": "Enviado",
|
||||
"Opened": "Abierto",
|
||||
"Opted Out": "optado por no",
|
||||
"Bounced": "Rebotados",
|
||||
"Clicked": "Cliqueados",
|
||||
"Lead Created": "Potencial Creado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"All": "Todos"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Enviado",
|
||||
"opened": "Abierto",
|
||||
"optedOut": "optado por no",
|
||||
"bounced": "Rebotados",
|
||||
"clicked": "Cliqueados",
|
||||
"leadCreated": "Potencial Creado"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"fields": {
|
||||
"url": "URL",
|
||||
"urlToUse": "Código para insertar en lugar de la URL",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"links": {
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"labels": {
|
||||
"Create CampaignTrackingUrl": "Crear URL de Seguimiento"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"url": "URL",
|
||||
"urlToUse": "Código para insertar en lugar de la URL",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"links": {
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"labels": {
|
||||
"Create CampaignTrackingUrl": "Crear URL de Seguimiento"
|
||||
}
|
||||
}
|
||||
@@ -1,56 +1,59 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"number": "Número",
|
||||
"status": "Estado",
|
||||
"account": "Cuenta",
|
||||
"contact": "Contacto",
|
||||
"contacts": "Contactos",
|
||||
"priority": "Prioridad",
|
||||
"type": "Tipo",
|
||||
"description": "Descripción",
|
||||
"inboundEmail": "Cuenta de Correo"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"number": "Número",
|
||||
"status": "Estado",
|
||||
"account": "Cuenta",
|
||||
"contact": "Contacto",
|
||||
"contacts": "Contactos",
|
||||
"priority": "Prioridad",
|
||||
"type": "Tipo",
|
||||
"description": "Descripción",
|
||||
"inboundEmail": "Cuenta de Correo",
|
||||
"lead": "Dirigir"
|
||||
},
|
||||
"links": {
|
||||
"inboundEmail": "Cuenta de Correo",
|
||||
"account": "Cuenta",
|
||||
"contact": "Contratos (Primaria)",
|
||||
"Contacts": "Contactos",
|
||||
"meetings": "Reuniones",
|
||||
"calls": "Llamadas",
|
||||
"tasks": "Tareas",
|
||||
"emails": "Correos",
|
||||
"articles": "Artículas de ayuda",
|
||||
"lead": "Dirigir"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuevo",
|
||||
"Assigned": "Asignado",
|
||||
"Pending": "Pendiente",
|
||||
"Closed": "Cerrados",
|
||||
"Rejected": "Rechazado",
|
||||
"Duplicate": "Duplicar"
|
||||
},
|
||||
"links": {
|
||||
"inboundEmail": "Cuenta de Correo",
|
||||
"account": "Cuenta",
|
||||
"contact": "Contratos (Primaria)",
|
||||
"Contacts": "Contactos",
|
||||
"meetings": "Reuniones",
|
||||
"calls": "Llamadas",
|
||||
"tasks": "Tareas",
|
||||
"emails": "Correos"
|
||||
"priority": {
|
||||
"Low": "Baja",
|
||||
"Normal": "Normal",
|
||||
"High": "Alta",
|
||||
"Urgent": "Urgente"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuevo",
|
||||
"Assigned": "Asignado",
|
||||
"Pending": "Pendiente",
|
||||
"Closed": "Cerrados",
|
||||
"Rejected": "Rechazado",
|
||||
"Duplicate": "Duplicar"
|
||||
},
|
||||
"priority" : {
|
||||
"Low": "Baja",
|
||||
"Normal": "Normal",
|
||||
"High": "Alta",
|
||||
"Urgent": "Urgente"
|
||||
},
|
||||
"type": {
|
||||
"Question": "Pregunta",
|
||||
"Incident": "Incidente",
|
||||
"Problem": "Problema"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Case": "Crear Caso",
|
||||
"Close": "Cerrar",
|
||||
"Reject": "Rechazar",
|
||||
"Closed": "Cerrados",
|
||||
"Rejected": "Rechazado"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Abiertos",
|
||||
"closed": "Cerrados"
|
||||
"type": {
|
||||
"Question": "Pregunta",
|
||||
"Incident": "Incidente",
|
||||
"Problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Case": "Crear Caso",
|
||||
"Close": "Cerrar",
|
||||
"Reject": "Rechazar",
|
||||
"Closed": "Cerrados",
|
||||
"Rejected": "Rechazado"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Abiertos",
|
||||
"closed": "Cerrados"
|
||||
}
|
||||
}
|
||||
@@ -1,40 +1,46 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"account": "Cuenta",
|
||||
"accounts": "Cuentas",
|
||||
"phoneNumber": "Teléfono",
|
||||
"accountType": "Tipo de Cuenta",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"opportunityRole": "Rol de Oportunidad",
|
||||
"accountRole": "Título",
|
||||
"description": "Descripción",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"opportunities": "Oportunidades",
|
||||
"cases": "Casos",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña",
|
||||
"account": "Cuentas (Primaria)",
|
||||
"accounts": "Cuentas",
|
||||
"casesPrimary": "Casos (Primaria)"
|
||||
},
|
||||
"labels": {
|
||||
"Create Contact": "Crear Contacto"
|
||||
},
|
||||
"options": {
|
||||
"opportunityRole": {
|
||||
"": "--Ninguno--",
|
||||
"Decision Maker": "Tomador de Desiciones",
|
||||
"Evaluator": "Evaluador",
|
||||
"Influencer": "Factor de Influencia"
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"accountRole": "Título",
|
||||
"account": "Cuenta",
|
||||
"accounts": "Empresas",
|
||||
"phoneNumber": "Teléfono",
|
||||
"accountType": "Tipo de Cuenta",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"opportunityRole": "Rol de Oportunidad",
|
||||
"description": "Descripción",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos",
|
||||
"portalUser": "Usuarios de portal"
|
||||
},
|
||||
"links": {
|
||||
"opportunities": "Oportunidades",
|
||||
"cases": "Casos",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña",
|
||||
"account": "Cuentas (Primaria)",
|
||||
"accounts": "Empresas",
|
||||
"casesPrimary": "Casos (Primaria)",
|
||||
"portalUser": "Usuarios de portal"
|
||||
},
|
||||
"labels": {
|
||||
"Create Contact": "Crear Contacto"
|
||||
},
|
||||
"options": {
|
||||
"opportunityRole": {
|
||||
"": "--Ninguno--",
|
||||
"Decision Maker": "Tomador de Desiciones",
|
||||
"Evaluator": "Evaluador",
|
||||
"Influencer": "Factor de Influencia"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"portalUsers": "Usuarios de Portal",
|
||||
"notPortalUsers": "Los usuarios no Portal"
|
||||
}
|
||||
}
|
||||
@@ -1,42 +1,43 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create Document": "Crear Documento",
|
||||
"Details": "Detalles"
|
||||
"labels": {
|
||||
"Create Document": "Crear Documento",
|
||||
"Details": "Detalles"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"file": "Archivo",
|
||||
"type": "Tipo",
|
||||
"source": "Fuente",
|
||||
"publishDate": "Publicar Fecha",
|
||||
"expirationDate": "Fecha de Expiración",
|
||||
"description": "Descripción",
|
||||
"accounts": "Empresas",
|
||||
"folder": "Carpeta"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Empresas",
|
||||
"opportunities": "Oportunidades",
|
||||
"folder": "Carpeta",
|
||||
"leads": "Leads"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Draft": "Borrador",
|
||||
"Expired": "Expirado",
|
||||
"Canceled": "Cancelado"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"file": "Archivo",
|
||||
"type": "Tipo",
|
||||
"source": "Fuente",
|
||||
"publishDate": "Publicar Fecha",
|
||||
"expirationDate": "Fecha de Expiración",
|
||||
"description": "Descripción",
|
||||
"accounts": "Cuentas",
|
||||
"folder": "Carpeta"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Cuentas",
|
||||
"opportunities": "Oportunidades",
|
||||
"folder": "Carpeta"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Draft": "Borrador",
|
||||
"Expired": "Expirado",
|
||||
"Canceled": "Cancelado"
|
||||
},
|
||||
"type": {
|
||||
"": "Ninguno",
|
||||
"Contract": "Contrato",
|
||||
"NDA": "NDA",
|
||||
"EULA": "EULA",
|
||||
"License Agreement": "Contrato de licencia"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo",
|
||||
"draft": "Borrador"
|
||||
"type": {
|
||||
"": "Ninguno",
|
||||
"Contract": "Contrato",
|
||||
"NDA": "NDA",
|
||||
"EULA": "EULA",
|
||||
"License Agreement": "Contrato de licencia"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo",
|
||||
"draft": "Borrador"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create DocumentFolder": "Crear Carpeta de Documentos",
|
||||
"Manage Categories": "Administrar Carpetas",
|
||||
"Documents": "Documentos"
|
||||
},
|
||||
"links": {
|
||||
"documents": "Documentos"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Create DocumentFolder": "Crear Carpeta de Documentos",
|
||||
"Manage Categories": "Administrar Carpetas",
|
||||
"Documents": "Documentos"
|
||||
},
|
||||
"links": {
|
||||
"documents": "Documentos"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create Lead": "Crear Potencial",
|
||||
"Create Contact": "Crear Contacto",
|
||||
"Create Task": "Crear Tarea",
|
||||
"Create Case": "Crear Caso"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Create Lead": "Crear Potencial",
|
||||
"Create Contact": "Crear Contacto",
|
||||
"Create Task": "Crear Tarea",
|
||||
"Create Case": "Crear Caso"
|
||||
}
|
||||
}
|
||||
@@ -1,28 +1,28 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"target": "Objetivo",
|
||||
"sentAt": "Enviado",
|
||||
"attemptCount": "Intentos",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"massEmail": "Email Masivo",
|
||||
"isTest": "Es una prueba"
|
||||
},
|
||||
"links": {
|
||||
"target": "Objetivo",
|
||||
"massEmail": "Email Masivo"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "Pendiente",
|
||||
"Sent": "Enviado",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"pending": "Pendiente",
|
||||
"sent": "Enviado",
|
||||
"failed": "Falló"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"target": "Objetivo",
|
||||
"sentAt": "Enviado",
|
||||
"attemptCount": "Intentos",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"massEmail": "Email Masivo",
|
||||
"isTest": "Es una prueba"
|
||||
},
|
||||
"links": {
|
||||
"target": "Objetivo",
|
||||
"massEmail": "Email Masivo"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "Pendiente",
|
||||
"Sent": "Enviado",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"pending": "Pendiente",
|
||||
"sent": "Enviado",
|
||||
"failed": "Falló"
|
||||
}
|
||||
}
|
||||
@@ -1,110 +1,116 @@
|
||||
{
|
||||
"scopeNames": {
|
||||
"Account": "Cuenta",
|
||||
"Contact": "Contacto",
|
||||
"Lead": "Potencial",
|
||||
"Target": "Objetivo",
|
||||
"Opportunity": "Oportunidad",
|
||||
"Meeting": "Reunión",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Llamada",
|
||||
"Task": "Tarea",
|
||||
"Case": "Caso",
|
||||
"Document": "Documento",
|
||||
"DocumentFolder": "Carpeta de Documento",
|
||||
"Campaign": "Campaña",
|
||||
"TargetList": "Lista de Objetivos",
|
||||
"MassEmail": "Email Masivo",
|
||||
"EmailQueueItem": "Item en Cola de Correo",
|
||||
"CampaignTrackingUrl": "URL de seguimiento"
|
||||
},
|
||||
"scopeNamesPlural": {
|
||||
"Account": "Cuentas",
|
||||
"Contact": "Contactos",
|
||||
"Lead": "Potenciales",
|
||||
"Target": "Objetivos",
|
||||
"Opportunity": "Oportunidades",
|
||||
"Meeting": "Reuniones",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Llamadas",
|
||||
"Task": "Tareas",
|
||||
"Case": "Casos",
|
||||
"Document": "Documentos",
|
||||
"DocumentFolder": "Carpetas de Documentos",
|
||||
"Campaign": "Campañas",
|
||||
"TargetList": "Lista de Objetivos",
|
||||
"MassEmail": "Emails Masivos",
|
||||
"EmailQueueItem": "Items en Cola de Correo",
|
||||
"CampaignTrackingUrl": "URLs de Seguimiento"
|
||||
},
|
||||
"dashlets": {
|
||||
"Leads": "Mis Potenciales",
|
||||
"Opportunities": "Mis Opportunidades",
|
||||
"Tasks": "Mis Tareas",
|
||||
"Cases": "Mis Casos",
|
||||
"Calendar": "Calendario",
|
||||
"Calls": "Mis Llamadas",
|
||||
"Meetings": "Mis Reuniones",
|
||||
"OpportunitiesByStage": "Oportunidades por Etapa",
|
||||
"OpportunitiesByLeadSource": "Oportunidades de origen de cliente potencial",
|
||||
"SalesByMonth": "Ventas por Mes",
|
||||
"SalesPipeline": "Canalización de ventas",
|
||||
"Activities": "Mis actividades"
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Crear Correo Entrante",
|
||||
"Activities": "Actividades",
|
||||
"History": "Historia",
|
||||
"Attendees": "Los asistentes",
|
||||
"Schedule Meeting": "Reunión Programada",
|
||||
"Schedule Call": "Llamada Programada",
|
||||
"Compose Email": "Escribir Correo",
|
||||
"Log Meeting": "Log de Reunión",
|
||||
"Log Call": "Log de Llamada",
|
||||
"Archive Email": "Archivar Correo",
|
||||
"Create Task": "Crear Tarea",
|
||||
"Tasks": "Tareas"
|
||||
},
|
||||
"fields": {
|
||||
"billingAddressCity": "Ciudad",
|
||||
"billingAddressCountry": "País",
|
||||
"billingAddressPostalCode": "Código Postal",
|
||||
"billingAddressState": "Estado/Distrito",
|
||||
"billingAddressStreet": "Calle",
|
||||
"billingAddressMap": "Mapa",
|
||||
"addressCity": "Ciudad",
|
||||
"addressStreet": "Calle",
|
||||
"addressCountry": "País",
|
||||
"addressState": "Estado/Distrito",
|
||||
"addressPostalCode": "Código Postal",
|
||||
"addressMap": "Mapa",
|
||||
"shippingAddressCity": "Ciudad (Envío)",
|
||||
"shippingAddressStreet": "Calle (Envío)",
|
||||
"shippingAddressCountry": "País (Envío)",
|
||||
"shippingAddressState": "State (Shipping)",
|
||||
"shippingAddressPostalCode": "Código Postal (Envío)",
|
||||
"shippingAddressState": "Estado (Envío)"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contactos",
|
||||
"opportunities": "Oportunidades",
|
||||
"leads": "Potenciales",
|
||||
"meetings": "Reuniones",
|
||||
"calls": "Llamadas",
|
||||
"tasks": "Tareas",
|
||||
"emails": "Correos",
|
||||
"accounts": "Cuentas",
|
||||
"cases": "Casos",
|
||||
"documents": "Documentos",
|
||||
"account": "Cuenta",
|
||||
"opportunity": "Oportunidad",
|
||||
"contact": "Contacto",
|
||||
"parent": "Padre"
|
||||
},
|
||||
"options": {
|
||||
"reminderTypes": {
|
||||
"Popup": "Ventana emergente",
|
||||
"Email": "Correo electrónico"
|
||||
}
|
||||
"links": {
|
||||
"parent": "Padre",
|
||||
"contacts": "Contactos",
|
||||
"opportunities": "Oportunidades",
|
||||
"leads": "Potenciales",
|
||||
"meetings": "Reuniones",
|
||||
"calls": "Llamadas",
|
||||
"tasks": "Tareas",
|
||||
"emails": "Correos",
|
||||
"accounts": "Empresas",
|
||||
"cases": "Casos",
|
||||
"documents": "Documentos",
|
||||
"account": "Cuenta",
|
||||
"opportunity": "Oportunidad",
|
||||
"contact": "Contacto"
|
||||
},
|
||||
"scopeNames": {
|
||||
"Account": "Cuenta",
|
||||
"Contact": "Contacto",
|
||||
"Lead": "Potencial",
|
||||
"Target": "Objetivo",
|
||||
"Opportunity": "Oportunidad",
|
||||
"Meeting": "Reunión",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Llamada",
|
||||
"Task": "Tarea",
|
||||
"Case": "Caso",
|
||||
"Document": "Documento",
|
||||
"DocumentFolder": "Carpeta de Documento",
|
||||
"Campaign": "Campaña",
|
||||
"TargetList": "Lista de Objetivos",
|
||||
"MassEmail": "Email Masivo",
|
||||
"EmailQueueItem": "Item en Cola de Correo",
|
||||
"CampaignTrackingUrl": "URL de seguimiento",
|
||||
"Activities": "Ocupaciones",
|
||||
"KnowledgeBaseArticle": "Artículos de base de conocimientos",
|
||||
"KnowledgeBaseCategory": "Categoría de base de conocimientos"
|
||||
},
|
||||
"scopeNamesPlural": {
|
||||
"Account": "Empresas",
|
||||
"Contact": "Contactos",
|
||||
"Lead": "Potenciales",
|
||||
"Target": "Objetivos",
|
||||
"Opportunity": "Oportunidades",
|
||||
"Meeting": "Reuniones",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Llamadas",
|
||||
"Task": "Tareas",
|
||||
"Case": "Casos",
|
||||
"Document": "Documentos",
|
||||
"DocumentFolder": "Carpetas de Documentos",
|
||||
"Campaign": "Campañas",
|
||||
"TargetList": "Lista de Objetivos",
|
||||
"MassEmail": "Emails Masivos",
|
||||
"EmailQueueItem": "Items en Cola de Correo",
|
||||
"CampaignTrackingUrl": "URLs de Seguimiento",
|
||||
"Activities": "Ocupaciones",
|
||||
"KnowledgeBaseArticle": "Base de conocimiento",
|
||||
"KnowledgeBaseCategory": "Categoría de base de conocimientos"
|
||||
},
|
||||
"dashlets": {
|
||||
"Leads": "Mis Potenciales",
|
||||
"Opportunities": "Mis Opportunidades",
|
||||
"Tasks": "Mis Tareas",
|
||||
"Cases": "Mis Casos",
|
||||
"Calendar": "Calendario",
|
||||
"Calls": "Mis Llamadas",
|
||||
"Meetings": "Mis Reuniones",
|
||||
"OpportunitiesByStage": "Oportunidades por Etapa",
|
||||
"OpportunitiesByLeadSource": "Oportunidades de origen de cliente potencial",
|
||||
"SalesByMonth": "Ventas por Mes",
|
||||
"SalesPipeline": "Canalización de ventas",
|
||||
"Activities": "Mis actividades"
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Crear Correo Entrante",
|
||||
"Activities": "Actividades",
|
||||
"History": "Historia",
|
||||
"Attendees": "Los asistentes",
|
||||
"Schedule Meeting": "Reunión Programada",
|
||||
"Schedule Call": "Llamada Programada",
|
||||
"Compose Email": "Escribir Correo",
|
||||
"Log Meeting": "Log de Reunión",
|
||||
"Log Call": "Log de Llamada",
|
||||
"Archive Email": "Archivar Correo",
|
||||
"Create Task": "Crear Tarea",
|
||||
"Tasks": "Tareas"
|
||||
},
|
||||
"fields": {
|
||||
"billingAddressCity": "Ciudad",
|
||||
"addressCity": "Ciudad",
|
||||
"billingAddressCountry": "País",
|
||||
"addressCountry": "País",
|
||||
"billingAddressPostalCode": "Código Postal",
|
||||
"addressPostalCode": "Código Postal",
|
||||
"billingAddressState": "Estado/Distrito",
|
||||
"addressState": "Estado/Distrito",
|
||||
"billingAddressStreet": "Calle",
|
||||
"addressStreet": "Calle",
|
||||
"billingAddressMap": "Mapa",
|
||||
"addressMap": "Mapa",
|
||||
"shippingAddressCity": "Ciudad (Envío)",
|
||||
"shippingAddressStreet": "Calle (Envío)",
|
||||
"shippingAddressCountry": "País (Envío)",
|
||||
"shippingAddressState": "Estado (Envío)",
|
||||
"shippingAddressPostalCode": "Código Postal (Envío)",
|
||||
"shippingAddressMap": "Mapa (envío)"
|
||||
},
|
||||
"options": {
|
||||
"reminderTypes": {
|
||||
"Popup": "Ventana emergente",
|
||||
"Email": "Correo electrónico"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create KnowledgeBaseArticle": "Crear artículo",
|
||||
"Any": "Alguna",
|
||||
"Send in Email": "Enviar por correo electrónico",
|
||||
"Move Up": "Ascender",
|
||||
"Move Down": "Mover hacia abajo"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"type": "Tipo",
|
||||
"attachments": "Archivos adjuntos",
|
||||
"publishDate": "Fecha de publicación",
|
||||
"expirationDate": "Fecha de caducidad",
|
||||
"description": "Descripción",
|
||||
"body": "Cuerpo",
|
||||
"categories": "Categorias",
|
||||
"language": "Idioma",
|
||||
"portals": "Portales"
|
||||
},
|
||||
"links": {
|
||||
"cases": "Casos",
|
||||
"opportunities": "Oportunidades",
|
||||
"categories": "Categorias",
|
||||
"portals": "Portales"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"In Review": "En revisión",
|
||||
"Draft": "Borrador",
|
||||
"Archived": "Archivado",
|
||||
"Published": "Publicado"
|
||||
},
|
||||
"type": {
|
||||
"Article": "Artículo"
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"portals": "Si no está vacía, entonces este artículo estará disponible sólo en portales específicos. Si está vacío, entonces estará disponible en todos los portales."
|
||||
},
|
||||
"presetFilters": {
|
||||
"published": "Publicado"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create KnowledgeBaseCategory": "Crear categoría",
|
||||
"Manage Categories": "Administrar categorías",
|
||||
"Articles": "Artículos"
|
||||
},
|
||||
"links": {
|
||||
"articles": "Artículos"
|
||||
}
|
||||
}
|
||||
@@ -1,62 +1,64 @@
|
||||
{
|
||||
"labels": {
|
||||
"Converted To": "Convertido a",
|
||||
"Create Lead": "Crear Potencial",
|
||||
"Convert": "Convertir"
|
||||
"labels": {
|
||||
"Converted To": "Convertido a",
|
||||
"Create Lead": "Crear Potencial",
|
||||
"Convert": "Convertir"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Teléfono",
|
||||
"accountName": "Nombre de Cuenta",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"status": "Estado",
|
||||
"source": "Fuente",
|
||||
"opportunityAmount": "Costo de Oportunidad",
|
||||
"opportunityAmountConverted": "Costo de Oportunidad (convertido)",
|
||||
"description": "Descripción",
|
||||
"createdAccount": "Cuenta",
|
||||
"createdContact": "Contacto",
|
||||
"createdOpportunity": "Oportunidad",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña",
|
||||
"createdAccount": "Cuenta",
|
||||
"createdContact": "Contacto",
|
||||
"createdOpportunity": "Oportunidad",
|
||||
"cases": "Casos",
|
||||
"documents": "Documentos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuevo",
|
||||
"Assigned": "Asignado",
|
||||
"In Process": "En Proceso",
|
||||
"Converted": "Convertidos",
|
||||
"Recycled": "Reciclado",
|
||||
"Dead": "Muerto"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Teléfono",
|
||||
"accountName": "Nombre de Cuenta",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"status": "Estado",
|
||||
"source": "Fuente",
|
||||
"opportunityAmount": "Costo de Oportunidad",
|
||||
"opportunityAmountConverted": "Costo de Oportunidad (convertido)",
|
||||
"description": "Descripción",
|
||||
"createdAccount": "Cuenta",
|
||||
"createdContact": "Contacto",
|
||||
"createdOpportunity": "Oportunidad",
|
||||
"campaign": "Campaña",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"targetList": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"campaignLogRecords": "Registro de Campaña",
|
||||
"campaign": "Campaña",
|
||||
"createdAccount": "Cuenta",
|
||||
"createdContact": "Contacto",
|
||||
"createdOpportunity": "Oportunidad"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuevo",
|
||||
"Assigned": "Asignado",
|
||||
"In Process": "En Proceso",
|
||||
"Converted": "Convertidos",
|
||||
"Recycled": "Reciclado",
|
||||
"Dead": "Muerto"
|
||||
},
|
||||
"source": {
|
||||
"": "Ninguno",
|
||||
"Call": "Llamada",
|
||||
"Email": "Correo electrónico",
|
||||
"Existing Customer": "Cliente Existente",
|
||||
"Partner": "Socio",
|
||||
"Public Relations": "Relaciones Públicas",
|
||||
"Web Site": "Sitio Web",
|
||||
"Campaign": "Campaña",
|
||||
"Other": "Otro"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo",
|
||||
"actual": "Actuales",
|
||||
"converted": "Convertidos"
|
||||
"source": {
|
||||
"": "Ninguno",
|
||||
"Call": "Llamada",
|
||||
"Email": "Correo electrónico",
|
||||
"Existing Customer": "Cliente Existente",
|
||||
"Partner": "Socio",
|
||||
"Public Relations": "Relaciones Públicas",
|
||||
"Web Site": "Sitio Web",
|
||||
"Campaign": "Campaña",
|
||||
"Other": "Otro"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Activo",
|
||||
"actual": "Actuales",
|
||||
"converted": "Convertidos"
|
||||
}
|
||||
}
|
||||
@@ -1,49 +1,49 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"storeSentEmails": "Almacenar Correos Enviados",
|
||||
"startAt": "Fecha de Comienzo",
|
||||
"fromAddress": "De la dirección",
|
||||
"fromName": "De Nombre",
|
||||
"replyToAddress": "Responder a la dirección",
|
||||
"replyToName": "Responder al Nombre",
|
||||
"campaign": "Campaña",
|
||||
"emailTemplate": "Plantilla de Correo",
|
||||
"inboundEmail": "Cuenta de correo",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"optOutEntirely": "Opt-Out Entirely"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"queueItems": "Items en cola",
|
||||
"campaign": "Campaña",
|
||||
"emailTemplate": "Plantilla de Correo",
|
||||
"inboundEmail": "Cuenta de correo"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Borrador",
|
||||
"Pending": "Pendiente",
|
||||
"In Process": "En Proceso",
|
||||
"Complete": "Completada",
|
||||
"Canceled": "Cancelado",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create MassEmail": "Crear correo masivo",
|
||||
"Send Test": "Enviar prueba"
|
||||
},
|
||||
"messages": {
|
||||
"selectAtLeastOneTarget": "Seleccione al menos un objetivo.",
|
||||
"testSent": "Se supone que el/los email/s de preuebas fueron enviados"
|
||||
},
|
||||
"tooltips": {
|
||||
"optOutEntirely": "Direcciones de correo de los destinatarios que se desuscribieron serán marcados como optado por salir y no van a recibir ningún correo masivo.",
|
||||
"targetLists": "Los objetivos que deben recibir los mensajes.",
|
||||
"excludingTargetLists": "Los objetivos que no deben recibir mensajes."
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"storeSentEmails": "Almacenar Correos Enviados",
|
||||
"startAt": "Fecha de Comienzo",
|
||||
"fromAddress": "De la dirección",
|
||||
"fromName": "De Nombre",
|
||||
"replyToAddress": "Responder a la dirección",
|
||||
"replyToName": "Responder al Nombre",
|
||||
"campaign": "Campaña",
|
||||
"emailTemplate": "Plantilla de Correo",
|
||||
"inboundEmail": "Cuenta de correo",
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"optOutEntirely": "Opt-Out Entirely"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos",
|
||||
"excludingTargetLists": "Lista de Objetivos Excluídos",
|
||||
"queueItems": "Items en cola",
|
||||
"campaign": "Campaña",
|
||||
"emailTemplate": "Plantilla de Correo",
|
||||
"inboundEmail": "Cuenta de correo"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Borrador",
|
||||
"Pending": "Pendiente",
|
||||
"In Process": "En Proceso",
|
||||
"Complete": "Completada",
|
||||
"Canceled": "Cancelado",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create MassEmail": "Crear correo masivo",
|
||||
"Send Test": "Enviar prueba"
|
||||
},
|
||||
"messages": {
|
||||
"selectAtLeastOneTarget": "Seleccione al menos un objetivo.",
|
||||
"testSent": "Se supone que el/los email/s de preuebas fueron enviados"
|
||||
},
|
||||
"tooltips": {
|
||||
"optOutEntirely": "Direcciones de correo de los destinatarios que se desuscribieron serán marcados como optado por salir y no van a recibir ningún correo masivo.",
|
||||
"targetLists": "Los objetivos que deben recibir los mensajes.",
|
||||
"excludingTargetLists": "Los objetivos que no deben recibir mensajes."
|
||||
}
|
||||
}
|
||||
@@ -1,48 +1,46 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de Finalización",
|
||||
"duration": "Duración",
|
||||
"description": "Descripción",
|
||||
"users": "Usuarios",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"reminders": "Recordatorios",
|
||||
"account": "Cuenta"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de Finalización",
|
||||
"duration": "Duración",
|
||||
"description": "Descripción",
|
||||
"users": "Usuarios",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"reminders": "Recordatorios",
|
||||
"account": "Cuenta"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Planeadas",
|
||||
"Held": "Celebradas",
|
||||
"Not Held": "Sin Celebrar"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Planeadas",
|
||||
"Held": "Celebradas",
|
||||
"Not Held": "Sin Celebrar"
|
||||
},
|
||||
"acceptanceStatus": {
|
||||
"None": "Ninguno",
|
||||
"Accepted": "Aceptado",
|
||||
"Declined": "Rechazado",
|
||||
"Tentative": "Tentativa"
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Marcar como Celebrada",
|
||||
"setNotHeld": "Marcar como No Celebrada"
|
||||
},
|
||||
"labels": {
|
||||
"Create Meeting": "Crear Reunión",
|
||||
"Set Held": "Marcar como Celebrada",
|
||||
"Set Not Held": "Marcar como No Celebrada",
|
||||
"Send Invitations": "Enviar Invitaciones",
|
||||
"on time": "a tiempo",
|
||||
"before": "antes"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Planeadas",
|
||||
"held": "Celebradas",
|
||||
"todays": "De Hoy"
|
||||
"acceptanceStatus": {
|
||||
"None": "Ninguno",
|
||||
"Accepted": "Aceptado",
|
||||
"Declined": "Rechazado",
|
||||
"Tentative": "Tentativa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Marcar como Celebrada",
|
||||
"setNotHeld": "Marcar como No Celebrada"
|
||||
},
|
||||
"labels": {
|
||||
"Create Meeting": "Crear Reunión",
|
||||
"Set Held": "Marcar como Celebrada",
|
||||
"Set Not Held": "Marcar como No Celebrada",
|
||||
"Send Invitations": "Enviar Invitaciones",
|
||||
"on time": "a tiempo",
|
||||
"before": "antes"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Planeadas",
|
||||
"held": "Celebradas",
|
||||
"todays": "De Hoy"
|
||||
}
|
||||
}
|
||||
@@ -1,44 +1,44 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"account": "Cuenta",
|
||||
"stage": "Etapa",
|
||||
"amount": "Cantidad",
|
||||
"probability": "Probabilidad, %",
|
||||
"leadSource": "Fuente Principal",
|
||||
"doNotCall": "No Llamar",
|
||||
"closeDate": "Fecha de cierre",
|
||||
"contacts": "Contactos",
|
||||
"description": "Descripción",
|
||||
"amountConverted": "Cantidad (convertido)",
|
||||
"amountWeightedConverted": "Cantidad Ponderada",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contactos",
|
||||
"documents": "Documentos",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"options": {
|
||||
"stage": {
|
||||
"Prospecting": "Prospección",
|
||||
"Qualification": "Calificación",
|
||||
"Needs Analysis": "Análisis de Necesidades",
|
||||
"Value Proposition": "Valor de la Propuesta",
|
||||
"Id. Decision Makers": "Id. Tomadores de Decisiones",
|
||||
"Perception Analysis": "Análisis de la Percepción",
|
||||
"Proposal/Price Quote": "Propuesta/precio Presupuesto",
|
||||
"Negotiation/Review": "Negociación/Revisión",
|
||||
"Closed Won": "Cerrado Ganado",
|
||||
"Closed Lost": "Cerrado Perdido"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Opportunity": "Crear Oportunidad"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Abiertos",
|
||||
"won": "Ganados",
|
||||
"lost": "Perdido"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"account": "Cuenta",
|
||||
"stage": "Etapa",
|
||||
"amount": "Cantidad",
|
||||
"probability": "Probabilidad, %",
|
||||
"leadSource": "Fuente Principal",
|
||||
"doNotCall": "No Llamar",
|
||||
"closeDate": "Fecha de cierre",
|
||||
"contacts": "Contactos",
|
||||
"description": "Descripción",
|
||||
"amountConverted": "Cantidad (convertido)",
|
||||
"amountWeightedConverted": "Cantidad Ponderada",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contactos",
|
||||
"documents": "Documentos",
|
||||
"campaign": "Campaña"
|
||||
},
|
||||
"options": {
|
||||
"stage": {
|
||||
"Prospecting": "Prospección",
|
||||
"Qualification": "Calificación",
|
||||
"Needs Analysis": "Análisis de Necesidades",
|
||||
"Value Proposition": "Valor de la Propuesta",
|
||||
"Id. Decision Makers": "Id. Tomadores de Decisiones",
|
||||
"Perception Analysis": "Análisis de la Percepción",
|
||||
"Proposal/Price Quote": "Propuesta/precio Presupuesto",
|
||||
"Negotiation/Review": "Negociación/Revisión",
|
||||
"Closed Won": "Cerrado Ganado",
|
||||
"Closed Lost": "Cerrado Perdido"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Opportunity": "Crear Oportunidad"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Abiertos",
|
||||
"won": "Ganados",
|
||||
"lost": "Perdido"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"links": {
|
||||
"articles": "Artículos de base de conocimientos"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"options": {
|
||||
"job": {
|
||||
"ProcessMassEmail": "Enviar Correo Masivo"
|
||||
}
|
||||
"options": {
|
||||
"job": {
|
||||
"ProcessMassEmail": "Enviar Correo Masivo",
|
||||
"ControlKnowledgeBaseArticleStatus": "Control de artículos de base de conocimientos"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,17 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"website": "Sito Web",
|
||||
"accountName": "Nombre de Cuenta",
|
||||
"phoneNumber": "Teléfono",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"description": "Descripción"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"labels": {
|
||||
"Create Target": "Crear Objetivo",
|
||||
"Convert to Lead": "Convertir en Lider"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"title": "Título",
|
||||
"website": "Sito Web",
|
||||
"accountName": "Nombre de Cuenta",
|
||||
"phoneNumber": "Teléfono",
|
||||
"doNotCall": "No Llamar",
|
||||
"address": "Dirección",
|
||||
"description": "Descripción"
|
||||
},
|
||||
"labels": {
|
||||
"Create Target": "Crear Objetivo",
|
||||
"Convert to Lead": "Convertir en Lider"
|
||||
}
|
||||
}
|
||||
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"description": "Descripción",
|
||||
"entryCount": "Contador de entrada",
|
||||
"campaigns": "Campañas",
|
||||
"endDate": "Fecha de Fin",
|
||||
"targetLists": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Cuentas",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"campaigns": "Campañas",
|
||||
"massEmails": "Emails Masivos"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Correo electrónico",
|
||||
"Web": "Web",
|
||||
"Television": "Televisión",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create TargetList": "Crear un objetivo de lista",
|
||||
"Opted Out": "optado por no",
|
||||
"Cancel Opt-Out": "Cancelar Opt-Out",
|
||||
"Opt-Out": "Opt-Out"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"description": "Descripción",
|
||||
"entryCount": "Contador de entrada",
|
||||
"campaigns": "Campañas",
|
||||
"endDate": "Fecha de Fin",
|
||||
"targetLists": "Lista de Objetivos"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Cuentas",
|
||||
"contacts": "Contactos",
|
||||
"leads": "Potenciales",
|
||||
"campaigns": "Campañas",
|
||||
"massEmails": "Correos Masivos"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Correo electrónico",
|
||||
"Web": "Web",
|
||||
"Television": "Televisión",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Boletín de noticias"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create TargetList": "Crear un objetivo de lista",
|
||||
"Opted Out": "optado por no",
|
||||
"Cancel Opt-Out": "Cancelar Opt-Out",
|
||||
"Opt-Out": "Opt-Out"
|
||||
}
|
||||
}
|
||||
@@ -1,45 +1,45 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de vencimiento",
|
||||
"dateStartDate": "Fecha de Inicio (todo el día)",
|
||||
"dateEndDate": "Fecha de fin (todo el día)",
|
||||
"priority": "Prioridad",
|
||||
"description": "Descripción",
|
||||
"isOverdue": "Atrasado",
|
||||
"account": "Cuenta",
|
||||
"dateCompleted": "Fecha de completado",
|
||||
"attachments": "Adjuntos"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateStart": "Fecha de Comienzo",
|
||||
"dateEnd": "Fecha de vencimiento",
|
||||
"dateStartDate": "Fecha de Inicio (todo el día)",
|
||||
"dateEndDate": "Fecha de fin (todo el día)",
|
||||
"priority": "Prioridad",
|
||||
"description": "Descripción",
|
||||
"isOverdue": "Atrasado",
|
||||
"account": "Cuenta",
|
||||
"dateCompleted": "Fecha de completado",
|
||||
"attachments": "Adjuntos"
|
||||
},
|
||||
"links": {
|
||||
"attachments": "Adjuntos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Not Started": "Sin Empezar",
|
||||
"Started": "Comenzado",
|
||||
"Completed": "Completado",
|
||||
"Canceled": "Cancelado",
|
||||
"Deferred": "Diferido"
|
||||
},
|
||||
"links": {
|
||||
"attachments": "Adjuntos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Not Started": "Sin Empezar",
|
||||
"Started": "Comenzado",
|
||||
"Completed": "Completado",
|
||||
"Canceled": "Cancelado",
|
||||
"Deferred": "Diferido"
|
||||
},
|
||||
"priority" : {
|
||||
"Low": "Baja",
|
||||
"Normal": "Normal",
|
||||
"High": "Alta",
|
||||
"Urgent": "Urgente"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Task": "Crear Tarea",
|
||||
"Complete": "Completada"
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Actuales",
|
||||
"completed": "Completado",
|
||||
"todays": "De Hoy",
|
||||
"overdue": "Atrazadas"
|
||||
"priority": {
|
||||
"Low": "Baja",
|
||||
"Normal": "Normal",
|
||||
"High": "Alta",
|
||||
"Urgent": "Urgente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Task": "Crear Tarea",
|
||||
"Complete": "Completada"
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Actuales",
|
||||
"completed": "Completado",
|
||||
"todays": "De Hoy",
|
||||
"overdue": "Atrazadas"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos"
|
||||
}
|
||||
}
|
||||
"links": {
|
||||
"targetLists": "Lista de Objetivos"
|
||||
}
|
||||
}
|
||||
@@ -1,80 +1,80 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"website": "Website",
|
||||
"phoneNumber": "Phone",
|
||||
"billingAddress": "Indirizzo di Fatturazione",
|
||||
"shippingAddress": "Indirizzo di Spedizione",
|
||||
"description": "Descrizione",
|
||||
"sicCode": "Sic Code",
|
||||
"industry": "Azienda",
|
||||
"type": "Tipo",
|
||||
"contactRole": "Titolo",
|
||||
"campaign": "Campaign",
|
||||
"targetLists": "Target Lists",
|
||||
"targetList": "Target List"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Telefono",
|
||||
"billingAddress": "Indirizzo di Fatturazione",
|
||||
"shippingAddress": "Indirizzo di Spedizione",
|
||||
"description": "Descrizione",
|
||||
"sicCode": "Sic Code",
|
||||
"industry": "Azienda",
|
||||
"type": "Tipo",
|
||||
"contactRole": "Titolo",
|
||||
"campaign": "Campagna",
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"targetList": "Lista di Destinazione"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contatti",
|
||||
"opportunities": "Opportunita'",
|
||||
"cases": "Casi",
|
||||
"documents": "Documenti",
|
||||
"meetingsPrimary": "Meeting (ampliato)",
|
||||
"callsPrimary": "Chiamate (ampliato)",
|
||||
"tasksPrimary": "Task (ampliato)",
|
||||
"emailsPrimary": "Email (ampliato)",
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"campaignLogRecords": "Log Campagna",
|
||||
"campaign": "Campagna",
|
||||
"portalUsers": "Utenti portale"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Customer": "Cliente",
|
||||
"Investor": "Invetitore",
|
||||
"Partner": "Partner",
|
||||
"Reseller": "Rivenditore"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contatti",
|
||||
"opportunities": "Opportunita'",
|
||||
"cases": "Casi",
|
||||
"documents": "Documents",
|
||||
"meetingsPrimary": "Meetings (expanded)",
|
||||
"callsPrimary": "Calls (expanded)",
|
||||
"tasksPrimary": "Tasks (expanded)",
|
||||
"emailsPrimary": "Emails (expanded)",
|
||||
"targetLists": "Target Lists",
|
||||
"campaignLogRecords": "Campaign Log",
|
||||
"campaign": "Campaign",
|
||||
"portalUsers": "Portal Users"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Customer": "Cliente",
|
||||
"Investor": "Invetitore",
|
||||
"Partner": "Partner",
|
||||
"Reseller": "Rivenditore"
|
||||
},
|
||||
"industry": {
|
||||
"Agriculture": "Agriculture",
|
||||
"Advertising": "Advertising",
|
||||
"Apparel & Accessories": "Apparel & Accessories",
|
||||
"Automotive": "Automotive",
|
||||
"Banking": "Bancario",
|
||||
"Biotechnology": "Biotechnology",
|
||||
"Building Materials & Equipment": "Building Materials & Equipment",
|
||||
"Chemical": "Chemical",
|
||||
"Computer": "Computer",
|
||||
"Education": "Insegnante",
|
||||
"Electronics": "Electronics",
|
||||
"Energy": "Energy",
|
||||
"Entertainment & Leisure": "Entertainment & Leisure",
|
||||
"Finance": "Finanza",
|
||||
"Food & Beverage": "Food & Beverage",
|
||||
"Grocery": "Grocery",
|
||||
"Healthcare": "Healthcare",
|
||||
"Insurance": "Assicurazioni",
|
||||
"Legal": "Legal",
|
||||
"Manufacturing": "Manufacturing",
|
||||
"Publishing": "Publishing",
|
||||
"Real Estate": "Real Estate",
|
||||
"Service": "Service",
|
||||
"Sports": "Sports",
|
||||
"Software": "Software",
|
||||
"Technology": "Technology",
|
||||
"Telecommunications": "Telecommunications",
|
||||
"Television": "Television",
|
||||
"Transportation": "Transportation",
|
||||
"Venture Capital": "Venture Capital"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Account": "Crea Account",
|
||||
"Copy Billing": "Copy Billing"
|
||||
},
|
||||
"presetFilters": {
|
||||
"customers": "Customers",
|
||||
"partners": "Partners"
|
||||
"industry": {
|
||||
"Agriculture": "Agricultura",
|
||||
"Advertising": "Pubblicità",
|
||||
"Apparel & Accessories": "Abbigliamento e Accessori",
|
||||
"Automotive": "Settore Automobilistico",
|
||||
"Banking": "Bancario",
|
||||
"Biotechnology": "Biotecnologie",
|
||||
"Building Materials & Equipment": "Materiali da costruzione e attrezzature",
|
||||
"Chemical": "Chimico",
|
||||
"Computer": "Computer",
|
||||
"Education": "Insegnante",
|
||||
"Electronics": "Elettronica",
|
||||
"Energy": "Energia",
|
||||
"Entertainment & Leisure": "Intrattenimento e tempo libero",
|
||||
"Finance": "Finanza",
|
||||
"Food & Beverage": "Prodotti alimentari e bevande",
|
||||
"Grocery": "Drogheria",
|
||||
"Healthcare": "Assistenza sanitaria",
|
||||
"Insurance": "Assicurazioni",
|
||||
"Legal": "Legale",
|
||||
"Manufacturing": "Manifatturiero",
|
||||
"Publishing": "Editoriale",
|
||||
"Real Estate": "Immobiliare",
|
||||
"Service": "Servizi",
|
||||
"Sports": "Sport",
|
||||
"Software": "Software",
|
||||
"Technology": "Technologia",
|
||||
"Telecommunications": "Telecommunicazioni",
|
||||
"Television": "Televisione",
|
||||
"Transportation": "Trasporti",
|
||||
"Venture Capital": "Capitale di rischio"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Account": "Crea Account",
|
||||
"Copy Billing": "Copia di Fatturazione"
|
||||
},
|
||||
"presetFilters": {
|
||||
"customers": "Clienti",
|
||||
"partners": "Partner"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"layouts": {
|
||||
"detailConvert": "Convert Lead",
|
||||
"listForAccount": "List (for Account)"
|
||||
}
|
||||
}
|
||||
"layouts": {
|
||||
"detailConvert": "Convert Lead",
|
||||
"listForAccount": "Lista (di Account)"
|
||||
}
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"modes": {
|
||||
"month": "Mese",
|
||||
"week": "Settimana",
|
||||
"day": "Giorno",
|
||||
"agendaWeek": "Settimana",
|
||||
"agendaDay": "Giorno",
|
||||
"timeline": "Timeline"
|
||||
},
|
||||
"labels": {
|
||||
"Today": "Oggi",
|
||||
"Create": "Creare",
|
||||
"Shared": "Shared",
|
||||
"Add User": "Add User",
|
||||
"current": "current",
|
||||
"time": "time",
|
||||
"User List": "User List",
|
||||
"Manage Users": "Manage Users"
|
||||
}
|
||||
}
|
||||
"modes": {
|
||||
"month": "Mese",
|
||||
"week": "Settimana",
|
||||
"agendaWeek": "Settimana",
|
||||
"day": "Giorno",
|
||||
"agendaDay": "Giorno",
|
||||
"timeline": "Sequenza temporale"
|
||||
},
|
||||
"labels": {
|
||||
"Today": "Oggi",
|
||||
"Create": "Creare",
|
||||
"Shared": "Diviso",
|
||||
"Add User": "Aggiungi Utente",
|
||||
"current": "attuale",
|
||||
"time": "ora",
|
||||
"User List": "Lista Utente",
|
||||
"Manage Users": "Gestione Utenti"
|
||||
}
|
||||
}
|
||||
@@ -1,51 +1,49 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di fine",
|
||||
"direction": "Direzione",
|
||||
"duration": "Durata",
|
||||
"description": "Descrizione",
|
||||
"users": "Utenti",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"reminders": "Reminders",
|
||||
"account": "Account"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di fine",
|
||||
"direction": "Direzione",
|
||||
"duration": "Durata",
|
||||
"description": "Descrizione",
|
||||
"users": "Utenti",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"reminders": "Promemoria",
|
||||
"account": "Account"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Pianificato",
|
||||
"Held": "Tenere",
|
||||
"Not Held": "Lasciare"
|
||||
},
|
||||
"links": {
|
||||
"direction": {
|
||||
"Outbound": "in Uscita",
|
||||
"Inbound": "in Ingresso"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Pianificato",
|
||||
"Held": "Held",
|
||||
"Not Held": "Not Held"
|
||||
},
|
||||
"direction": {
|
||||
"Outbound": "in Uscita",
|
||||
"Inbound": "in Ingresso"
|
||||
},
|
||||
"acceptanceStatus": {
|
||||
"None": "Nessun",
|
||||
"Accepted": "Accepted",
|
||||
"Declined": "Declined",
|
||||
"Tentative": "Tentative"
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Trattenuto",
|
||||
"setNotHeld": "Non Trattenuto"
|
||||
},
|
||||
"labels": {
|
||||
"Create Call": "Creare delle chiamate",
|
||||
"Set Held": "Trattenuto",
|
||||
"Set Not Held": "Non Trattenuto",
|
||||
"Send Invitations": "Inviare inviti"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Pianificato",
|
||||
"held": "Held",
|
||||
"todays": "Today's"
|
||||
"acceptanceStatus": {
|
||||
"None": "Nessun",
|
||||
"Accepted": "Accettato",
|
||||
"Declined": "Rifiutato",
|
||||
"Tentative": "Provvisorio"
|
||||
}
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Trattenuto",
|
||||
"setNotHeld": "Non Trattenuto"
|
||||
},
|
||||
"labels": {
|
||||
"Create Call": "Creare delle chiamate",
|
||||
"Set Held": "Trattenuto",
|
||||
"Set Not Held": "Non Trattenuto",
|
||||
"Send Invitations": "Inviare inviti"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Pianificato",
|
||||
"held": "Held",
|
||||
"todays": "Today's"
|
||||
}
|
||||
}
|
||||
@@ -1,71 +1,71 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
"status": "Stato",
|
||||
"type": "Tipo",
|
||||
"startDate": "Start Date",
|
||||
"endDate": "End Date",
|
||||
"targetLists": "Target Lists",
|
||||
"excludingTargetLists": "Excluding Target Lists",
|
||||
"sentCount": "Inviato",
|
||||
"openedCount": "Opened",
|
||||
"clickedCount": "Clicked",
|
||||
"optedOutCount": "Rinuncia",
|
||||
"bouncedCount": "Bounced",
|
||||
"hardBouncedCount": "Hard Bounced",
|
||||
"softBouncedCount": "Soft Bounced",
|
||||
"leadCreatedCount": "Leads Created",
|
||||
"revenue": "Revenue",
|
||||
"revenueConverted": "Revenue (converted)",
|
||||
"budget": "Budget",
|
||||
"budgetConverted": "Budget (converted)"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
"status": "Stato",
|
||||
"type": "Tipo",
|
||||
"startDate": "Data d'Inizio",
|
||||
"endDate": "Data di Fine",
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"excludingTargetLists": "Escludi data di Destinazione",
|
||||
"sentCount": "Inviato",
|
||||
"openedCount": "Aperto",
|
||||
"clickedCount": "Cliccato",
|
||||
"optedOutCount": "Rinuncia",
|
||||
"bouncedCount": "Bounced",
|
||||
"hardBouncedCount": "Hard Bounced",
|
||||
"softBouncedCount": "Soft Bounced",
|
||||
"leadCreatedCount": "Leads Created",
|
||||
"revenue": "Entrata",
|
||||
"revenueConverted": "Entrata (convertita)",
|
||||
"budget": "Budget",
|
||||
"budgetConverted": "Budget (convertito)"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"excludingTargetLists": "Escludi Liste di Destinazione",
|
||||
"accounts": "Account",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"opportunities": "Opportunita'",
|
||||
"campaignLogRecords": "Log",
|
||||
"massEmails": "Email Massiva",
|
||||
"trackingUrls": "Tracking URLs"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Email",
|
||||
"Web": "Web",
|
||||
"Television": "Televisione",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter",
|
||||
"Mail": "Mail"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Target Lists",
|
||||
"excludingTargetLists": "Excluding Target Lists",
|
||||
"accounts": "Accounts",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"opportunities": "Opportunita'",
|
||||
"campaignLogRecords": "Log",
|
||||
"massEmails": "Mass Emails",
|
||||
"trackingUrls": "Tracking URLs"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Email",
|
||||
"Web": "Web",
|
||||
"Television": "Television",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter",
|
||||
"Mail": "Mail"
|
||||
},
|
||||
"status": {
|
||||
"Planning": "Planning",
|
||||
"Active": "Attivo",
|
||||
"Inactive": "Non Attivo",
|
||||
"Complete": "Complete"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Campaign": "Create Campaign",
|
||||
"Target Lists": "Target Lists",
|
||||
"Statistics": "Statistics",
|
||||
"hard": "hard",
|
||||
"soft": "soft",
|
||||
"Unsubscribe": "Unsubscribe",
|
||||
"Mass Emails": "Mass Emails",
|
||||
"Email Templates": "Email Templates"
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo"
|
||||
},
|
||||
"messages": {
|
||||
"unsubscribed": "You have been unsubscribed from our mailing list."
|
||||
},
|
||||
"tooltips": {
|
||||
"targetLists": "Targets that should receive messages.",
|
||||
"excludingTargetLists": "Targets that should not receive messages."
|
||||
"status": {
|
||||
"Planning": "Pianificazione",
|
||||
"Active": "Attivo",
|
||||
"Inactive": "Non Attivo",
|
||||
"Complete": "Completo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Campaign": "Create Campaign",
|
||||
"Target Lists": "Liste di Destinazione",
|
||||
"Statistics": "Statistiche",
|
||||
"hard": "duro",
|
||||
"soft": "leggeto",
|
||||
"Unsubscribe": "Annulla l'iscrizione",
|
||||
"Mass Emails": "Email Massive",
|
||||
"Email Templates": "Modelli Email"
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo"
|
||||
},
|
||||
"messages": {
|
||||
"unsubscribed": "Sei stato rimosso dalla nostra mailing list ."
|
||||
},
|
||||
"tooltips": {
|
||||
"targetLists": "Obiettivi che devono ricevere i messaggi .",
|
||||
"excludingTargetLists": "Obiettivi che non dovrebbe ricevere messaggi."
|
||||
}
|
||||
}
|
||||
@@ -1,40 +1,40 @@
|
||||
{
|
||||
"fields": {
|
||||
"action": "Azione",
|
||||
"actionDate": "Date",
|
||||
"data": "Data",
|
||||
"campaign": "Campaign",
|
||||
"parent": "Target",
|
||||
"object": "Object",
|
||||
"application": "Application",
|
||||
"queueItem": "Queue Item",
|
||||
"stringData": "String Data",
|
||||
"stringAdditionalData": "String Additional Data"
|
||||
},
|
||||
"links": {
|
||||
"queueItem": "Queue Item",
|
||||
"parent": "Genitore",
|
||||
"object": "Object"
|
||||
},
|
||||
"options": {
|
||||
"action": {
|
||||
"Sent": "Inviato",
|
||||
"Opened": "Opened",
|
||||
"Opted Out": "Rinuncia",
|
||||
"Bounced": "Bounced",
|
||||
"Clicked": "Clicked",
|
||||
"Lead Created": "Lead Created"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"All": "Tutti"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Inviato",
|
||||
"opened": "Opened",
|
||||
"optedOut": "Rinuncia",
|
||||
"bounced": "Bounced",
|
||||
"clicked": "Clicked",
|
||||
"leadCreated": "Lead Created"
|
||||
"fields": {
|
||||
"action": "Azione",
|
||||
"actionDate": "Data",
|
||||
"data": "Data",
|
||||
"campaign": "Campagnia",
|
||||
"parent": "Target",
|
||||
"object": "Oggetto",
|
||||
"application": "Applicazione",
|
||||
"queueItem": "Queue Item",
|
||||
"stringData": "String Data",
|
||||
"stringAdditionalData": "String Additional Data"
|
||||
},
|
||||
"links": {
|
||||
"queueItem": "Queue Item",
|
||||
"parent": "Genitore",
|
||||
"object": "Object"
|
||||
},
|
||||
"options": {
|
||||
"action": {
|
||||
"Sent": "Inviato",
|
||||
"Opened": "Aperto",
|
||||
"Opted Out": "Rinuncia",
|
||||
"Bounced": "Bounced",
|
||||
"Clicked": "Cliccato",
|
||||
"Lead Created": "Lead Created"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"All": "Tutti"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Inviato",
|
||||
"opened": "Aperto",
|
||||
"optedOut": "Rinuncia",
|
||||
"bounced": "Bounced",
|
||||
"clicked": "Clicked",
|
||||
"leadCreated": "Lead Created"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"fields": {
|
||||
"url": "URL",
|
||||
"urlToUse": "Code to insert instead of URL",
|
||||
"campaign": "Campaign"
|
||||
},
|
||||
"links": {
|
||||
"campaign": "Campaign"
|
||||
},
|
||||
"labels": {
|
||||
"Create CampaignTrackingUrl": "Create Tracking URL"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"url": "URL",
|
||||
"urlToUse": "Codice da inserire al posto dell' URL",
|
||||
"campaign": "Campagnia"
|
||||
},
|
||||
"links": {
|
||||
"campaign": "Campagnia"
|
||||
},
|
||||
"labels": {
|
||||
"Create CampaignTrackingUrl": "Creazione URL di monitoraggio"
|
||||
}
|
||||
}
|
||||
@@ -1,59 +1,59 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"number": "Numero",
|
||||
"status": "Stato",
|
||||
"account": "Account",
|
||||
"contact": "Contatti",
|
||||
"contacts": "Contatti",
|
||||
"priority": "Priorita'",
|
||||
"type": "Tipo",
|
||||
"description": "Descrizione",
|
||||
"inboundEmail": "Email in entrata",
|
||||
"lead": "Lead"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"number": "Numero",
|
||||
"status": "Stato",
|
||||
"account": "Account",
|
||||
"contact": "Contatti",
|
||||
"contacts": "Contatti",
|
||||
"priority": "Priorita'",
|
||||
"type": "Tipo",
|
||||
"description": "Descrizione",
|
||||
"inboundEmail": "Email in entrata",
|
||||
"lead": "Lead"
|
||||
},
|
||||
"links": {
|
||||
"inboundEmail": "Email in entrata",
|
||||
"account": "Account",
|
||||
"contact": "Contatto (Primario)",
|
||||
"Contacts": "Contatti",
|
||||
"meetings": "Meetings",
|
||||
"calls": "Chiamate",
|
||||
"tasks": "Tasks",
|
||||
"emails": "Email",
|
||||
"articles": "Knowledge Base Articles",
|
||||
"lead": "Lead"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuovo",
|
||||
"Assigned": "Assegnato",
|
||||
"Pending": "In attesa",
|
||||
"Closed": "Chiuso",
|
||||
"Rejected": "Rigettato",
|
||||
"Duplicate": "Duplicato"
|
||||
},
|
||||
"links": {
|
||||
"inboundEmail": "Email in entrata",
|
||||
"account": "Account",
|
||||
"contact": "Contact (Primary)",
|
||||
"Contacts": "Contatti",
|
||||
"meetings": "Meetings",
|
||||
"calls": "Calls",
|
||||
"tasks": "Tasks",
|
||||
"emails": "Emails",
|
||||
"articles": "Knowledge Base Articles",
|
||||
"lead": "Lead"
|
||||
"priority": {
|
||||
"Low": "Basso",
|
||||
"Normal": "Normale",
|
||||
"High": "Alto",
|
||||
"Urgent": "Urgente"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuovo",
|
||||
"Assigned": "Assegnato",
|
||||
"Pending": "In attesa",
|
||||
"Closed": "Chiuso",
|
||||
"Rejected": "Rigettato",
|
||||
"Duplicate": "Duplicato"
|
||||
},
|
||||
"priority" : {
|
||||
"Low": "Basso",
|
||||
"Normal": "Normale",
|
||||
"High": "Alto",
|
||||
"Urgent": "Urgente"
|
||||
},
|
||||
"type": {
|
||||
"Question": "Domande",
|
||||
"Incident": "Incidente",
|
||||
"Problem": "Problema"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Case": "Crea Caso",
|
||||
"Close": "Chiuso",
|
||||
"Reject": "Reject",
|
||||
"Closed": "Chiuso",
|
||||
"Rejected": "Rigettato"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Aperto",
|
||||
"closed": "Chiuso"
|
||||
"type": {
|
||||
"Question": "Domande",
|
||||
"Incident": "Incidente",
|
||||
"Problem": "Problema"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Case": "Crea Caso",
|
||||
"Close": "Chiuso",
|
||||
"Reject": "Rigettato",
|
||||
"Closed": "Chiuso",
|
||||
"Rejected": "Rigettato"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Aperto",
|
||||
"closed": "Chiuso"
|
||||
}
|
||||
}
|
||||
@@ -1,46 +1,46 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"account": "Account",
|
||||
"accounts": "Accounts",
|
||||
"phoneNumber": "Phone",
|
||||
"accountType": "Account Type",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"opportunityRole": "Opportunity Role",
|
||||
"accountRole": "Titolo",
|
||||
"description": "Descrizione",
|
||||
"campaign": "Campaign",
|
||||
"targetLists": "Target Lists",
|
||||
"targetList": "Target List",
|
||||
"portalUser": "Portal User"
|
||||
},
|
||||
"links": {
|
||||
"opportunities": "Opportunita'",
|
||||
"cases": "Casi",
|
||||
"targetLists": "Target Lists",
|
||||
"campaignLogRecords": "Campaign Log",
|
||||
"campaign": "Campaign",
|
||||
"account": "Account (Primary)",
|
||||
"accounts": "Accounts",
|
||||
"casesPrimary": "Cases (Primary)",
|
||||
"portalUser": "Portal User"
|
||||
},
|
||||
"labels": {
|
||||
"Create Contact": "Crea Contatto"
|
||||
},
|
||||
"options": {
|
||||
"opportunityRole": {
|
||||
"": "--None--",
|
||||
"Decision Maker": "Decision Maker",
|
||||
"Evaluator": "Evaluator",
|
||||
"Influencer": "Influencer"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"portalUsers": "Portal Users",
|
||||
"notPortalUsers": "Not Portal Users"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"accountRole": "Titolo",
|
||||
"account": "Account",
|
||||
"accounts": "Account",
|
||||
"phoneNumber": "Telefono",
|
||||
"accountType": "Tipo di Account",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"opportunityRole": "Opportunity Role",
|
||||
"description": "Descrizione",
|
||||
"campaign": "Campaign",
|
||||
"targetLists": "Liste di destinazione",
|
||||
"targetList": "Lista di destinazione",
|
||||
"portalUser": "Portal User"
|
||||
},
|
||||
"links": {
|
||||
"opportunities": "Opportunita'",
|
||||
"cases": "Casi",
|
||||
"targetLists": "Liste di destinazione",
|
||||
"campaignLogRecords": "Log Campagna",
|
||||
"campaign": "Campagna",
|
||||
"account": "Account (Primario)",
|
||||
"accounts": "Account",
|
||||
"casesPrimary": "Casi (Primario)",
|
||||
"portalUser": "Portale Utente"
|
||||
},
|
||||
"labels": {
|
||||
"Create Contact": "Crea Contatto"
|
||||
},
|
||||
"options": {
|
||||
"opportunityRole": {
|
||||
"": "--Nessun--",
|
||||
"Decision Maker": "Responsabile",
|
||||
"Evaluator": "Valutatore",
|
||||
"Influencer": "Influencer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"portalUsers": "Portale Utenti",
|
||||
"notPortalUsers": "Nessun Portale Utenti"
|
||||
}
|
||||
}
|
||||
@@ -1,43 +1,43 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create Document": "Create Document",
|
||||
"Details": "Dettagli"
|
||||
"labels": {
|
||||
"Create Document": "Crea documento",
|
||||
"Details": "Dettagli"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"file": "File",
|
||||
"type": "Tipo",
|
||||
"source": "Fonte",
|
||||
"publishDate": "Data di pubblicazione",
|
||||
"expirationDate": "Data di scadenza",
|
||||
"description": "Descrizione",
|
||||
"accounts": "Accounts",
|
||||
"folder": "Cartella"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Account",
|
||||
"opportunities": "Opportunita'",
|
||||
"folder": "Cartella",
|
||||
"leads": "Comando"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Attivo",
|
||||
"Draft": "Bozza",
|
||||
"Expired": "Scaduto",
|
||||
"Canceled": "Cancellato"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"file": "File",
|
||||
"type": "Tipo",
|
||||
"source": "Force",
|
||||
"publishDate": "Publish Date",
|
||||
"expirationDate": "Expiration Date",
|
||||
"description": "Descrizione",
|
||||
"accounts": "Accounts",
|
||||
"folder": "Folder"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Accounts",
|
||||
"opportunities": "Opportunita'",
|
||||
"folder": "Folder",
|
||||
"leads": "Comando"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Attivo",
|
||||
"Draft": "Bozza",
|
||||
"Expired": "Expired",
|
||||
"Canceled": "Cancellato"
|
||||
},
|
||||
"type": {
|
||||
"": "Nessun",
|
||||
"Contract": "Contract",
|
||||
"NDA": "NDA",
|
||||
"EULA": "EULA",
|
||||
"License Agreement": "Contratto di licenza"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo",
|
||||
"draft": "Bozza"
|
||||
"type": {
|
||||
"": "Nessun",
|
||||
"Contract": "Contratto",
|
||||
"NDA": "NDA",
|
||||
"EULA": "EULA",
|
||||
"License Agreement": "Contratto di licenza"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo",
|
||||
"draft": "Bozza"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create DocumentFolder": "Create Document Folder",
|
||||
"Manage Categories": "Manage Folders",
|
||||
"Documents": "Documents"
|
||||
},
|
||||
"links": {
|
||||
"documents": "Documents"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Create DocumentFolder": "Crea cartella Documenti",
|
||||
"Manage Categories": "Gestione cartelle",
|
||||
"Documents": "Documenti"
|
||||
},
|
||||
"links": {
|
||||
"documents": "Documenti"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create Lead": "Create Lead",
|
||||
"Create Contact": "Crea Contatto",
|
||||
"Create Task": "Create Task",
|
||||
"Create Case": "Crea Caso"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Create Lead": "Crea Guida",
|
||||
"Create Contact": "Crea Contatto",
|
||||
"Create Task": "Create Task",
|
||||
"Create Case": "Crea Caso"
|
||||
}
|
||||
}
|
||||
@@ -1,28 +1,28 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"target": "Target",
|
||||
"sentAt": "Data invio",
|
||||
"attemptCount": "Attempts",
|
||||
"emailAddress": "Indirizzo Email",
|
||||
"massEmail": "Mass Email",
|
||||
"isTest": "Is Test"
|
||||
},
|
||||
"links": {
|
||||
"target": "Target",
|
||||
"massEmail": "Mass Email"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "In attesa",
|
||||
"Sent": "Inviato",
|
||||
"Failed": "Failed"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"pending": "In attesa",
|
||||
"sent": "Inviato",
|
||||
"failed": "Failed"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"target": "Target",
|
||||
"sentAt": "Data invio",
|
||||
"attemptCount": "Prove",
|
||||
"emailAddress": "Indirizzo Email",
|
||||
"massEmail": "Email Massiva",
|
||||
"isTest": "è un test"
|
||||
},
|
||||
"links": {
|
||||
"target": "Target",
|
||||
"massEmail": "Email Massiva"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "In attesa",
|
||||
"Sent": "Inviato",
|
||||
"Failed": "Fallito"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"pending": "In attesa",
|
||||
"sent": "Inviato",
|
||||
"failed": "Fallito"
|
||||
}
|
||||
}
|
||||
@@ -1,116 +1,116 @@
|
||||
{
|
||||
"scopeNames": {
|
||||
"Account": "Account",
|
||||
"Contact": "Contatti",
|
||||
"Lead": "Lead",
|
||||
"Target": "Target",
|
||||
"Opportunity": "Opportunità",
|
||||
"Meeting": "Meeting",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Chiamata",
|
||||
"Task": "Task",
|
||||
"Case": "Casi",
|
||||
"Document": "Document",
|
||||
"DocumentFolder": "Document Folder",
|
||||
"Campaign": "Campaign",
|
||||
"TargetList": "Target List",
|
||||
"MassEmail": "Mass Email",
|
||||
"EmailQueueItem": "Email Queue Item",
|
||||
"CampaignTrackingUrl": "Tracking URL",
|
||||
"Activities": "Attivià",
|
||||
"KnowledgeBaseArticle": "Knowledge Base Article",
|
||||
"KnowledgeBaseCategory": "Knowledge Base Category"
|
||||
},
|
||||
"scopeNamesPlural": {
|
||||
"Account": "Accounts",
|
||||
"Contact": "Contatti",
|
||||
"Lead": "Comando",
|
||||
"Target": "Targets",
|
||||
"Opportunity": "Opportunita'",
|
||||
"Meeting": "Meetings",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Calls",
|
||||
"Task": "Tasks",
|
||||
"Case": "Casi",
|
||||
"Document": "Documents",
|
||||
"DocumentFolder": "Document Folders",
|
||||
"Campaign": "Campaigns",
|
||||
"TargetList": "Target Lists",
|
||||
"MassEmail": "Mass Emails",
|
||||
"EmailQueueItem": "Email Queue Items",
|
||||
"CampaignTrackingUrl": "Tracking URLs",
|
||||
"Activities": "Attivià",
|
||||
"KnowledgeBaseArticle": "Knowledge Base",
|
||||
"KnowledgeBaseCategory": "Knowledge Base Categories"
|
||||
},
|
||||
"dashlets": {
|
||||
"Leads": "My Leads",
|
||||
"Opportunities": "My Opportunities",
|
||||
"Tasks": "My Tasks",
|
||||
"Cases": "My Cases",
|
||||
"Calendar": "Calendario",
|
||||
"Calls": "My Calls",
|
||||
"Meetings": "My Meetings",
|
||||
"OpportunitiesByStage": "Opportunities by Stage",
|
||||
"OpportunitiesByLeadSource": "Opportunities by Lead Source",
|
||||
"SalesByMonth": "Sales by Month",
|
||||
"SalesPipeline": "Sales Pipeline",
|
||||
"Activities": "My Activities"
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Creare Email in entrata",
|
||||
"Activities": "Attivià",
|
||||
"History": "History",
|
||||
"Attendees": "Attendees",
|
||||
"Schedule Meeting": "Schedule Meeting",
|
||||
"Schedule Call": "Programma di chiamata",
|
||||
"Compose Email": "Componi email",
|
||||
"Log Meeting": "Log Meeting",
|
||||
"Log Call": "Log Call",
|
||||
"Archive Email": "Archivio Email",
|
||||
"Create Task": "Create Task",
|
||||
"Tasks": "Tasks"
|
||||
},
|
||||
"fields": {
|
||||
"billingAddressCity": "Citta'",
|
||||
"billingAddressCountry": "Nazione",
|
||||
"billingAddressPostalCode": "Codici Postale",
|
||||
"billingAddressState": "Stati",
|
||||
"billingAddressStreet": "Strada",
|
||||
"billingAddressMap": "Map",
|
||||
"addressCity": "Citta'",
|
||||
"addressStreet": "Strada",
|
||||
"addressCountry": "Nazione",
|
||||
"addressState": "Stati",
|
||||
"addressPostalCode": "Codici Postale",
|
||||
"addressMap": "Map",
|
||||
"shippingAddressCity": "Citta' (Shipping)",
|
||||
"shippingAddressStreet": "Strada (Shipping)",
|
||||
"shippingAddressCountry": "Nazione (Shipping)",
|
||||
"shippingAddressState": "Stato (Shipping)",
|
||||
"shippingAddressPostalCode": "Codice Postale (Shipping)",
|
||||
"shippingAddressMap": "Map (Shipping)"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contatti",
|
||||
"opportunities": "Opportunita'",
|
||||
"leads": "Comando",
|
||||
"meetings": "Meetings",
|
||||
"calls": "Calls",
|
||||
"tasks": "Tasks",
|
||||
"emails": "Emails",
|
||||
"accounts": "Accounts",
|
||||
"cases": "Casi",
|
||||
"documents": "Documents",
|
||||
"account": "Account",
|
||||
"opportunity": "Opportunità",
|
||||
"contact": "Contatti",
|
||||
"parent": "Genitore"
|
||||
},
|
||||
"options": {
|
||||
"reminderTypes": {
|
||||
"Popup": "Popup",
|
||||
"Email": "Email"
|
||||
}
|
||||
"links": {
|
||||
"parent": "Genitore",
|
||||
"contacts": "Contatti",
|
||||
"opportunities": "Opportunita'",
|
||||
"leads": "Comando",
|
||||
"meetings": "Meeting",
|
||||
"calls": "Chiamate",
|
||||
"tasks": "Task",
|
||||
"emails": "Email",
|
||||
"accounts": "Account",
|
||||
"cases": "Casi",
|
||||
"documents": "Documenti",
|
||||
"account": "Account",
|
||||
"opportunity": "Opportunità",
|
||||
"contact": "Contatti"
|
||||
},
|
||||
"scopeNames": {
|
||||
"Account": "Account",
|
||||
"Contact": "Contatti",
|
||||
"Lead": "Guida",
|
||||
"Target": "Target",
|
||||
"Opportunity": "Opportunità",
|
||||
"Meeting": "Meeting",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Chiamata",
|
||||
"Task": "Task",
|
||||
"Case": "Casi",
|
||||
"Document": "Document",
|
||||
"DocumentFolder": "Cartella Documenti",
|
||||
"Campaign": "Campagna",
|
||||
"TargetList": "Elenco destinazioni",
|
||||
"MassEmail": "Email Massima",
|
||||
"EmailQueueItem": "Email Queue Item",
|
||||
"CampaignTrackingUrl": "Tracking URL",
|
||||
"Activities": "Attivià",
|
||||
"KnowledgeBaseArticle": "Consocenza di Base degli Aticolo ",
|
||||
"KnowledgeBaseCategory": "Consocenza di Basec della Categoria "
|
||||
},
|
||||
"scopeNamesPlural": {
|
||||
"Account": "Account",
|
||||
"Contact": "Contatti",
|
||||
"Lead": "Comando",
|
||||
"Target": "Targets",
|
||||
"Opportunity": "Opportunita'",
|
||||
"Meeting": "Meeting",
|
||||
"Calendar": "Calendario",
|
||||
"Call": "Chiamate",
|
||||
"Task": "Tasks",
|
||||
"Case": "Casi",
|
||||
"Document": "Documenti",
|
||||
"DocumentFolder": "Cartella Documenti",
|
||||
"Campaign": "Campagna",
|
||||
"TargetList": "Liste di Destinazione",
|
||||
"MassEmail": "Email Massive",
|
||||
"EmailQueueItem": "Email Queue Items",
|
||||
"CampaignTrackingUrl": "Tracking URLs",
|
||||
"Activities": "Attivià",
|
||||
"KnowledgeBaseArticle": "Conoscenza di Base",
|
||||
"KnowledgeBaseCategory": "Conoscenza di Base Categorie"
|
||||
},
|
||||
"dashlets": {
|
||||
"Leads": "Le mie Guide",
|
||||
"Opportunities": "Le mie Opportunità",
|
||||
"Tasks": "I miei Task",
|
||||
"Cases": "I miei Casi",
|
||||
"Calendar": "Calendario",
|
||||
"Calls": "Le mie Chiamate",
|
||||
"Meetings": "I miei Meeting",
|
||||
"OpportunitiesByStage": "Opportunità di stage",
|
||||
"OpportunitiesByLeadSource": "Opportunities by Lead Source",
|
||||
"SalesByMonth": "Vendite per Mese",
|
||||
"SalesPipeline": "Canale di Vendita",
|
||||
"Activities": "le mie Attività"
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Creare Email in entrata",
|
||||
"Activities": "Attivià",
|
||||
"History": "History",
|
||||
"Attendees": "Partecipanti",
|
||||
"Schedule Meeting": "Scehdula Meeting",
|
||||
"Schedule Call": "Programma di chiamata",
|
||||
"Compose Email": "Componi email",
|
||||
"Log Meeting": "Log Meeting",
|
||||
"Log Call": "Log Chiamata",
|
||||
"Archive Email": "Archivio Email",
|
||||
"Create Task": "Crea Task",
|
||||
"Tasks": "Task"
|
||||
},
|
||||
"fields": {
|
||||
"billingAddressCity": "Citta'",
|
||||
"addressCity": "Citta'",
|
||||
"billingAddressCountry": "Nazione",
|
||||
"addressCountry": "Nazione",
|
||||
"billingAddressPostalCode": "Codice Postale",
|
||||
"addressPostalCode": "Codice Postale",
|
||||
"billingAddressState": "Stati",
|
||||
"addressState": "Stati",
|
||||
"billingAddressStreet": "Strada",
|
||||
"addressStreet": "Strada",
|
||||
"billingAddressMap": "Map",
|
||||
"addressMap": "Map",
|
||||
"shippingAddressCity": "Citta' (Spedizione)",
|
||||
"shippingAddressStreet": "Strada (Spedizione)",
|
||||
"shippingAddressCountry": "Nazione (Spedizione)",
|
||||
"shippingAddressState": "Stato (Spedizione)",
|
||||
"shippingAddressPostalCode": "Codice Postale (Spedizione)",
|
||||
"shippingAddressMap": "Mappa (Spedizione)"
|
||||
},
|
||||
"options": {
|
||||
"reminderTypes": {
|
||||
"Popup": "Popup",
|
||||
"Email": "Email"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,45 +1,45 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create KnowledgeBaseArticle": "Create Article",
|
||||
"Any": "Any",
|
||||
"Send in Email": "Send in Email",
|
||||
"Move Up": "Move Up",
|
||||
"Move Down": "Move Down"
|
||||
"labels": {
|
||||
"Create KnowledgeBaseArticle": "Crea Articolo",
|
||||
"Any": "Tutto",
|
||||
"Send in Email": "Spedisci via Email",
|
||||
"Move Up": "Sposta in Alto",
|
||||
"Move Down": "Sposta in Basso"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"type": "Tipo",
|
||||
"attachments": "Allegato",
|
||||
"publishDate": "Data di pubblicazione",
|
||||
"expirationDate": "Data di Scadenza",
|
||||
"description": "Descrizione",
|
||||
"body": "Corpo",
|
||||
"categories": "Categorie",
|
||||
"language": "Lingua",
|
||||
"portals": "Portali"
|
||||
},
|
||||
"links": {
|
||||
"cases": "Casi",
|
||||
"opportunities": "Opportunita'",
|
||||
"categories": "Categorie",
|
||||
"portals": "Portali"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"In Review": "In Revisione",
|
||||
"Draft": "Bozza",
|
||||
"Archived": "Archiviato",
|
||||
"Published": "Pubblicato"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"type": "Tipo",
|
||||
"attachments": "Allegato",
|
||||
"publishDate": "Publish Date",
|
||||
"expirationDate": "Expiration Date",
|
||||
"description": "Descrizione",
|
||||
"body": "Corpo",
|
||||
"categories": "Categories",
|
||||
"language": "Lingua",
|
||||
"portals": "Portals"
|
||||
},
|
||||
"links": {
|
||||
"cases": "Casi",
|
||||
"opportunities": "Opportunita'",
|
||||
"categories": "Categories",
|
||||
"portals": "Portals"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"In Review": "In Review",
|
||||
"Draft": "Bozza",
|
||||
"Archived": "Archiviato",
|
||||
"Published": "Published"
|
||||
},
|
||||
"type": {
|
||||
"Article": "Article"
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"portals": "If not empty then this article will be available only in specified portals. If empty then it will available in all portals."
|
||||
},
|
||||
"presetFilters": {
|
||||
"published": "Published"
|
||||
"type": {
|
||||
"Article": "Articolo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"portals": "Se non è vuoto allora questo articolo sarà disponibile solo nei portali specifici. Se vuoto, allora sarà disponibile in tutti i portali ."
|
||||
},
|
||||
"presetFilters": {
|
||||
"published": "Pubblicato"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"labels": {
|
||||
"Create KnowledgeBaseCategory": "Create Category",
|
||||
"Manage Categories": "Manage Categories",
|
||||
"Articles": "Articles"
|
||||
},
|
||||
"links": {
|
||||
"articles": "Articles"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Create KnowledgeBaseCategory": "Crea Categoria",
|
||||
"Manage Categories": "Gestione categorie",
|
||||
"Articles": "Articoli"
|
||||
},
|
||||
"links": {
|
||||
"articles": "Articoli"
|
||||
}
|
||||
}
|
||||
@@ -1,64 +1,64 @@
|
||||
{
|
||||
"labels": {
|
||||
"Converted To": "Convertito in",
|
||||
"Create Lead": "Create Lead",
|
||||
"Convert": "Convert"
|
||||
"labels": {
|
||||
"Converted To": "Convertito in",
|
||||
"Create Lead": "Crea Guida",
|
||||
"Convert": "Convertire"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"website": "Sito Web",
|
||||
"phoneNumber": "Telefono",
|
||||
"accountName": "Nome utente",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"status": "Stato",
|
||||
"source": "Provenienza",
|
||||
"opportunityAmount": "Opportunity Amount",
|
||||
"opportunityAmountConverted": "Opportunity Amount (converted)",
|
||||
"description": "Descrizione",
|
||||
"createdAccount": "Account",
|
||||
"createdContact": "Contatti",
|
||||
"createdOpportunity": "Opportunità",
|
||||
"campaign": "Campagnia",
|
||||
"targetLists": "Liste di destinazione",
|
||||
"targetList": "Lista di destinazione"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Liste di destinazione",
|
||||
"campaignLogRecords": "Log Campagna",
|
||||
"campaign": "Campagna",
|
||||
"createdAccount": "Account",
|
||||
"createdContact": "Contatti",
|
||||
"createdOpportunity": "Opportunità",
|
||||
"cases": "Casi",
|
||||
"documents": "Documenti"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuovo",
|
||||
"Assigned": "Assegnato",
|
||||
"In Process": "In corso",
|
||||
"Converted": "Convertito",
|
||||
"Recycled": "Recuperato",
|
||||
"Dead": "Fuori uso"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"website": "Website",
|
||||
"phoneNumber": "Phone",
|
||||
"accountName": "Nome utente",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"status": "Stato",
|
||||
"source": "Force",
|
||||
"opportunityAmount": "Opportunity Amount",
|
||||
"opportunityAmountConverted": "Opportunity Amount (converted)",
|
||||
"description": "Descrizione",
|
||||
"createdAccount": "Account",
|
||||
"createdContact": "Contatti",
|
||||
"createdOpportunity": "Opportunità",
|
||||
"campaign": "Campaign",
|
||||
"targetLists": "Target Lists",
|
||||
"targetList": "Target List"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Target Lists",
|
||||
"campaignLogRecords": "Campaign Log",
|
||||
"campaign": "Campaign",
|
||||
"createdAccount": "Account",
|
||||
"createdContact": "Contatti",
|
||||
"createdOpportunity": "Opportunità",
|
||||
"cases": "Casi",
|
||||
"documents": "Documents"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"New": "Nuovo",
|
||||
"Assigned": "Assegnato",
|
||||
"In Process": "In corso",
|
||||
"Converted": "Convertito",
|
||||
"Recycled": "Recycled",
|
||||
"Dead": "Dead"
|
||||
},
|
||||
"source": {
|
||||
"": "Nessun",
|
||||
"Call": "Chiamata",
|
||||
"Email": "Email",
|
||||
"Existing Customer": "Existing Customer",
|
||||
"Partner": "Partner",
|
||||
"Public Relations": "Public Relations",
|
||||
"Web Site": "Web Site",
|
||||
"Campaign": "Campaign",
|
||||
"Other": "Other"
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo",
|
||||
"actual": "Actual",
|
||||
"converted": "Convertito"
|
||||
"source": {
|
||||
"": "Nessun",
|
||||
"Call": "Chiamata",
|
||||
"Email": "Email",
|
||||
"Existing Customer": "Cliente esistente",
|
||||
"Partner": "Partner",
|
||||
"Public Relations": "Pubbliche Relazioni",
|
||||
"Web Site": "Sito Web",
|
||||
"Campaign": "Campagna",
|
||||
"Other": "Altro"
|
||||
}
|
||||
}
|
||||
},
|
||||
"presetFilters": {
|
||||
"active": "Attivo",
|
||||
"actual": "Attuale",
|
||||
"converted": "Convertito"
|
||||
}
|
||||
}
|
||||
@@ -1,49 +1,49 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"storeSentEmails": "Store Sent Emails",
|
||||
"startAt": "Data d'inizio",
|
||||
"fromAddress": "Indirizzo mittente",
|
||||
"fromName": "Dal nome",
|
||||
"replyToAddress": "Reply-to Address",
|
||||
"replyToName": "Reply-to Name",
|
||||
"campaign": "Campaign",
|
||||
"emailTemplate": "Modello Email",
|
||||
"inboundEmail": "Email Account",
|
||||
"targetLists": "Target Lists",
|
||||
"excludingTargetLists": "Excluding Target Lists",
|
||||
"optOutEntirely": "Opt-Out Entirely"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Target Lists",
|
||||
"excludingTargetLists": "Excluding Target Lists",
|
||||
"queueItems": "Queue Items",
|
||||
"campaign": "Campaign",
|
||||
"emailTemplate": "Modello Email",
|
||||
"inboundEmail": "Email Account"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Bozza",
|
||||
"Pending": "In attesa",
|
||||
"In Process": "In corso",
|
||||
"Complete": "Complete",
|
||||
"Canceled": "Cancellato",
|
||||
"Failed": "Failed"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create MassEmail": "Create Mass Email",
|
||||
"Send Test": "Send Test"
|
||||
},
|
||||
"messages": {
|
||||
"selectAtLeastOneTarget": "Select at least one target.",
|
||||
"testSent": "Test email(s) supposed to be sent"
|
||||
},
|
||||
"tooltips": {
|
||||
"optOutEntirely": "Email addresses of recipients that unsubscribed will be marked as opted out and they will not receive any mass emails anymore.",
|
||||
"targetLists": "Targets that should receive messages.",
|
||||
"excludingTargetLists": "Targets that should not receive messages."
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"status": "Stato",
|
||||
"storeSentEmails": "Archiviare Email Inviate",
|
||||
"startAt": "Data d'inizio",
|
||||
"fromAddress": "Indirizzo mittente",
|
||||
"fromName": "Dal nome",
|
||||
"replyToAddress": "Rispondi aa Indirizzo",
|
||||
"replyToName": "Rispondi a Nome",
|
||||
"campaign": "Campagna",
|
||||
"emailTemplate": "Modello Email",
|
||||
"inboundEmail": "Email Account",
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"excludingTargetLists": "Escludi Liste di Destinazione",
|
||||
"optOutEntirely": "Opt-Out Entirely"
|
||||
},
|
||||
"links": {
|
||||
"targetLists": "Liste di Destinazione",
|
||||
"excludingTargetLists": "Excluding Target Lists",
|
||||
"queueItems": "Queue Items",
|
||||
"campaign": "Campagna",
|
||||
"emailTemplate": "Modello Email",
|
||||
"inboundEmail": "Email Account"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Bozza",
|
||||
"Pending": "In attesa",
|
||||
"In Process": "In corso",
|
||||
"Complete": "Completo",
|
||||
"Canceled": "Cancellato",
|
||||
"Failed": "Fallito"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create MassEmail": "Crea Email Massive",
|
||||
"Send Test": "Invia Test"
|
||||
},
|
||||
"messages": {
|
||||
"selectAtLeastOneTarget": "Selezionare almeno un destinatario.",
|
||||
"testSent": "L'Email di prova dovrebbe essere stata inviata"
|
||||
},
|
||||
"tooltips": {
|
||||
"optOutEntirely": "Gli Indirizzi e-mail dei destinatari che non sono state sottoscritte saranno contrassegnati come rinunciatari e non riceveranno più e-mail di massive.",
|
||||
"targetLists": "Destinatari che devono ricevere i messaggi.",
|
||||
"excludingTargetLists": "Destinatari che non devono ricevere i messaggi."
|
||||
}
|
||||
}
|
||||
@@ -1,48 +1,46 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di fine",
|
||||
"duration": "Durata",
|
||||
"description": "Descrizione",
|
||||
"users": "Utenti",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"reminders": "Reminders",
|
||||
"account": "Account"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di fine",
|
||||
"duration": "Durata",
|
||||
"description": "Descrizione",
|
||||
"users": "Utenti",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"reminders": "Promemoria",
|
||||
"account": "Account"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Pianificato",
|
||||
"Held": "Held",
|
||||
"Not Held": "Not Held"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Planned": "Pianificato",
|
||||
"Held": "Held",
|
||||
"Not Held": "Not Held"
|
||||
},
|
||||
"acceptanceStatus": {
|
||||
"None": "Nessun",
|
||||
"Accepted": "Accepted",
|
||||
"Declined": "Declined",
|
||||
"Tentative": "Tentative"
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Trattenuto",
|
||||
"setNotHeld": "Non Trattenuto"
|
||||
},
|
||||
"labels": {
|
||||
"Create Meeting": "Create Meeting",
|
||||
"Set Held": "Trattenuto",
|
||||
"Set Not Held": "Non Trattenuto",
|
||||
"Send Invitations": "Inviare inviti",
|
||||
"on time": "on time",
|
||||
"before": "before"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Pianificato",
|
||||
"held": "Held",
|
||||
"todays": "Today's"
|
||||
"acceptanceStatus": {
|
||||
"None": "Nessun",
|
||||
"Accepted": "Accettato",
|
||||
"Declined": "Declinato",
|
||||
"Tentative": "Tentativo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"massActions": {
|
||||
"setHeld": "Trattenuto",
|
||||
"setNotHeld": "Non Trattenuto"
|
||||
},
|
||||
"labels": {
|
||||
"Create Meeting": "Create Meeting",
|
||||
"Set Held": "Trattenuto",
|
||||
"Set Not Held": "Non Trattenuto",
|
||||
"Send Invitations": "Inviare inviti",
|
||||
"on time": "puntuale",
|
||||
"before": "prima"
|
||||
},
|
||||
"presetFilters": {
|
||||
"planned": "Pianificato",
|
||||
"held": "Held",
|
||||
"todays": "Di Oggi"
|
||||
}
|
||||
}
|
||||
@@ -1,44 +1,44 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"account": "Account",
|
||||
"stage": "Stage",
|
||||
"amount": "Amount",
|
||||
"probability": "Probability, %",
|
||||
"leadSource": "Lead Source",
|
||||
"doNotCall": "Non chiamare",
|
||||
"closeDate": "Close Date",
|
||||
"contacts": "Contatti",
|
||||
"description": "Descrizione",
|
||||
"amountConverted": "Amount (converted)",
|
||||
"amountWeightedConverted": "Amount Weighted",
|
||||
"campaign": "Campaign"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contatti",
|
||||
"documents": "Documents",
|
||||
"campaign": "Campaign"
|
||||
},
|
||||
"options": {
|
||||
"stage": {
|
||||
"Prospecting": "Prospecting",
|
||||
"Qualification": "Qualification",
|
||||
"Needs Analysis": "Needs Analysis",
|
||||
"Value Proposition": "Value Proposition",
|
||||
"Id. Decision Makers": "Id. Decision Makers",
|
||||
"Perception Analysis": "Perception Analysis",
|
||||
"Proposal/Price Quote": "Proposal/Price Quote",
|
||||
"Negotiation/Review": "Negotiation/Review",
|
||||
"Closed Won": "Closed Won",
|
||||
"Closed Lost": "Closed Lost"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Opportunity": "Create Opportunity"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Aperto",
|
||||
"won": "Won",
|
||||
"lost": "Lost"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"account": "Account",
|
||||
"stage": "Stage",
|
||||
"amount": "Importo",
|
||||
"probability": "Probabilità, %",
|
||||
"leadSource": "Lead Source",
|
||||
"doNotCall": "Non chiamare",
|
||||
"closeDate": "Data di chiusura",
|
||||
"contacts": "Contatti",
|
||||
"description": "Descrizione",
|
||||
"amountConverted": "Importo (convertito)",
|
||||
"amountWeightedConverted": "Importo Ponderato",
|
||||
"campaign": "Campagna"
|
||||
},
|
||||
"links": {
|
||||
"contacts": "Contatti",
|
||||
"documents": "Documentsi",
|
||||
"campaign": "Campagna"
|
||||
},
|
||||
"options": {
|
||||
"stage": {
|
||||
"Prospecting": "Prospecting",
|
||||
"Qualification": "Qualifica",
|
||||
"Needs Analysis": "Necessita di analisi",
|
||||
"Value Proposition": "Proposta di Valore",
|
||||
"Id. Decision Makers": "Id. Responsabile",
|
||||
"Perception Analysis": "Percezione dell'Analisi",
|
||||
"Proposal/Price Quote": "Proposta / Preventivo",
|
||||
"Negotiation/Review": "Negoziazione/Revisione",
|
||||
"Closed Won": "Chiuso Positivamente",
|
||||
"Closed Lost": "Chiuso Negativamente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Opportunity": "Crea Opportunità"
|
||||
},
|
||||
"presetFilters": {
|
||||
"open": "Aperto",
|
||||
"won": "Vinto",
|
||||
"lost": "Perso"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"links": {
|
||||
"articles": "Knowledge Base Articles"
|
||||
}
|
||||
}
|
||||
"links": {
|
||||
"articles": "Consocenza di Base degli Articoli"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"options": {
|
||||
"job": {
|
||||
"ProcessMassEmail": "Send Mass Emails",
|
||||
"ControlKnowledgeBaseArticleStatus": "Control Knowledge Base Article Status"
|
||||
}
|
||||
"options": {
|
||||
"job": {
|
||||
"ProcessMassEmail": "Send Mass Emails",
|
||||
"ControlKnowledgeBaseArticleStatus": "Controllo dello stato di conoscenza di base"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,17 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"website": "Website",
|
||||
"accountName": "Nome utente",
|
||||
"phoneNumber": "Phone",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"description": "Descrizione"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"labels": {
|
||||
"Create Target": "Create Target",
|
||||
"Convert to Lead": "Convert to Lead"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"emailAddress": "Email",
|
||||
"title": "Titolo",
|
||||
"website": "Sito Wev",
|
||||
"accountName": "Nome utente",
|
||||
"phoneNumber": "Telefono",
|
||||
"doNotCall": "Non chiamare",
|
||||
"address": "Indirizzi",
|
||||
"description": "Descrizione"
|
||||
},
|
||||
"labels": {
|
||||
"Create Target": "Crea Target",
|
||||
"Convert to Lead": "Conversione in Guida"
|
||||
}
|
||||
}
|
||||
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
"entryCount": "Entry Count",
|
||||
"campaigns": "Campaigns",
|
||||
"endDate": "End Date",
|
||||
"targetLists": "Target Lists"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Accounts",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"campaigns": "Campaigns",
|
||||
"massEmails": "Mass Emails"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Email",
|
||||
"Web": "Web",
|
||||
"Television": "Television",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create TargetList": "Create Target List",
|
||||
"Opted Out": "Rinuncia",
|
||||
"Cancel Opt-Out": "Cancel Opt-Out",
|
||||
"Opt-Out": "Opt-Out"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
"entryCount": "Contatore iniziale",
|
||||
"campaigns": "Campagne",
|
||||
"endDate": "Data di finee",
|
||||
"targetLists": "Lista di destinazione"
|
||||
},
|
||||
"links": {
|
||||
"accounts": "Account",
|
||||
"contacts": "Contatti",
|
||||
"leads": "Comando",
|
||||
"campaigns": "Campagne",
|
||||
"massEmails": "Email Massive"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"Email": "Email",
|
||||
"Web": "Web",
|
||||
"Television": "Televisione",
|
||||
"Radio": "Radio",
|
||||
"Newsletter": "Newsletter"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create TargetList": "Crea lista di destinazione",
|
||||
"Opted Out": "Rinuncia",
|
||||
"Cancel Opt-Out": "Cancella Opt-Out",
|
||||
"Opt-Out": "Opt-Out"
|
||||
}
|
||||
}
|
||||
@@ -1,45 +1,45 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di scadenza",
|
||||
"dateStartDate": "Date Start (all day)",
|
||||
"dateEndDate": "Date End (all day)",
|
||||
"priority": "Priorita'",
|
||||
"description": "Descrizione",
|
||||
"isOverdue": "In ritardo",
|
||||
"account": "Account",
|
||||
"dateCompleted": "Date Completed",
|
||||
"attachments": "Allegato"
|
||||
"fields": {
|
||||
"name": "Nome",
|
||||
"parent": "Genitore",
|
||||
"status": "Stato",
|
||||
"dateStart": "Data d'inizio",
|
||||
"dateEnd": "Data di scadenza",
|
||||
"dateStartDate": "Data d'Inizio (tutto il giorno)",
|
||||
"dateEndDate": "Data di Fine (tutto il giorno)",
|
||||
"priority": "Priorita'",
|
||||
"description": "Descrizione",
|
||||
"isOverdue": "In ritardo",
|
||||
"account": "Account",
|
||||
"dateCompleted": "Data completata",
|
||||
"attachments": "Allegato"
|
||||
},
|
||||
"links": {
|
||||
"attachments": "Allegato"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Not Started": "Non iniziato",
|
||||
"Started": "Iniziato",
|
||||
"Completed": "Completato",
|
||||
"Canceled": "Cancellato",
|
||||
"Deferred": "Prorogare"
|
||||
},
|
||||
"links": {
|
||||
"attachments": "Allegato"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Not Started": "Non iniziato",
|
||||
"Started": "Iniziato",
|
||||
"Completed": "Completato",
|
||||
"Canceled": "Cancellato",
|
||||
"Deferred": "Deferred"
|
||||
},
|
||||
"priority" : {
|
||||
"Low": "Basso",
|
||||
"Normal": "Normale",
|
||||
"High": "Alto",
|
||||
"Urgent": "Urgente"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Task": "Create Task",
|
||||
"Complete": "Complete"
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Actual",
|
||||
"completed": "Completato",
|
||||
"todays": "Today's",
|
||||
"overdue": "Overdue"
|
||||
"priority": {
|
||||
"Low": "Basso",
|
||||
"Normal": "Normale",
|
||||
"High": "Alto",
|
||||
"Urgent": "Urgente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Task": "Crea Task",
|
||||
"Complete": "Completo"
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Attuale",
|
||||
"completed": "Completato",
|
||||
"todays": "Di Oggi",
|
||||
"overdue": "In RItardo"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"links": {
|
||||
"targetLists": "Target Lists"
|
||||
}
|
||||
}
|
||||
"links": {
|
||||
"targetLists": "Liste di destinazione"
|
||||
}
|
||||
}
|
||||
@@ -731,8 +731,22 @@ class Activities extends \Espo\Core\Services\Base
|
||||
'leftJoins' => ['users'],
|
||||
'whereClause' => array(
|
||||
'usersMiddle.userId' => $userId,
|
||||
'dateStart>=' => $from,
|
||||
'dateStart<' => $to,
|
||||
array(
|
||||
'OR' => array(
|
||||
array(
|
||||
'dateStart>=' => $from,
|
||||
'dateStart<' => $to
|
||||
),
|
||||
array(
|
||||
'dateEnd>=' => $from,
|
||||
'dateEnd<' => $to
|
||||
),
|
||||
array(
|
||||
'dateStart<=' => $from,
|
||||
'dateEnd>=' => $to
|
||||
)
|
||||
)
|
||||
),
|
||||
'usersMiddle.status!=' => 'Declined'
|
||||
),
|
||||
'customJoin' => ''
|
||||
@@ -762,8 +776,22 @@ class Activities extends \Espo\Core\Services\Base
|
||||
'leftJoins' => ['users'],
|
||||
'whereClause' => array(
|
||||
'usersMiddle.userId' => $userId,
|
||||
'dateStart>=' => $from,
|
||||
'dateStart<' => $to,
|
||||
array(
|
||||
'OR' => array(
|
||||
array(
|
||||
'dateStart>=' => $from,
|
||||
'dateStart<' => $to
|
||||
),
|
||||
array(
|
||||
'dateEnd>=' => $from,
|
||||
'dateEnd<' => $to
|
||||
),
|
||||
array(
|
||||
'dateStart<=' => $from,
|
||||
'dateEnd>=' => $to
|
||||
)
|
||||
)
|
||||
),
|
||||
'usersMiddle.status!=' => 'Declined'
|
||||
),
|
||||
'customJoin' => ''
|
||||
@@ -864,6 +892,10 @@ class Activities extends \Espo\Core\Services\Base
|
||||
'dateEnd>=' => $from,
|
||||
'dateEnd<' => $to,
|
||||
),
|
||||
array(
|
||||
'dateStart<=' => $from,
|
||||
'dateEnd>=' => $to
|
||||
),
|
||||
array(
|
||||
'dateEndDate!=' => null,
|
||||
'dateEndDate>=' => $from,
|
||||
|
||||
@@ -146,7 +146,7 @@ class Opportunity extends \Espo\Services\Record
|
||||
opportunity.stage = 'Closed Won'
|
||||
|
||||
GROUP BY DATE_FORMAT(opportunity.close_date, '%Y-%m')
|
||||
ORDER BY opportunity.close_date
|
||||
ORDER BY `month`
|
||||
";
|
||||
|
||||
$sth = $pdo->prepare($sql);
|
||||
|
||||
@@ -73,7 +73,11 @@ class Email extends \Espo\Core\Notificators\Base
|
||||
|
||||
$dateSent = $entity->get('dateSent');
|
||||
if (!$dateSent) return;
|
||||
$dt = new \DateTime($dateSent);
|
||||
|
||||
$dt = null;
|
||||
try {
|
||||
$dt = new \DateTime($dateSent);
|
||||
} catch (\Exception $e) {}
|
||||
if (!$dt) return;
|
||||
|
||||
if ($dt->diff(new \DateTime())->days > self::DAYS_THRESHOLD) return;
|
||||
|
||||
@@ -133,14 +133,6 @@ class Email extends \Espo\Core\ORM\Repositories\RDB
|
||||
}
|
||||
}
|
||||
|
||||
if (!$entity->get('sentById')) {
|
||||
if ($entity->get('from')) {
|
||||
$from = trim($entity->get('from'));
|
||||
$user = $this->getEntityManager()->getRepository('EmailAddress')->getEntityByAddressId($emailAddressId, 'User');
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if ($entity->has('from') || $entity->has('to') || $entity->has('cc') || $entity->has('bcc') || $entity->has('replyTo')) {
|
||||
if (!$entity->has('usersIds')) {
|
||||
$entity->loadLinkMultipleField('users');
|
||||
|
||||
@@ -46,6 +46,7 @@
|
||||
"ldapAccountDomainNameShort": "Account Domain Name Short",
|
||||
"ldapOptReferrals": "Opt Referrals",
|
||||
"ldapUserNameAttribute": "Username Attribute",
|
||||
"ldapUserObjectClass": "User ObjectClass",
|
||||
"ldapUserTitleAttribute": "User Title Attribute",
|
||||
"ldapUserFirstNameAttribute": "User First Name Attribute",
|
||||
"ldapUserLastNameAttribute": "User Last Name Attribute",
|
||||
@@ -101,7 +102,8 @@
|
||||
"ldapUsername": "The full system user DN which allows to search other users. E.g. \"CN=LDAP System User,OU=users,OU=espocrm, DC=test,DC=lan\".",
|
||||
"ldapPassword": "The password to access to LDAP server.",
|
||||
"ldapAuth": "Access credentials for the LDAP server.",
|
||||
"ldapUserNameAttribute": "The attribute to identify the user. For Active Directory it can be \"userPrincipalName\" or \"sAMAccountName\".",
|
||||
"ldapUserNameAttribute": "The attribute to identify the user. \nE.g. \"userPrincipalName\" or \"sAMAccountName\" for Active Directory, \"uid\" for OpenLDAP.",
|
||||
"ldapUserObjectClass": "ObjectClass attribute for searching users. E.g. \"person\" for AD, \"inetOrgPerson\" for OpenLDAP.",
|
||||
"ldapAccountCanonicalForm": "The type of your account canonical form. There are 4 options:<br>- 'Dn' - the form in the format 'CN=tester,OU=espocrm,DC=test, DC=lan'.<br>- 'Username' - the form 'tester'.<br>- 'Backslash' - the form 'COMPANY\\tester'.<br>- 'Principal' - the form 'tester@company.com'.",
|
||||
"ldapBindRequiresDn": "The option to format the username in the DN form.",
|
||||
"ldapBaseDn": "The default base DN used for searching users. E.g. \"OU=users,OU=espocrm,DC=test, DC=lan\".",
|
||||
|
||||
@@ -1,174 +1,191 @@
|
||||
{
|
||||
"labels": {
|
||||
"Enabled": "Activado",
|
||||
"Disabled": "Desactivado",
|
||||
"System": "Sistema",
|
||||
"Users": "Usuarios",
|
||||
"Email": "Correo electrónico",
|
||||
"Data": "Datos",
|
||||
"Customization": "Personalizar",
|
||||
"Available Fields": "Campos Disponibles",
|
||||
"Layout": "Diseño",
|
||||
"Entity Manager": "Administrador de Entidades\t",
|
||||
"Add Panel": "Añadir Panel",
|
||||
"Add Field": "Añadir Campo",
|
||||
"Settings": "Opciones",
|
||||
"Scheduled Jobs": "Tareas Programadas",
|
||||
"Upgrade": "Actualizar",
|
||||
"Clear Cache": "Limpiar Cache",
|
||||
"Rebuild": "Reconstruir",
|
||||
"Teams": "Equipos",
|
||||
"Roles": "Roles",
|
||||
"Outbound Emails": "Correos Salientes",
|
||||
"Group Email Accounts": "Grupo de Cuentas de Correo",
|
||||
"Inbound Emails": "Correos Entrantes",
|
||||
"Email Templates": "Plantillas de Correo",
|
||||
"Import": "Importar",
|
||||
"Layout Manager": "Administrador de Diseño",
|
||||
"User Interface": "Interfaz de Usuario",
|
||||
"Auth Tokens": "Tokens Certificados",
|
||||
"Authentication": "Autenticación",
|
||||
"Currency": "Moneda",
|
||||
"Integrations": "Integracion",
|
||||
"Extensions": "Extensiones",
|
||||
"Upload": "Subir",
|
||||
"Installing...": "Instalando...",
|
||||
"Upgrading...": "Actualizando",
|
||||
"Upgraded successfully": "Actualización exitosa",
|
||||
"Installed successfully": "Instalado de forma exitosa",
|
||||
"Ready for upgrade": "Listo para actualizar",
|
||||
"Run Upgrade": "Ejecutar actualización",
|
||||
"Install": "Instalar",
|
||||
"Ready for installation": "Listo para instalación",
|
||||
"Uninstalling...": "Desinstalando",
|
||||
"Uninstalled": "Desinstalado",
|
||||
"Create Entity": "Crear Entidad",
|
||||
"Edit Entity": "Editar Entidad",
|
||||
"Create Link": "Crear Enlace",
|
||||
"Edit Link": "Editar Enlace",
|
||||
"Notifications": "Notificaciones",
|
||||
"Jobs": "Trabajos",
|
||||
"Reset to Default": "Aplicar a valores por defecto",
|
||||
"Email Filters": "Filtros de Correo"
|
||||
},
|
||||
"layouts": {
|
||||
"list": "Lista",
|
||||
"detail": "Detalle",
|
||||
"listSmall": "Lista (Pequeña)",
|
||||
"detailSmall": "Detalle (Pequeño)",
|
||||
"filters": "Filtros de Búsqueda",
|
||||
"massUpdate": "Actualización Masiva",
|
||||
"relationships": "Relaciones"
|
||||
},
|
||||
"fieldTypes": {
|
||||
"address": "Dirección",
|
||||
"array": "Arreglo",
|
||||
"foreign": "Externo",
|
||||
"duration": "Duración",
|
||||
"password": "Contraseña",
|
||||
"parsonName": "Nombre",
|
||||
"autoincrement": "Auto incrementar",
|
||||
"bool": "Boolean",
|
||||
"currency": "Moneda",
|
||||
"date": "Fecha",
|
||||
"datetime": "Fecha/Hora",
|
||||
"datetimeOptional": "Fecha/FechaHora",
|
||||
"email": "Correo electrónico",
|
||||
"enum": "Enum",
|
||||
"enumInt": "Enum Entero",
|
||||
"enumFloat": "Enum Decimal",
|
||||
"float": "Decimal",
|
||||
"int": "Ent",
|
||||
"link": "Enlace",
|
||||
"linkMultiple": "Enlace Múltiple",
|
||||
"linkParent": "Enlace Padre",
|
||||
"multienim": "Multienum",
|
||||
"phone": "Teléfono",
|
||||
"text": "Texto",
|
||||
"url": "Url",
|
||||
"varchar": "Varchar",
|
||||
"file": "Archivo",
|
||||
"image": "Imagen",
|
||||
"multiEnum": "Multi-Enum",
|
||||
"attachmentMultiple": "Multiples Adjuntos",
|
||||
"rangeInt": "Rango de Enteros",
|
||||
"rangeFloat": "Rango de Flotantes",
|
||||
"rangeCurrency": "Rango de Moneda",
|
||||
"wysiwyg": "Wysiwyg",
|
||||
"map": "Mapa"
|
||||
},
|
||||
"fields": {
|
||||
"type": "Tipo",
|
||||
"name": "Nombre",
|
||||
"label": "Etiqueta",
|
||||
"required": "Requerido",
|
||||
"default": "Por Defecto",
|
||||
"maxLength": "Longitud máxima",
|
||||
"options": "Opciones",
|
||||
"after": "Después (campo)",
|
||||
"before": "Antes (campo)",
|
||||
"link": "Enlace",
|
||||
"field": "Campo",
|
||||
"min": "Mínimo",
|
||||
"max": "Máximo",
|
||||
"translation": "Traducción",
|
||||
"previewSize": "Tamaño de vista previa",
|
||||
"noEmptyString": "No cadena vacía",
|
||||
"defaultType": "Tipo por defecto",
|
||||
"seeMoreDisabled": "Desactivar cortar texto",
|
||||
"entityList": "Lista de Entidades",
|
||||
"isSorted": "Esta ordenado (alfabeticamente)",
|
||||
"audited": "Auditada",
|
||||
"trim": "recortado",
|
||||
"height": "Altura (px)",
|
||||
"provider": "Proveedor"
|
||||
},
|
||||
"messages": {
|
||||
"upgradeVersion": "Su EspoCRM será actualizado a la versión <strong>{version}</strong>. Tomará algún tiempo.",
|
||||
"upgradeDone": "Su EspoCRM ha sido actualizado a la versión <strong>{version}</strong>. Refresque su ventana del navegador.",
|
||||
"upgradeBackup": "Le recomendamos que haga copias de seguridad de sus archivos y datos EspoCRM antes de la actualización.",
|
||||
"thousandSeparatorEqualsDecimalMark": "El separador de miles no puede ser el mismo que marca decimal",
|
||||
"userHasNoEmailAddress": "El usuario no tiene dirección de correo electrónico.",
|
||||
"selectEntityType": "Seleccione el tipo de entidad en el menú de la izquierda.",
|
||||
"selectUpgradePackage": "Seleccione Actualizar Paquete",
|
||||
"downloadUpgradePackage": "La descarga necesita paquete(s) actualizados de <a href=\"{url}\">acá</a>.",
|
||||
"selectLayout": "Seleccione el diseño necesario en el menú de la izquierda y editarlo.",
|
||||
"selectExtensionPackage": "Seleccionar extensión del paquete",
|
||||
"extensionInstalled": "La Extensión {name} {version} ha sido instalada",
|
||||
"installExtension": "La Extensión {name} {version} está lista para instalar.",
|
||||
"uninstallConfirmation": "¿Realmente desea desistalar la extensión?"
|
||||
},
|
||||
"descriptions": {
|
||||
"settings": "Configuración del sistema de aplicación.",
|
||||
"scheduledJob": "Trabajos que se ejecutan por cron.(cron Jobs)",
|
||||
"upgrade": "Actualiza EspoCRM.",
|
||||
"clearCache": "Limpiar cache de Administración.",
|
||||
"rebuild": "Reconstruir y limpiar el cache de Administración.",
|
||||
"users": "Gestión de usuarios.",
|
||||
"teams": "Gestión de Equipos",
|
||||
"roles": "Gestión de Roles",
|
||||
"outboundEmails": "Opciones SMTP para correo saliente.",
|
||||
"groupEmailAccounts": "Grupo de Cuentas Correo IMAP. Importación de Correo y Correo a Caso.",
|
||||
"emailTemplates": "Plantillas para mensajes de correo electrónico salientes.",
|
||||
"import": "Importar datos desde CSV.",
|
||||
"layoutManager": "Personalizar diseños (listas, detalles, editar, buscar, actualización masiva).",
|
||||
"entityManager": "Crear entidades personalizadas, editar las existentes. Administrar campo y las relaciones.",
|
||||
"userInterface": "Configurar IU.",
|
||||
"authTokens": "Sesiones certificas activas. Direcciones IP y última fecha de acceso",
|
||||
"authentication": "Opciones de autenticación",
|
||||
"currency": "Opciones y tarifas de Moneda",
|
||||
"extensions": "Instalar o desinstalar extensiones",
|
||||
"integrations": "Integración con los servicios de terceros.",
|
||||
"notifications": "Ajustes de notificaciones In-app y de Correo",
|
||||
"inboundEmails": "Cuentas de correo Grupo IMAP . Importación-correo y dirección de correo electrónico a la sentencia.",
|
||||
"emailFilters": "Los mensajes de correo electrónico que coinciden con el filtro especificado no se importarán."
|
||||
},
|
||||
"options": {
|
||||
"previewSize": {
|
||||
"x-small": "Muy Pequeño",
|
||||
"small": "Pequeño",
|
||||
"medium": "Mediano",
|
||||
"large": "Grande"
|
||||
}
|
||||
"labels": {
|
||||
"Enabled": "Activado",
|
||||
"Disabled": "Desactivado",
|
||||
"System": "Sistema",
|
||||
"Users": "Usuarios",
|
||||
"Email": "Correo electrónico",
|
||||
"Data": "Datos",
|
||||
"Customization": "Personalizar",
|
||||
"Available Fields": "Campos Disponibles",
|
||||
"Layout": "Diseño",
|
||||
"Entity Manager": "Administrador de Entidades\t",
|
||||
"Add Panel": "Añadir Panel",
|
||||
"Add Field": "Añadir Campo",
|
||||
"Settings": "Opciones",
|
||||
"Scheduled Jobs": "Tareas Programadas",
|
||||
"Upgrade": "Actualizar",
|
||||
"Clear Cache": "Limpiar Cache",
|
||||
"Rebuild": "Reconstruir",
|
||||
"Teams": "Equipos",
|
||||
"Roles": "Roles",
|
||||
"Portal": "Portal",
|
||||
"Portals": "Portales",
|
||||
"Portal Roles": "Roles del Portal",
|
||||
"Outbound Emails": "Correos Salientes",
|
||||
"Group Email Accounts": "Grupo de Cuentas de Correo",
|
||||
"Personal Email Accounts": "Cuentas de correo electrónico personales",
|
||||
"Inbound Emails": "Correos Entrantes",
|
||||
"Email Templates": "Plantillas de Correo",
|
||||
"Import": "Importar",
|
||||
"Layout Manager": "Administrador de Diseño",
|
||||
"User Interface": "Interfaz de Usuario",
|
||||
"Auth Tokens": "Tokens Certificados",
|
||||
"Authentication": "Autenticación",
|
||||
"Currency": "Moneda",
|
||||
"Integrations": "Integración",
|
||||
"Extensions": "Extensiones",
|
||||
"Upload": "Subir",
|
||||
"Installing...": "Instalando...",
|
||||
"Upgrading...": "Actualizando",
|
||||
"Upgraded successfully": "Actualización exitosa",
|
||||
"Installed successfully": "Instalado de forma exitosa",
|
||||
"Ready for upgrade": "Listo para actualizar",
|
||||
"Run Upgrade": "Ejecutar actualización",
|
||||
"Install": "Instalar",
|
||||
"Ready for installation": "Listo para instalación",
|
||||
"Uninstalling...": "Desinstalando",
|
||||
"Uninstalled": "Desinstalado",
|
||||
"Create Entity": "Crear Entidad",
|
||||
"Edit Entity": "Editar Entidad",
|
||||
"Create Link": "Crear Enlace",
|
||||
"Edit Link": "Editar Enlace",
|
||||
"Notifications": "Notificaciones",
|
||||
"Jobs": "Trabajos",
|
||||
"Reset to Default": "Aplicar a valores por defecto",
|
||||
"Email Filters": "Filtros de Correo"
|
||||
},
|
||||
"layouts": {
|
||||
"list": "Lista",
|
||||
"detail": "Detalle",
|
||||
"listSmall": "Lista (Pequeña)",
|
||||
"detailSmall": "Detalle (Pequeño)",
|
||||
"filters": "Filtros de Búsqueda",
|
||||
"massUpdate": "Actualización Masiva",
|
||||
"relationships": "Relaciones"
|
||||
},
|
||||
"fieldTypes": {
|
||||
"address": "Dirección",
|
||||
"array": "Arreglo",
|
||||
"foreign": "Externo",
|
||||
"duration": "Duración",
|
||||
"password": "Contraseña",
|
||||
"parsonName": "Nombre",
|
||||
"autoincrement": "Auto incrementar",
|
||||
"bool": "Boolean",
|
||||
"currency": "Moneda",
|
||||
"date": "Fecha",
|
||||
"datetime": "Fecha/Hora",
|
||||
"datetimeOptional": "Fecha/FechaHora",
|
||||
"email": "Correo electrónico",
|
||||
"enum": "Lista",
|
||||
"enumInt": "Lista - Entero",
|
||||
"enumFloat": "Lista - Decimal",
|
||||
"float": "Decimal",
|
||||
"int": "Ent",
|
||||
"link": "Enlace",
|
||||
"linkMultiple": "Enlace Múltiple",
|
||||
"linkParent": "Enlace Padre",
|
||||
"multienim": "Lista Múltiple",
|
||||
"phone": "Teléfono",
|
||||
"text": "Texto",
|
||||
"url": "Url",
|
||||
"varchar": "Varchar",
|
||||
"file": "Archivo",
|
||||
"image": "Imagen",
|
||||
"multiEnum": "Lista-Múltiple",
|
||||
"attachmentMultiple": "Multiples archivos adjuntos",
|
||||
"rangeInt": "Rango de Enteros",
|
||||
"rangeFloat": "Rango de Flotantes",
|
||||
"rangeCurrency": "Rango de Moneda",
|
||||
"wysiwyg": "Wysiwyg",
|
||||
"map": "Mapa",
|
||||
"number": "Número"
|
||||
},
|
||||
"fields": {
|
||||
"type": "Tipo",
|
||||
"name": "Nombre",
|
||||
"label": "Etiqueta",
|
||||
"required": "Requerido",
|
||||
"default": "Por Defecto",
|
||||
"maxLength": "Longitud máxima",
|
||||
"options": "Opciones",
|
||||
"after": "Después (campo)",
|
||||
"before": "Antes (campo)",
|
||||
"link": "Enlace",
|
||||
"field": "Campo",
|
||||
"min": "Mínimo",
|
||||
"max": "Máximo",
|
||||
"translation": "Traducción",
|
||||
"previewSize": "Tamaño de vista previa",
|
||||
"noEmptyString": "No cadena vacía",
|
||||
"defaultType": "Tipo por defecto",
|
||||
"seeMoreDisabled": "Desactivar cortar texto",
|
||||
"entityList": "Lista de Entidades",
|
||||
"isSorted": "Esta ordenado (alfabeticamente)",
|
||||
"audited": "Auditada",
|
||||
"trim": "recortado",
|
||||
"height": "Altura (px)",
|
||||
"minHeight": "Altura mínima (px)",
|
||||
"provider": "Proveedor",
|
||||
"typeList": "Tipo de lista",
|
||||
"rows": "Número de filas del área de texto",
|
||||
"lengthOfCut": "Longitud de corte",
|
||||
"sourceList": "Lista de fuentes",
|
||||
"prefix": "Prefijo",
|
||||
"nextNumber": "Siguiente Número",
|
||||
"padLength": "Longitud del Relleno",
|
||||
"disableFormatting": "Desactivar Formateo"
|
||||
},
|
||||
"messages": {
|
||||
"upgradeVersion": "Su EspoCRM será actualizado a la versión <strong>{version}</strong>. Esto Tomará algún tiempo.",
|
||||
"upgradeDone": "Su EspoCRM ha sido actualizado a la versión <strong>{version}</strong>. Refresque su ventana del navegador.",
|
||||
"upgradeBackup": "Le recomendamos que haga copias de seguridad de sus archivos y datos de EspoCRM antes de la actualización.",
|
||||
"thousandSeparatorEqualsDecimalMark": "El separador de miles no puede ser el mismo que la marca decimal",
|
||||
"userHasNoEmailAddress": "El usuario no tiene dirección de correo electrónico.",
|
||||
"selectEntityType": "Seleccione el tipo de entidad en el menú de la izquierda.",
|
||||
"selectUpgradePackage": "Seleccione Actualizar Paquete",
|
||||
"downloadUpgradePackage": "La descarga necesita paquete(s) actualizados de <a href=\"{url}\">acá</a>.",
|
||||
"selectLayout": "Seleccione el diseño necesario en el menú de la izquierda y editelo.",
|
||||
"selectExtensionPackage": "Seleccionar extensión del paquete",
|
||||
"extensionInstalled": "La Extensión {name} {version} ha sido instalada",
|
||||
"installExtension": "La Extensión {name} {version} está lista para ser instalada.",
|
||||
"uninstallConfirmation": "¿Realmente desea desinstalar la extensión?"
|
||||
},
|
||||
"descriptions": {
|
||||
"settings": "Configuración del sistema de la aplicación.",
|
||||
"scheduledJob": "Trabajos que se ejecutan por cron.(cron Jobs)",
|
||||
"upgrade": "Actualiza EspoCRM.",
|
||||
"clearCache": "Limpiar la cache de la Administración.",
|
||||
"rebuild": "Reconstruir y limpiar la cache de la Administración.",
|
||||
"users": "Gestión de usuarios.",
|
||||
"teams": "Gestión de Equipos",
|
||||
"roles": "Gestión de Roles",
|
||||
"portals": "Gestión de portales.",
|
||||
"portalRoles": "Roles para el portal.",
|
||||
"outboundEmails": "Opciones SMTP para correo saliente.",
|
||||
"groupEmailAccounts": "Grupo de Cuentas Correo IMAP. Importación de Correo y Correo a Caso.",
|
||||
"personalEmailAccounts": "Cuentas de correo electrónico del usuario",
|
||||
"emailTemplates": "Plantillas para mensajes de correo electrónico salientes.",
|
||||
"import": "Importar datos desde CSV.",
|
||||
"layoutManager": "Personalizar diseños (listas, detalles, editar, buscar, actualización masiva).",
|
||||
"entityManager": "Crear entidades personalizadas, editar las existentes. Administrar campo y las relaciones.",
|
||||
"userInterface": "Configurar IU.",
|
||||
"authTokens": "Sesiones certificas activas. Direcciones IP y última fecha de acceso",
|
||||
"authentication": "Opciones de autentificación",
|
||||
"currency": "Opciones y tarifas de Moneda",
|
||||
"extensions": "Instalar o desinstalar extensiones",
|
||||
"integrations": "Integración con los servicios de terceros.",
|
||||
"notifications": "Ajustes de notificaciones In-app y de Correo",
|
||||
"inboundEmails": "Cuentas de correo Grupo IMAP . Importación-correo y dirección de correo electrónico a la sentencia.",
|
||||
"emailFilters": "Los mensajes de correo electrónico que coinciden con el filtro especificado no se importarán."
|
||||
},
|
||||
"options": {
|
||||
"previewSize": {
|
||||
"x-small": "Muy Pequeño",
|
||||
"small": "Pequeño",
|
||||
"medium": "Mediano",
|
||||
"large": "Grande"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"insertFromSourceLabels": {
|
||||
"Document": "Insertar documento"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,8 @@
|
||||
{
|
||||
"fields": {
|
||||
"user": "Usuario",
|
||||
"ipAddress": "Dirección IP",
|
||||
"lastAccess": "Fecha Último Acceso",
|
||||
"createdAt": "Creado el"
|
||||
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"user": "Usuario",
|
||||
"ipAddress": "Dirección IP",
|
||||
"lastAccess": "Fecha del Último Acceso",
|
||||
"createdAt": "Creado el"
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,23 @@
|
||||
{
|
||||
"fields": {
|
||||
"title": "Título",
|
||||
"dateFrom": "Fecha desde",
|
||||
"dateTo": "Fecha hasta",
|
||||
"autorefreshInterval": "Actualizar cada:",
|
||||
"displayRecords": "Mostrar Registros",
|
||||
"isDoubleHeight": "Altitud 2x",
|
||||
"mode": "Modo",
|
||||
"enabledScopeList": "Qué mostrar"
|
||||
},
|
||||
"options": {
|
||||
"mode": {
|
||||
"agendaWeek": "Semana (orden del día)",
|
||||
"basicWeek": "Semana",
|
||||
"month": "Mes"
|
||||
}
|
||||
"fields": {
|
||||
"title": "Título",
|
||||
"dateFrom": "Fecha desde",
|
||||
"dateTo": "Fecha hasta",
|
||||
"autorefreshInterval": "Actualizar cada:",
|
||||
"displayRecords": "Mostrar Registros",
|
||||
"isDoubleHeight": "Altitud 2x",
|
||||
"mode": "Modo",
|
||||
"enabledScopeList": "Qué mostrar",
|
||||
"users": "Usuarios"
|
||||
},
|
||||
"options": {
|
||||
"mode": {
|
||||
"agendaWeek": "Semana (orden del día)",
|
||||
"basicWeek": "Semana",
|
||||
"month": "Mes",
|
||||
"basicDay": "Día",
|
||||
"agendaDay": "Día (agenda)",
|
||||
"timeline": "Línea de tiempo"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,90 +1,104 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Asunto",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateSent": "Enviado",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"replyTo": "Responder a",
|
||||
"replyToString": "Responder a (String)",
|
||||
"isHtml": "Es Html",
|
||||
"body": "Cuerpo",
|
||||
"subject": "Asunto",
|
||||
"attachments": "Adjuntos",
|
||||
"selectTemplate": "Seleccione una Plantilla",
|
||||
"fromEmailAddress": "De la dirección",
|
||||
"toEmailAddresses": "a la Dirección",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"deliveryDate": "Fecha Entrega",
|
||||
"account": "Cuenta",
|
||||
"users": "Usuarios",
|
||||
"replied": "Respondió",
|
||||
"replies": "Respuestas",
|
||||
"isRead": "Es leído",
|
||||
"isImportant": "Es Importante",
|
||||
"isUsers": "Es del Usuario",
|
||||
"inTrash": "En Papelera",
|
||||
"Move to Trash": "Mover a la Papelera",
|
||||
"Retrieve from Trash": "Recuperar de la Papelera"
|
||||
},
|
||||
"links": {
|
||||
"replied": "Respondió",
|
||||
"replies": "Respuestas"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Borrador",
|
||||
"Sending": "Enviando",
|
||||
"Sent": "Enviado",
|
||||
"Archived": "Archivado",
|
||||
"Received": "Recibido",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Email": "Archivar Correo",
|
||||
"Archive Email": "Archivar Correo",
|
||||
"Compose": "Nuevo",
|
||||
"Reply": "Responder",
|
||||
"Reply to All": "Responder a Todos",
|
||||
"Forward": "Reenviar",
|
||||
"Original message": "Mensaje Original",
|
||||
"Forwarded message": "Mensaje reenviado",
|
||||
"Email Accounts": "Cuentas de Correo Electrónico",
|
||||
"Inbound Emails": "Grupo de Cuentas de Correo",
|
||||
"Email Templates": "Plantillas de Correo",
|
||||
"Send Test Email": "Send Test Email",
|
||||
"Send": "Enviar",
|
||||
"Email Address": "Correo Electrónico",
|
||||
"Mark Read": "Marcar como Leído",
|
||||
"Sending...": "Enviando...",
|
||||
"Save Draft": "Guardar Borrador",
|
||||
"Mark all as read": "Marcar todos como leídos",
|
||||
"Show Plain Text": "Ver en texto plano",
|
||||
"Mark as Important": "Marcar como Importante",
|
||||
"Unmark Importance": "Marcar como No Importante"
|
||||
},
|
||||
"messages": {
|
||||
"noSmtpSetup": "No SMTP setup. {link}.",
|
||||
"testEmailSent": "Test email has been sent",
|
||||
"emailSent": "El correo ha sido enviado",
|
||||
"savedAsDraft": "Guardado como borrador"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Enviado",
|
||||
"archived": "Archivado",
|
||||
"inbox": "Bandeja de Entrada",
|
||||
"drafts": "Borradores",
|
||||
"trash": "Papelera"
|
||||
},
|
||||
"massActions": {
|
||||
"markAsRead": "Mark as Read",
|
||||
"markAsNotRead": "Marcar como No Leído",
|
||||
"markAsImportant": "Marcar como Importante",
|
||||
"markAsNotImportant": "Marcar como No Importante",
|
||||
"moveToTrash": "Mover a la Papelera"
|
||||
"fields": {
|
||||
"name": "Asunto",
|
||||
"parent": "Padre",
|
||||
"status": "Estado",
|
||||
"dateSent": "Enviado",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"replyTo": "Responder a",
|
||||
"replyToString": "Responder a (String)",
|
||||
"isHtml": "Es Html",
|
||||
"body": "Cuerpo",
|
||||
"subject": "Asunto",
|
||||
"attachments": "Adjuntos",
|
||||
"selectTemplate": "Seleccione una Plantilla",
|
||||
"fromEmailAddress": "De la dirección",
|
||||
"toEmailAddresses": "a la Dirección",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"deliveryDate": "Fecha Entrega",
|
||||
"account": "Cuenta",
|
||||
"users": "Usuarios",
|
||||
"replied": "Respondió",
|
||||
"replies": "Respuestas",
|
||||
"isRead": "Es leído",
|
||||
"isNotRead": "No se lee",
|
||||
"isImportant": "Es Importante",
|
||||
"isReplied": "Se contesta",
|
||||
"isNotReplied": "No se responde",
|
||||
"isUsers": "Es del Usuario",
|
||||
"inTrash": "En Papelera",
|
||||
"sentBy": "Enviado por (Usuario)",
|
||||
"folder": "Carpeta",
|
||||
"inboundEmails": "Cuentas de grupo",
|
||||
"emailAccounts": "Las cuentas personales"
|
||||
},
|
||||
"links": {
|
||||
"replied": "Respondió",
|
||||
"replies": "Respuestas",
|
||||
"inboundEmails": "Cuentas de grupo",
|
||||
"emailAccounts": "Las cuentas personales"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Draft": "Borrador",
|
||||
"Sending": "Enviando",
|
||||
"Sent": "Enviado",
|
||||
"Archived": "Archivado",
|
||||
"Received": "Recibido",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create Email": "Archivar Correo",
|
||||
"Archive Email": "Archivar Correo",
|
||||
"Compose": "Nuevo",
|
||||
"Reply": "Responder",
|
||||
"Reply to All": "Responder a Todos",
|
||||
"Forward": "Reenviar",
|
||||
"Original message": "Mensaje Original",
|
||||
"Forwarded message": "Mensaje reenviado",
|
||||
"Email Accounts": "Cuentas de Correo Electrónico",
|
||||
"Inbound Emails": "Grupo de Cuentas de Correo",
|
||||
"Email Templates": "Plantillas de Correo",
|
||||
"Send Test Email": "Enviar correo electrónico de prueba",
|
||||
"Send": "Enviar",
|
||||
"Email Address": "Correo Electrónico",
|
||||
"Mark Read": "Marcar como Leído",
|
||||
"Sending...": "Enviando...",
|
||||
"Save Draft": "Guardar Borrador",
|
||||
"Mark all as read": "Marcar todos como leídos",
|
||||
"Show Plain Text": "Ver en texto plano",
|
||||
"Mark as Important": "Marcar como Importante",
|
||||
"Unmark Importance": "Marcar como No Importante",
|
||||
"Move to Trash": "Mover a la papelera",
|
||||
"Retrieve from Trash": "Recuperar de la Papelera",
|
||||
"Move to Folder": "Mover a la carpeta",
|
||||
"Filters": "filtros",
|
||||
"Folders": "Carpetas"
|
||||
},
|
||||
"messages": {
|
||||
"noSmtpSetup": "Sin configuración SMTP. {link}.",
|
||||
"testEmailSent": "La prueba de correo electrónico ha sido enviada.",
|
||||
"emailSent": "El correo ha sido enviado",
|
||||
"savedAsDraft": "Guardado como borrador"
|
||||
},
|
||||
"presetFilters": {
|
||||
"sent": "Enviado",
|
||||
"archived": "Archivado",
|
||||
"inbox": "Bandeja de Entrada",
|
||||
"drafts": "Borradores",
|
||||
"trash": "Papelera",
|
||||
"important": "Importante"
|
||||
},
|
||||
"massActions": {
|
||||
"markAsRead": "Marcar como leído",
|
||||
"markAsNotRead": "Marcar como No Leído",
|
||||
"markAsImportant": "Marcar como Importante",
|
||||
"markAsNotImportant": "Marcar como No Importante",
|
||||
"moveToTrash": "Mover a la Papelera",
|
||||
"moveToFolder": "Mover a la carpeta"
|
||||
}
|
||||
}
|
||||
@@ -1,40 +1,51 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"host": "Host",
|
||||
"username": "Nombre de Usuario",
|
||||
"password": "Contraseña",
|
||||
"port": "Puerto",
|
||||
"monitoredFolders": "Carpetas supervisadas",
|
||||
"ssl": "SSL",
|
||||
"fetchSince": "Traer Desde",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"sentFolder": "Carpeta de Enviados",
|
||||
"storeSentEmails": "Almacenar Correos Enviados",
|
||||
"keepFetchedEmailsUnread": "Mantener los correo que se han obtenido sin leer"
|
||||
},
|
||||
"links": {
|
||||
"filters": "Filtros"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailAccount": "Crear Cuenta de Correo Electrónico",
|
||||
"IMAP": "IMAP",
|
||||
"Main": "Principal",
|
||||
"Test Connection": "Probar conexión"
|
||||
},
|
||||
"messages": {
|
||||
"couldNotConnectToImap": "No se pudo conectar con el servidor IMAP",
|
||||
"connectionIsOk": "Conexión correcta"
|
||||
},
|
||||
"tooltips": {
|
||||
"monitoredFolders": "Usted puede agregar la carpeta 'Enviado' para sincronizar los correos enviados desde el cliente externo.",
|
||||
"storeSentEmails": "Mensajes enviados se almacenan en el servidor IMAP. Email Address should much address an email is being sent from."
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"host": "Host",
|
||||
"username": "Nombre de Usuario",
|
||||
"password": "Contraseña",
|
||||
"port": "Puerto",
|
||||
"monitoredFolders": "Carpetas supervisadas",
|
||||
"ssl": "SSL",
|
||||
"fetchSince": "Traer Desde",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"sentFolder": "Carpeta de Enviados",
|
||||
"storeSentEmails": "Almacenar Correos Enviados",
|
||||
"keepFetchedEmailsUnread": "Mantener los correos que se han obtenido sin leer",
|
||||
"emailFolder": "Poner en la carpeta",
|
||||
"useSmtp": "Utilizar SMTP",
|
||||
"smtpHost": "Host SMTP",
|
||||
"smtpPort": "Puerto SMTP",
|
||||
"smtpAuth": "Autentificación SMTP",
|
||||
"smtpSecurity": "Seguridad SMTP",
|
||||
"smtpUsername": "Nombre de usuario SMTP",
|
||||
"smtpPassword": "Contraseña SMTP"
|
||||
},
|
||||
"links": {
|
||||
"filters": "Filtros",
|
||||
"emails": "Correos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailAccount": "Crear Cuenta de Correo Electrónico",
|
||||
"IMAP": "IMAP",
|
||||
"Main": "Principal",
|
||||
"Test Connection": "Probar conexión",
|
||||
"Send Test Email": "Enviar correo electrónico de prueba",
|
||||
"SMTP": "SMTP"
|
||||
},
|
||||
"messages": {
|
||||
"couldNotConnectToImap": "No se pudo conectar con el servidor IMAP",
|
||||
"connectionIsOk": "Conexión correcta"
|
||||
},
|
||||
"tooltips": {
|
||||
"monitoredFolders": "Usted puede agregar la carpeta 'Enviado' para sincronizar los correos enviados desde el cliente externo.",
|
||||
"storeSentEmails": "Los mensajes enviados se almacenan en el servidor IMAP. La dirección de email debe coincidir con la dirección de un correo electrónico que se envía desde."
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"labels": {
|
||||
"Primary": "Primario",
|
||||
"Opted Out": "optado por no",
|
||||
"Invalid": "Inválido"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Primary": "Primario",
|
||||
"Opted Out": "optado por no",
|
||||
"Invalid": "Inválido"
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,29 @@
|
||||
{
|
||||
"fields": {
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"subject": "Asunto",
|
||||
"bodyContains": "Contenido del Cuerpo"
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailFilter": "Crear un filtro de email"
|
||||
},
|
||||
"tooltips": {
|
||||
"name": "Sólo un nombre del filtro",
|
||||
"subject": "Use wildcard *:\n\ntext* - starts with text,\n*text* - contains text,\n*text - ends with text.",
|
||||
"bodyContains": "El cuerpo del mensaje contiene cualquiera de las palabras o frases especificadas",
|
||||
"from": "Los correos enviados desde la dirección especificada. Dejar en blanco si no es necesario.",
|
||||
"to": "Los correos electrónicos que se envían a la dirección especificada. Dejar en blanco si no es necesario.",
|
||||
"parent": "Déjelo vacío para aplicar este filtro a nivel globalmente (a todos los correos entrantes)."
|
||||
"fields": {
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"subject": "Asunto",
|
||||
"bodyContains": "Contenido del Cuerpo",
|
||||
"action": "Acción",
|
||||
"isGlobal": "Es global",
|
||||
"emailFolder": "Carpeta"
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailFilter": "Crear un filtro de email",
|
||||
"Emails": "Correos"
|
||||
},
|
||||
"options": {
|
||||
"action": {
|
||||
"Skip": "Ignorar",
|
||||
"Move to Folder": "Poner en la carpeta"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"name": "Sólo un nombre del filtro",
|
||||
"subject": "El uso de comodines *:\n\ntext* - comienza con el texto,\n*text* - contiene el texto,\n*text - termina con el texto.",
|
||||
"bodyContains": "El cuerpo del mensaje contiene cualquiera de las palabras o frases especificadas",
|
||||
"from": "Los correos enviados desde la dirección especificada. Dejar en blanco si no es necesario.",
|
||||
"to": "Los correos electrónicos que se envían a la dirección especificada. Dejar en blanco si no es necesario.",
|
||||
"isGlobal": "Se aplica este filtro a todos los mensajes entrantes al sistema."
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"fields": {
|
||||
"skipNotifications": "Omitir Notificaciones"
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailFolder": "Crear carpeta",
|
||||
"Manage Folders": "Administrar carpetas",
|
||||
"Emails": "Correos"
|
||||
}
|
||||
}
|
||||
@@ -1,27 +1,25 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"isHtml": "Es Html",
|
||||
"body": "Cuerpo",
|
||||
"subject": "Asunto",
|
||||
"attachments": "Adjuntos",
|
||||
"insertField": "Insertar Campo",
|
||||
"oneOff": "Único"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailTemplate": "Crear Plantilla de Correo",
|
||||
"Info": "Información"
|
||||
},
|
||||
"messages": {
|
||||
"infoText": "Available variables:\n\n{optOutUrl} – URL for an unsubsbribe link};\n\n{optOutLink} – an unsubscribe link."
|
||||
},
|
||||
"tooltips": {
|
||||
"oneOff": "Compruebe si usted va a utilizar esta plantilla sólo una vez. Por ejemplo: para Correo Masivo."
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Actuales"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"isHtml": "Es Html",
|
||||
"body": "Cuerpo",
|
||||
"subject": "Asunto",
|
||||
"attachments": "Adjuntos",
|
||||
"insertField": "Insertar Campo",
|
||||
"oneOff": "Único"
|
||||
},
|
||||
"labels": {
|
||||
"Create EmailTemplate": "Crear Plantilla de Correo",
|
||||
"Info": "Información"
|
||||
},
|
||||
"messages": {
|
||||
"infoText": "Las variables disponibles:\n\n{optOutUrl} – URL de un enlace de baja};\n\n{optOutLink} – un enlace para anular."
|
||||
},
|
||||
"tooltips": {
|
||||
"oneOff": "Compruebe si usted va a utilizar esta plantilla sólo una vez. Por ejemplo: para Correo Masivo."
|
||||
},
|
||||
"presetFilters": {
|
||||
"actual": "Actuales"
|
||||
}
|
||||
}
|
||||
@@ -1,48 +1,51 @@
|
||||
{
|
||||
"labels": {
|
||||
"Fields": "Campos",
|
||||
"Relationships": "Relaciones"
|
||||
"labels": {
|
||||
"Fields": "Campos",
|
||||
"Relationships": "Relaciones"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"type": "Tipo",
|
||||
"labelSingular": "Etiqueta en Singular",
|
||||
"labelPlural": "Etiqueta en Plural",
|
||||
"stream": "Actividad",
|
||||
"label": "Etiqueta",
|
||||
"linkType": "Tipo de enlace",
|
||||
"entityForeign": "Entidad Foránea",
|
||||
"linkForeign": "Enlace Foráneo",
|
||||
"link": "Enlace",
|
||||
"labelForeign": "Etiqueta Foránea",
|
||||
"sortBy": "Orden por defecto (campo)",
|
||||
"sortDirection": "Orden por defecto (dirección)",
|
||||
"relationName": "Nombre de la Tabla Intermedia",
|
||||
"linkMultipleField": "Enlaza Múltiples Campos",
|
||||
"linkMultipleFieldForeign": "Enlaza Múltiples Campos foráneos",
|
||||
"disabled": "Deshabilitar",
|
||||
"textFilterFields": "Los campos de filtro de texto"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"": "Ninguno",
|
||||
"Base": "Base",
|
||||
"Person": "Persona",
|
||||
"CategoryTree": "Árbol de Categorías",
|
||||
"Event": "Evento"
|
||||
},
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"type": "Tipo",
|
||||
"labelSingular": "Etiqueta en Singular",
|
||||
"labelPlural": "Etiqueta en Plural",
|
||||
"stream": "Actividad",
|
||||
"label": "Etiqueta",
|
||||
"linkType": "Tipo de enlace",
|
||||
"entityForeign": "Entidad Foránea",
|
||||
"linkForeign": "Enlace Foráneo",
|
||||
"link": "Enlace",
|
||||
"labelForeign": "Etiqueta Foránea",
|
||||
"sortBy": "Orden por defecto (campo)",
|
||||
"sortDirection": "Orden por defecto (dirección)",
|
||||
"relationName": "Nombre de la Tabla Intermedia",
|
||||
"linkMultipleField": "Enlaza Múltiples Campos",
|
||||
"linkMultipleFieldForeign": "Enlaza Múltiples Campos foráneos"
|
||||
"linkType": {
|
||||
"manyToMany": "Mucho-a-Muchos",
|
||||
"oneToMany": "Uno-a-Muchos",
|
||||
"manyToOne": "Muchos-a-uno",
|
||||
"parentToChildren": "Padres-a-Hijos",
|
||||
"childrenToParent": "Hijos-a-Padres"
|
||||
},
|
||||
"options": {
|
||||
"type": {
|
||||
"": "Ninguno",
|
||||
"Base": "Base",
|
||||
"Person": "Persona",
|
||||
"CategoryTree": "Árbol de Categorías"
|
||||
},
|
||||
"linkType": {
|
||||
"manyToMany": "Mucho-a-Muchos",
|
||||
"oneToMany": "Uno-a-Muchos",
|
||||
"manyToOne": "Muchos-a-uno",
|
||||
"parentToChildren": "Padres-a-Hijos",
|
||||
"childrenToParent": "Hijos-a-Padres"
|
||||
},
|
||||
"sortDirection": {
|
||||
"asc": "Ascendente",
|
||||
"desc": "Descendente"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"entityCreated": "La entidad ha sido creada",
|
||||
"linkAlreadyExists": "Conflicto de nombres en el enlace.",
|
||||
"linkConflict": "Un enlace con el mismo nombra ya existe."
|
||||
"sortDirection": {
|
||||
"asc": "Ascendente",
|
||||
"desc": "Descendente"
|
||||
}
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"entityCreated": "La entidad ha sido creada",
|
||||
"linkAlreadyExists": "Conflicto de nombres en el enlace.",
|
||||
"linkConflict": "Un enlace con el mismo nombra ya existe."
|
||||
}
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"version": "Version",
|
||||
"description": "Descripción",
|
||||
"isInstalled": "Instalado"
|
||||
},
|
||||
"labels": {
|
||||
"Uninstall": "Desinstalar",
|
||||
"Install": "Instalar"
|
||||
},
|
||||
"messages": {
|
||||
"uninstalled": "Extension {name} ha sido desinstalada"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"version": "Versión",
|
||||
"description": "Descripción",
|
||||
"isInstalled": "Instalado"
|
||||
},
|
||||
"labels": {
|
||||
"Uninstall": "Desinstalar",
|
||||
"Install": "Instalar"
|
||||
},
|
||||
"messages": {
|
||||
"uninstalled": "Extensión {name} ha sido desinstalada"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,6 @@
|
||||
{
|
||||
"labels": {
|
||||
"Connect": "Conectar",
|
||||
"Connected": "Conectado"
|
||||
},
|
||||
"help": {
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Connect": "Conectar",
|
||||
"Connected": "Conectado"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,36 +1,63 @@
|
||||
{
|
||||
"labels": {
|
||||
"Revert Import": "Revertir Importación",
|
||||
"Return to Import": "Regreso a Importar",
|
||||
"Run Import": "Ejecutar Importación",
|
||||
"Back": "Anterior",
|
||||
"Field Mapping": "Mapeo de Campo",
|
||||
"Default Values": "Valores por Defecto",
|
||||
"Add Field": "Añadir Campo",
|
||||
"Created": "Creado",
|
||||
"Updated": "Actualizado",
|
||||
"Result": "Resultado",
|
||||
"Show records": "Mostrar registros",
|
||||
"Remove Duplicates": "Eliminar Duplicados\t",
|
||||
"importedCount": "Importado (recuento)",
|
||||
"duplicateCount": "Duplicados (recuento)",
|
||||
"updatedCount": "Actualizado (recuento)",
|
||||
"Create Only": "Sólo crear",
|
||||
"Create and Update": "Crear y Actualizar",
|
||||
"Update Only": "Sólo actualizar",
|
||||
"Update by": "Actualizado por",
|
||||
"Set as Not Duplicate": "Establecer como No Duplicado",
|
||||
"File (CSV)": "Archivo (CSV)"
|
||||
},
|
||||
"messages": {
|
||||
"utf8": "Debe ser codificado en UTF-8",
|
||||
"duplicatesRemoved": "Duplicados removidos"
|
||||
},
|
||||
"fields": {
|
||||
"file": "Archivo",
|
||||
"entityType": "Tipo de Entidad",
|
||||
"imported": "Registros Importados",
|
||||
"duplicates": "registros Duplicados",
|
||||
"updated": "registros Actualizados"
|
||||
}
|
||||
}
|
||||
"labels": {
|
||||
"Revert Import": "Revertir Importación",
|
||||
"Return to Import": "Regreso a Importar",
|
||||
"Run Import": "Ejecutar Importación",
|
||||
"Back": "Anterior",
|
||||
"Field Mapping": "Mapeo de Campo",
|
||||
"Default Values": "Valores por Defecto",
|
||||
"Add Field": "Añadir Campo",
|
||||
"Created": "Creado",
|
||||
"Updated": "Actualizado",
|
||||
"Result": "Resultado",
|
||||
"Show records": "Mostrar registros",
|
||||
"Remove Duplicates": "Eliminar Duplicados\t",
|
||||
"importedCount": "Importado (recuento)",
|
||||
"duplicateCount": "Duplicados (recuento)",
|
||||
"updatedCount": "Actualizado (recuento)",
|
||||
"Create Only": "Sólo crear",
|
||||
"Create and Update": "Crear y Actualizar",
|
||||
"Update Only": "Sólo actualizar",
|
||||
"Update by": "Actualizado por",
|
||||
"Set as Not Duplicate": "Establecer como No Duplicado",
|
||||
"File (CSV)": "Archivo (CSV)",
|
||||
"First Row Value": "En primer valor de la fila",
|
||||
"Skip": "Omitir",
|
||||
"Header Row Value": "Fila de encabezado Valor",
|
||||
"Field": "Campo",
|
||||
"What to Import?": "¿Lo que hay que importar?",
|
||||
"Entity Type": "Tipo de entidad",
|
||||
"What to do?": "¿Qué hacer?",
|
||||
"Properties": "Propiedades",
|
||||
"Header Row": "Fila de encabezado",
|
||||
"Person Name Format": "Formato del nombre de persona",
|
||||
"John Smith": "John Smith",
|
||||
"Smith John": "Smith John",
|
||||
"Smith, John": "Smith, John",
|
||||
"Field Delimiter": "Delimitador de campo",
|
||||
"Date Format": "Formato de fecha",
|
||||
"Decimal Mark": "Decimal Mark",
|
||||
"Text Qualifier": "Text Qualifier",
|
||||
"Time Format": "Formato de tiempo",
|
||||
"Currency": "Moneda",
|
||||
"Preview": "Avance",
|
||||
"Next": "Siguiente",
|
||||
"Step 1": "Paso 1",
|
||||
"Step 2": "Paso 2",
|
||||
"Double Quote": "Double Quote",
|
||||
"Single Quote": "Single Quote",
|
||||
"Imported": "Importado",
|
||||
"Duplicates": "Duplicados"
|
||||
},
|
||||
"messages": {
|
||||
"utf8": "Debe ser codificado en UTF-8",
|
||||
"duplicatesRemoved": "Duplicados removidos"
|
||||
},
|
||||
"fields": {
|
||||
"file": "Archivo",
|
||||
"entityType": "Tipo de Entidad",
|
||||
"imported": "Registros Importados",
|
||||
"duplicates": "registros Duplicados",
|
||||
"updated": "registros Actualizados"
|
||||
}
|
||||
}
|
||||
@@ -1,59 +1,61 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"team": "Equipo",
|
||||
"status": "Estado",
|
||||
"assignToUser": "Asignar al Usuario",
|
||||
"host": "Host",
|
||||
"username": "Nombre de Usuario",
|
||||
"password": "Contraseña",
|
||||
"port": "Puerto",
|
||||
"monitoredFolders": "Carpetas supervisadas",
|
||||
"trashFolder": "Carpeta de Papelera",
|
||||
"ssl": "SSL",
|
||||
"createCase": "Crear Caso",
|
||||
"reply": "Respuesta Automática",
|
||||
"caseDistribution": "Distribución de Caso",
|
||||
"replyEmailTemplate": "Plantilla de Respuesta de Correo",
|
||||
"replyFromAddress": "Respuesta de la Dirección",
|
||||
"replyToAddress": "Responder a la Dirección",
|
||||
"replyFromName": "Respuesta de Nombre",
|
||||
"targetUserPosition": "Objetivo Posición Usuario",
|
||||
"fetchSince": "Traer Desde",
|
||||
"addAllTeamUsers": "Para todos los usuarios del equipo"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"emailAddress": "Correo Electrónico",
|
||||
"team": "Equipo",
|
||||
"status": "Estado",
|
||||
"assignToUser": "Asignar al Usuario",
|
||||
"host": "Host",
|
||||
"username": "Nombre de Usuario",
|
||||
"password": "Contraseña",
|
||||
"port": "Puerto",
|
||||
"monitoredFolders": "Carpetas supervisadas",
|
||||
"trashFolder": "Carpeta de Papelera",
|
||||
"ssl": "SSL",
|
||||
"createCase": "Crear Caso",
|
||||
"reply": "Respuesta Automática",
|
||||
"caseDistribution": "Distribución de Caso",
|
||||
"replyEmailTemplate": "Plantilla de Respuesta de Correo",
|
||||
"replyFromAddress": "Respuesta de la Dirección",
|
||||
"replyToAddress": "Responder a la Dirección",
|
||||
"replyFromName": "Respuesta de Nombre",
|
||||
"targetUserPosition": "Objetivo Posición Usuario",
|
||||
"fetchSince": "Traer Desde",
|
||||
"addAllTeamUsers": "Para todos los usuarios del equipo"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Notifique a los remitentes de correo que han recibido sus mensajes.\n\n Sólo un correo será enviado a un destinatario particular durante un período de tiempo para evitar bucles.",
|
||||
"createCase": "Automaticamente crear un Caso de los correos entrantes.",
|
||||
"replyToAddress": "Especifique la dirección de correo de este buzón para hacer que las respuestas vegan aquí.",
|
||||
"caseDistribution": "¿Cómo serán asignados a los casos? Asignados directamente a un usuario o al equipo.",
|
||||
"assignToUser": "Correos de usuarios/Casos serán asignados a.",
|
||||
"team": "Correo del equipo/Casos relacionados con.",
|
||||
"targetUserPosition": "Definir la posición de los usuarios que se distribuirán con los casos.",
|
||||
"addAllTeamUsers": "Los correos van a aparecer en la Bandeja de Entrada de todos los usuarios de un equipo específico."
|
||||
},
|
||||
"links": {
|
||||
"filters": "Filtros",
|
||||
"emails": "Los correos electrónicos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Notifique a los remitentes de correo que han recibido sus mensajes.\n\n Sólo un correo será enviado a un destinatario particular durante un período de tiempo para evitar bucles.",
|
||||
"createCase": "Automaticamente crear un Caso de los correos entrantes.",
|
||||
"replyToAddress": "Especifique la dirección de correo de este buzón para hacer que las respuestas vegan aquí.",
|
||||
"caseDistribution": "¿Cómo serán asignados a los casos? Asignados directamente a un usuario o al equipo.",
|
||||
"assignToUser": "Correos de usuarios/Casos serán asignados a.",
|
||||
"team": "Correo del equipo/Casos relacionados con.",
|
||||
"targetUserPosition": "Definir la posición de los usuarios que se distribuirán con los casos.",
|
||||
"addAllTeamUsers": "Los correos van a aparecer en la Bandeja de Entrada de todos los usuarios de un equipo específico."
|
||||
},
|
||||
"links": {
|
||||
"filters": "Filtros"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
},
|
||||
"caseDistribution": {
|
||||
"Direct-Assignment": "Asignación directa",
|
||||
"Round-Robin": "Round-Robin",
|
||||
"Least-Busy": "Menos Ocupado"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Crear Cuenta de Correo Electrónico",
|
||||
"IMAP": "IMAP",
|
||||
"Actions": "Acciones",
|
||||
"Main": "Principal"
|
||||
},
|
||||
"messages": {
|
||||
"couldNotConnectToImap": "No se pudo conectar con el servidor IMAP"
|
||||
"caseDistribution": {
|
||||
"": "Ninguna",
|
||||
"Direct-Assignment": "Asignación directa",
|
||||
"Round-Robin": "Round-Robin",
|
||||
"Least-Busy": "Menos Ocupado"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Create InboundEmail": "Crear Cuenta de Correo Electrónico",
|
||||
"IMAP": "IMAP",
|
||||
"Actions": "Acciones",
|
||||
"Main": "Principal"
|
||||
},
|
||||
"messages": {
|
||||
"couldNotConnectToImap": "No se pudo conectar con el servidor IMAP"
|
||||
}
|
||||
}
|
||||
@@ -1,15 +1,20 @@
|
||||
{
|
||||
"fields": {
|
||||
"enabled": "Activado",
|
||||
"clientId": "ID Cliente",
|
||||
"clientSecret": "Secreto Cliente",
|
||||
"redirectUri": "Redireccionar URI"
|
||||
},
|
||||
"messages": {
|
||||
"selectIntegration": "Seleccionar una integración en menú",
|
||||
"noIntegrations": "No hay integraciones disponibles"
|
||||
},
|
||||
"help": {
|
||||
"Google": "<p><b>Obtener las credenciales de OAuth 2.0 desde la Consola de Google Developers.</b></p><p>Visita <a href=\"https://console.developers.google.com/project\">Consola Google Developers</a> para obtener las credenciales de OAuth 2.0 tales como ID Cliente y Secreto de Cliente que son conocidos por ambos Google y la aplicación EspoCRM.</p>"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"enabled": "Activado",
|
||||
"clientId": "ID Cliente",
|
||||
"clientSecret": "Cliente Secreto",
|
||||
"redirectUri": "Redireccionar URI",
|
||||
"apiKey": "Clave API"
|
||||
},
|
||||
"titles": {
|
||||
"GoogleMaps": "Google Maps"
|
||||
},
|
||||
"messages": {
|
||||
"selectIntegration": "Seleccionar una integración en menú",
|
||||
"noIntegrations": "No hay integraciones disponibles"
|
||||
},
|
||||
"help": {
|
||||
"Google": "<p><b>Obtener las credenciales de OAuth 2.0 desde la Consola de Google Developers.</b></p><p>Visita <a href=\"https://console.developers.google.com/project\">Consola Google Developers</a> para obtener las credenciales de OAuth 2.0 tales como ID Cliente y Secreto de Cliente que son conocidos por ambos Google y la aplicación EspoCRM.</p>",
|
||||
"GoogleMaps": "<p>Obtener clave API <a href=\"https://developers.google.com/maps/documentation/javascript/get-api-key\">aquí</a>.</p>"
|
||||
}
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"fields": {
|
||||
"status": "Estado",
|
||||
"executeTime": "Ejecutar a",
|
||||
"attempts": "Intentos Izquierda",
|
||||
"failedAttempts": "Intentos Fallidos",
|
||||
"serviceName": "Servicio",
|
||||
"method": "Método",
|
||||
"scheduledJob": "Tarea Programada",
|
||||
"data": "Datos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "Pendiente",
|
||||
"Success": "Exitoso",
|
||||
"Running": "Corriendo",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
"fields": {
|
||||
"status": "Estado",
|
||||
"executeTime": "Ejecutar a",
|
||||
"attempts": "Intentos Izquierda",
|
||||
"failedAttempts": "Intentos Fallidos",
|
||||
"serviceName": "Servicio",
|
||||
"method": "Método",
|
||||
"scheduledJob": "Tarea Programada",
|
||||
"data": "Datos"
|
||||
},
|
||||
"options": {
|
||||
"status": {
|
||||
"Pending": "Pendiente",
|
||||
"Success": "Exitoso",
|
||||
"Running": "Corriendo",
|
||||
"Failed": "Falló"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"fields": {
|
||||
"width": "Ancho (%)",
|
||||
"link": "Enlace",
|
||||
"notSortable": "No ordenable",
|
||||
"align": "Alinear"
|
||||
},
|
||||
"options": {
|
||||
"align": {
|
||||
"left": "Izquierda",
|
||||
"right": "Derecha"
|
||||
}
|
||||
"fields": {
|
||||
"width": "Ancho (%)",
|
||||
"link": "Enlace",
|
||||
"notSortable": "No ordenable",
|
||||
"align": "Alinear"
|
||||
},
|
||||
"options": {
|
||||
"align": {
|
||||
"left": "Izquierda",
|
||||
"right": "Derecha"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,25 +1,27 @@
|
||||
{
|
||||
"fields": {
|
||||
"post": "Entrada",
|
||||
"attachments": "Adjuntos",
|
||||
"targetType": "Objetivo",
|
||||
"teams": "Equipos",
|
||||
"users": "Usuarios"
|
||||
},
|
||||
"filters": {
|
||||
"all": "Todos",
|
||||
"posts": "Entradas",
|
||||
"updates": "Actualizaciones"
|
||||
},
|
||||
"options": {
|
||||
"targetType": {
|
||||
"self": "Para mí",
|
||||
"users": "Para determinado/s usuario/s",
|
||||
"teams": "Para determinado/s equipo/s",
|
||||
"all": "A todos los usuarios"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"writeMessage": "Escriba su mensaje aquí"
|
||||
"fields": {
|
||||
"post": "Entrada",
|
||||
"attachments": "Adjuntos",
|
||||
"targetType": "Objetivo",
|
||||
"teams": "Equipos",
|
||||
"users": "Usuarios",
|
||||
"portals": "Portales"
|
||||
},
|
||||
"filters": {
|
||||
"all": "Todos",
|
||||
"posts": "Entradas",
|
||||
"updates": "Actualizaciones"
|
||||
},
|
||||
"options": {
|
||||
"targetType": {
|
||||
"self": "Para mí",
|
||||
"users": "Para determinado/s usuario/s",
|
||||
"teams": "Para determinado/s equipo/s",
|
||||
"all": "A todos los usuarios",
|
||||
"portals": "A los usuarios del portal"
|
||||
}
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"writeMessage": "Escriba su mensaje aquí"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"logo": "Logotipo",
|
||||
"companyLogo": "Logotipo",
|
||||
"url": "URL",
|
||||
"portalRoles": "Roles",
|
||||
"isActive": "Está activo",
|
||||
"isDefault": "Por defecto",
|
||||
"tabList": "Lista de pestañas",
|
||||
"quickCreateList": "Crear lista rápida",
|
||||
"theme": "Plantilla",
|
||||
"language": "Idioma",
|
||||
"dashboardLayout": "Distribución del Panel de control",
|
||||
"dateFormat": "Formato de fecha",
|
||||
"timeFormat": "Formato de tiempo",
|
||||
"timeZone": "Zona horaria",
|
||||
"weekStart": "Primer dia de la semana",
|
||||
"defaultCurrency": "Moneda predeterminada",
|
||||
"customUrl": "URL personalizada",
|
||||
"customId": "ID personalizado"
|
||||
},
|
||||
"links": {
|
||||
"users": "Usuarios",
|
||||
"portalRoles": "Roles",
|
||||
"notes": "Notas"
|
||||
},
|
||||
"tooltips": {
|
||||
"portalRoles": "Los Roles del Portal especificados se aplicarán a todos los usuarios de este portal."
|
||||
},
|
||||
"labels": {
|
||||
"Create Portal": "Crear un Portal",
|
||||
"User Interface": "Interfaz de usuario",
|
||||
"General": "General",
|
||||
"Settings": "Ajustes"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"links": {
|
||||
"users": "Usuarios"
|
||||
},
|
||||
"labels": {
|
||||
"Access": "Acceso",
|
||||
"Create PortalRole": "Crear Roles para el portal",
|
||||
"Scope Level": "Nivel alcance",
|
||||
"Field Level": "Nivel de campo"
|
||||
}
|
||||
}
|
||||
@@ -1,48 +1,51 @@
|
||||
{
|
||||
"fields": {
|
||||
"dateFormat": "Formato de fecha",
|
||||
"timeFormat": "Formato de tiempo",
|
||||
"timeZone": "Zona Horaria",
|
||||
"weekStart": "Primer día de la semana",
|
||||
"thousandSeparator": "Separador de miles",
|
||||
"decimalMark": "Separador decimal",
|
||||
"defaultCurrency": "Moneda por Defecto",
|
||||
"currencyList": "Lista de Moneda",
|
||||
"language": "Idioma",
|
||||
"smtpServer": "Servidor",
|
||||
"smtpPort": "Puerto",
|
||||
"smtpAuth": "Autenticar",
|
||||
"smtpSecurity": "Seguridad",
|
||||
"smtpUsername": "Nombre de Usuario",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"smtpPassword": "Contraseña",
|
||||
"smtpEmailAddress": "Correo Electrónico",
|
||||
"exportDelimiter": "Exportar Delimitador",
|
||||
"receiveAssignmentEmailNotifications": "Recevir Notificaciones por Correo Electrónico al ser Asignado",
|
||||
"autoFollowEntityTypeList": "Seguir automaticamente",
|
||||
"signature": "Firma de correo",
|
||||
"dashboardTabList": "Lista de Pestañas",
|
||||
"defaultReminders": "Recordatorios por defecto",
|
||||
"theme": "Tema",
|
||||
"useCustomTabList": "Lista de Pestañas Personalizada",
|
||||
"tabList": "Lista de Pestañas"
|
||||
},
|
||||
"links": {
|
||||
},
|
||||
"options": {
|
||||
"weekStart": {
|
||||
"0": "Domingo",
|
||||
"1": "Lunes"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Notifications": "Notificaciones",
|
||||
"User Interface": "Interfaz de Usuario",
|
||||
"SMTP": "SMTP",
|
||||
"Misc": "Misceláneos",
|
||||
"Locale": "Localización"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoFollowEntityTypeList": "El usuario seguirá automáticamente todos los nuevos registros de los tipos de entidades seleccionadas, verá la información en las actividades y recibirá notificaciones."
|
||||
"fields": {
|
||||
"dateFormat": "Formato de fecha",
|
||||
"timeFormat": "Formato de tiempo",
|
||||
"timeZone": "Zona Horaria",
|
||||
"weekStart": "Primer día de la semana",
|
||||
"thousandSeparator": "Separador de miles",
|
||||
"decimalMark": "Separador decimal",
|
||||
"defaultCurrency": "Moneda por Defecto",
|
||||
"currencyList": "Lista de Moneda",
|
||||
"language": "Idioma",
|
||||
"smtpServer": "Servidor",
|
||||
"smtpPort": "Puerto",
|
||||
"smtpAuth": "Autenticar",
|
||||
"smtpSecurity": "Seguridad",
|
||||
"smtpUsername": "Nombre de Usuario",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"smtpPassword": "Contraseña",
|
||||
"smtpEmailAddress": "Correo Electrónico",
|
||||
"exportDelimiter": "Exportar Delimitador",
|
||||
"receiveAssignmentEmailNotifications": "Recevir Notificaciones por Correo Electrónico al ser Asignado",
|
||||
"receiveMentionEmailNotifications": "Notificaciones por correo electrónico acerca de menciones en los mensajes",
|
||||
"receiveStreamEmailNotifications": "notificaciones por correo electrónico sobre los mensajes y actualizaciones de estado",
|
||||
"autoFollowEntityTypeList": "Seguir automaticamente",
|
||||
"signature": "Firma de correo",
|
||||
"dashboardTabList": "Lista de Pestañas",
|
||||
"tabList": "Lista de Pestañas",
|
||||
"defaultReminders": "Recordatorios por defecto",
|
||||
"theme": "Tema",
|
||||
"useCustomTabList": "Lista de Pestañas Personalizadas",
|
||||
"emailReplyToAllByDefault": "Correo electrónico responder a todos por defecto",
|
||||
"dashboardLayout": "Distribución del Panel de control",
|
||||
"emailReplyForceHtml": "Responder correo electrónico en formato HTML"
|
||||
},
|
||||
"options": {
|
||||
"weekStart": {
|
||||
"0": "Domingo",
|
||||
"1": "Lunes"
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"Notifications": "Notificaciones",
|
||||
"User Interface": "Interfaz de Usuario",
|
||||
"SMTP": "SMTP",
|
||||
"Misc": "Misceláneos",
|
||||
"Locale": "Localización"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoFollowEntityTypeList": "El usuario seguirá automáticamente todos los nuevos registros de los tipos de entidades seleccionadas, verá la información en las actividades y recibirá notificaciones."
|
||||
}
|
||||
}
|
||||
@@ -1,42 +1,51 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"roles": "Roles",
|
||||
"assignmentPermission": "Asignación de permisos",
|
||||
"userPermission": "Permisos de Usuario"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"roles": "Roles",
|
||||
"assignmentPermission": "Asignación de permisos",
|
||||
"userPermission": "Permisos de Usuario",
|
||||
"portalPermission": "Permisos del portal"
|
||||
},
|
||||
"links": {
|
||||
"users": "Usuarios",
|
||||
"teams": "Equipos"
|
||||
},
|
||||
"tooltips": {
|
||||
"assignmentPermission": "Permite restringir la capacidad de los usuarios para asignar registros a otros usuarios.\n\nall - Sin restricción\n\nteam - puede asignar a los usuarios de equipos propios\n\nno - puede asignar sólo a la libre",
|
||||
"userPermission": "Permite restringir la capacidad de los usuarios para ver las actividades, calendario y secuencia de otros usuarios.\n\nall - puede ver todo\n\nequipo - pueden ver las actividades de los compañeros de equipo sólo se\n\nno - no puede ver",
|
||||
"portalPermission": "Define un portal de acceso a la información, la capacidad de convertir los contactos a los usuarios del portal y enviar mensajes a los usuarios del portal."
|
||||
},
|
||||
"labels": {
|
||||
"Access": "Acceso",
|
||||
"Create Role": "Crear Rol",
|
||||
"Scope Level": "Nivel alcance",
|
||||
"Field Level": "Nivel de campo"
|
||||
},
|
||||
"options": {
|
||||
"accessList": {
|
||||
"not-set": "sin establecer",
|
||||
"enabled": "activado",
|
||||
"disabled": "desactivado"
|
||||
},
|
||||
"links": {
|
||||
"users": "Usuarios",
|
||||
"teams": "Equipos"
|
||||
},
|
||||
"tooltips": {
|
||||
"assignmentPermission": "Allows to restrict an ability for users to assign records to other users.\n\nall - no restriction\n\nteam - can assign to users from own teams\n\nno - can assign only to self",
|
||||
"userPermission": "Allows to restrict an ability for users to view activities, calendar and stream of other users.\n\nall - can view all\n\nteam - can view activities of teammates only\n\nno - can't view"
|
||||
},
|
||||
"labels": {
|
||||
"Access": "Acceso",
|
||||
"Create Role": "Crear Rol"
|
||||
},
|
||||
"options": {
|
||||
"accessList": {
|
||||
"not-set": "sin establecer",
|
||||
"enabled": "activado",
|
||||
"disabled": "desactivado"
|
||||
},
|
||||
"levelList": {
|
||||
"all": "todos",
|
||||
"team": "equipo",
|
||||
"own": "propio",
|
||||
"no": "no",
|
||||
"not-set": "sin establecer"
|
||||
}
|
||||
},
|
||||
"actions": {
|
||||
"read": "Leer",
|
||||
"edit": "Editar",
|
||||
"delete": "Borrar"
|
||||
},
|
||||
"messages": {
|
||||
"changesAfterClearCache": "Todos los cambios en el control de acceso serán aplicacados después de limpiar la caché"
|
||||
"levelList": {
|
||||
"all": "todos",
|
||||
"team": "equipo",
|
||||
"account": "cuenta",
|
||||
"contact": "contacto",
|
||||
"own": "propio",
|
||||
"no": "no",
|
||||
"yes": "si",
|
||||
"not-set": "sin establecer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"actions": {
|
||||
"read": "Leer",
|
||||
"edit": "Editar",
|
||||
"delete": "Borrar",
|
||||
"stream": "Corriente",
|
||||
"create": "Crear"
|
||||
},
|
||||
"messages": {
|
||||
"changesAfterClearCache": "Todos los cambios en el control de acceso serán aplicacados después de limpiar la caché"
|
||||
}
|
||||
}
|
||||
@@ -1,36 +1,37 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"job": "Trabajo",
|
||||
"scheduling": "Programación (crontab anotación)"
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"status": "Estado",
|
||||
"job": "Trabajo",
|
||||
"scheduling": "Programación (crontab anotación)"
|
||||
},
|
||||
"links": {
|
||||
"log": "Registro de Log"
|
||||
},
|
||||
"labels": {
|
||||
"Create ScheduledJob": "Crear Tarea programado"
|
||||
},
|
||||
"options": {
|
||||
"job": {
|
||||
"Cleanup": "Limpiar",
|
||||
"CheckInboundEmails": "Comprobar Correos Entrantes",
|
||||
"CheckEmailAccounts": "Compruebe cuentas de correo personales",
|
||||
"SendEmailReminders": "Enviar Recordatorios por Email",
|
||||
"AuthTokenControl": "Control del Token de Autenticación",
|
||||
"SendEmailNotifications": "Enviar notificaciones por correo electrónico"
|
||||
},
|
||||
"links": {
|
||||
"log": "Registro de Log"
|
||||
"cronSetup": {
|
||||
"linux": "Nota: Añada esta línea al archivo crontab para ejecutar trabajos Espo programados:",
|
||||
"mac": "Nota: Añada esta línea al archivo crontab para ejecutar trabajos Espo programados:",
|
||||
"windows": "Nota: Crear un archivo por lotes con los siguientes comandos para ejecutar trabajos programados de Espo usando tareas programadas de Windows:",
|
||||
"default": "Nota: Agregar este comando a Cron Job (Tarea Programada):"
|
||||
},
|
||||
"labels": {
|
||||
"Create ScheduledJob": "Crear Tarea programado"
|
||||
},
|
||||
"options": {
|
||||
"job": {
|
||||
"Cleanup": "Limpiar",
|
||||
"CheckInboundEmails": "Comprobar Correos Entrantes",
|
||||
"CheckEmailAccounts": "Compruebe cuentas de correo personales",
|
||||
"SendEmailReminders": "Enviar Recordatorios por Email",
|
||||
"AuthTokenControl": "Control del Token de Autenticación"
|
||||
},
|
||||
"cronSetup": {
|
||||
"linux": "Nota: Añada esta línea al archivo crontab para ejecutar trabajos Espo programados:",
|
||||
"mac": "Nota: Añada esta línea al archivo crontab para ejecutar trabajos Espo programados:",
|
||||
"windows": "Nota: Crear un archivo por lotes con los siguientes comandos para ejecutar trabajos programados de Espo usando tareas programadas de Windows:",
|
||||
"default": "Nota: Agregar este comando a Cron Job (Tarea Programada):"
|
||||
},
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"scheduling": "Defines when and how often job will be run\n\n*/5 * * * * - every 5 minutes\n\n0 */2 * * * - every 2 hours\n\n30 1 * * * - at 01:30 once a day\n\n0 0 1 * * - on the first day of the month"
|
||||
"status": {
|
||||
"Active": "Activo",
|
||||
"Inactive": "Inactivo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"scheduling": "Define cuándo y con qué frecuencia se ejecutará el trabajo\n\n*/5 * * * * - cada 5 minutos\n\n0 */2 * * * - cada 2 horas\n\n30 1 * * * - a 01:30 una vez al día\n\n0 0 1 * * - en el primer día del mes"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"fields": {
|
||||
"status": "Estado",
|
||||
"executionTime": "Tiempo de Ejecución"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"status": "Estado",
|
||||
"executionTime": "Tiempo de Ejecución",
|
||||
"target": "Objetivo"
|
||||
}
|
||||
}
|
||||
@@ -1,91 +1,135 @@
|
||||
{
|
||||
"fields": {
|
||||
"useCache": "Usar Caché",
|
||||
"dateFormat": "Formato de fecha",
|
||||
"timeFormat": "Formato de tiempo",
|
||||
"timeZone": "Zona Horaria",
|
||||
"weekStart": "Primer día de la semana",
|
||||
"thousandSeparator": "Separador de miles",
|
||||
"decimalMark": "Separador decimal",
|
||||
"defaultCurrency": "Moneda por Defecto",
|
||||
"baseCurrency": "Moneda Base",
|
||||
"currencyRates": "Valores Tarifa",
|
||||
"currencyList": "Lista de Moneda",
|
||||
"language": "Idioma",
|
||||
"companyLogo": "Logo Compañia",
|
||||
"smtpServer": "Servidor",
|
||||
"smtpPort": "Puerto",
|
||||
"smtpAuth": "Autenticar",
|
||||
"smtpSecurity": "Seguridad",
|
||||
"smtpUsername": "Nombre de Usuario",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"smtpPassword": "Contraseña",
|
||||
"outboundEmailFromName": "De Nombre",
|
||||
"outboundEmailFromAddress": "De la dirección",
|
||||
"outboundEmailIsShared": "Es Compartido",
|
||||
"recordsPerPage": "Registros por Página",
|
||||
"recordsPerPageSmall": "Registros Por Página (Pequeño)",
|
||||
"tabList": "Lista de Pestañas",
|
||||
"quickCreateList": "Crear Lista Rápida",
|
||||
"exportDelimiter": "Exportar Delimitador",
|
||||
"globalSearchEntityList": "Lista Búsqueda Global Entidad",
|
||||
"authenticationMethod": "Método de Autentificación",
|
||||
"ldapHost": "Host",
|
||||
"ldapPort": "Puerto",
|
||||
"ldapAuth": "Autenticar",
|
||||
"ldapUsername": "Nombre de Usuario",
|
||||
"ldapPassword": "Contraseña",
|
||||
"ldapBindRequiresDn": "Bind Necesita Nd (Nombre Dominio)",
|
||||
"ldapBaseDn": "ND Base",
|
||||
"ldapAccountCanonicalForm": "Forma Canónica de la Cuenta",
|
||||
"ldapAccountDomainName": "Nombre de Dominio de la Cuenta",
|
||||
"ldapTryUsernameSplit": "Intentar dividir el nombre de Usuario",
|
||||
"ldapCreateEspoUser": "Crear Usuario en EspoCRM",
|
||||
"ldapSecurity": "Seguridad",
|
||||
"ldapUserLoginFilter": "Usar Filtro en el Login",
|
||||
"ldapAccountDomainNameShort": "Nombre Dominio Corto para la Cuenta",
|
||||
"ldapOptReferrals": "Referencias Opt",
|
||||
"exportDisabled": "Desactivar Exportar (Solo admin está permitido)",
|
||||
"assignmentNotificationsEntityList": "Las entidades notifican sobre la asignación",
|
||||
"assignmentEmailNotifications": "Enviar Correos Electrónicos de notificación sobre Asignación",
|
||||
"assignmentEmailNotificationsEntityList": "Entidades a Notificar",
|
||||
"b2cMode": "Modo B2C",
|
||||
"avatarsDisabled": "Deshabilitar Avatars",
|
||||
"followCreatedEntities": "Seguir Endidades Creadas",
|
||||
"displayListViewRecordCount": "Mostrar Contador Total (en la vista de lista)",
|
||||
"theme": "Tema",
|
||||
"userThemesDisabled": "Deshabilitar Temas de Usuarios",
|
||||
"emailMessageMaxSize": "Tamaño máximo del Correo (MB)",
|
||||
"massEmailMaxPerHourCount": "mäximo número de mensajes de correo enviado por hora",
|
||||
"personalEmailMaxPortionSize": "Máximo tamaño de la porción de correo para recuperar de una cuenta personal",
|
||||
"inboundEmailMaxPortionSize": "Máximo tamaño de la porción de correo para recuperar de una cuenta de grupo",
|
||||
"maxEmailAccountCount": "Máximo número de cuentas de correo personal por usuario",
|
||||
"authTokenLifetime": "Vida del Token de Autenticación (horas)",
|
||||
"authTokenMaxIdleTime": "Máximo tiempo de inactividad del Token de Autenticación (horas)"
|
||||
},
|
||||
"options": {
|
||||
"weekStart": {
|
||||
"0": "Domingo",
|
||||
"1": "Lunes"
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"recordsPerPageSmall": "Contador de registros en los paneles de relación",
|
||||
"outboundEmailIsShared": "Permitir a los usuarios enviar mensajes a través de esta SMTP.",
|
||||
"followCreatedEntities": "Los usuarios seguirán automáticamente los registros que ellos crearon.",
|
||||
"emailMessageMaxSize": "Todos los correos entrantes que superen un tamaño especificado se omitirán.",
|
||||
"authTokenLifetime": "Define cuanto tiempo de vida tienen los tokens.\n0 - significa que no caduca.",
|
||||
"authTokenMaxIdleTime": "Define cuándo caduca el Token luego del último acceso.\n0 - significa que no caduca."
|
||||
},
|
||||
"labels": {
|
||||
"System": "Sistema",
|
||||
"Locale": "Localización",
|
||||
"SMTP": "SMTP",
|
||||
"Configuration": "Configuración",
|
||||
"In-app Notifications": "Notificaciones In-app",
|
||||
"Email Notifications": "Notificaciones de Email",
|
||||
"Currency Settings": "Configuración Moneda",
|
||||
"Currency Rates": "Tasas de conversion de Divisas",
|
||||
"Mass Email": "Email Masivo"
|
||||
"fields": {
|
||||
"useCache": "Usar Caché",
|
||||
"dateFormat": "Formato de fecha",
|
||||
"timeFormat": "Formato de tiempo",
|
||||
"timeZone": "Zona Horaria",
|
||||
"weekStart": "Primer día de la semana",
|
||||
"thousandSeparator": "Separador de miles",
|
||||
"decimalMark": "Separador decimal",
|
||||
"defaultCurrency": "Moneda por Defecto",
|
||||
"baseCurrency": "Moneda Base",
|
||||
"currencyRates": "Valores Tarifa",
|
||||
"currencyList": "Lista de Moneda",
|
||||
"language": "Idioma",
|
||||
"companyLogo": "Logo Compañia",
|
||||
"smtpServer": "Servidor",
|
||||
"smtpPort": "Puerto",
|
||||
"ldapPort": "Puerto",
|
||||
"smtpAuth": "Autenticar",
|
||||
"ldapAuth": "Autenticar",
|
||||
"smtpSecurity": "Seguridad",
|
||||
"ldapSecurity": "Seguridad",
|
||||
"smtpUsername": "Nombre de Usuario",
|
||||
"emailAddress": "Correo electrónico",
|
||||
"smtpPassword": "Contraseña",
|
||||
"ldapPassword": "Contraseña",
|
||||
"outboundEmailFromName": "De Nombre",
|
||||
"outboundEmailFromAddress": "De la dirección",
|
||||
"outboundEmailIsShared": "Es Compartido",
|
||||
"recordsPerPage": "Registros por Página",
|
||||
"recordsPerPageSmall": "Registros Por Página (Pequeño)",
|
||||
"tabList": "Lista de Pestañas",
|
||||
"quickCreateList": "Crear Lista Rápida",
|
||||
"exportDelimiter": "Exportar Delimitador",
|
||||
"globalSearchEntityList": "Lista Búsqueda Global Entidad",
|
||||
"authenticationMethod": "Método de Autentificación",
|
||||
"ldapHost": "Host",
|
||||
"ldapUsername": "Nombre de Usuario",
|
||||
"ldapBindRequiresDn": "Bind Necesita Nd (Nombre Dominio)",
|
||||
"ldapBaseDn": "ND Base",
|
||||
"ldapAccountCanonicalForm": "Forma Canónica de la Cuenta",
|
||||
"ldapAccountDomainName": "Nombre de Dominio de la Cuenta",
|
||||
"ldapTryUsernameSplit": "Intentar dividir el nombre de Usuario",
|
||||
"ldapCreateEspoUser": "Crear Usuario en EspoCRM",
|
||||
"ldapUserLoginFilter": "Usar Filtro en el Login",
|
||||
"ldapAccountDomainNameShort": "Nombre Dominio Corto para la Cuenta",
|
||||
"ldapOptReferrals": "Referencias Opt",
|
||||
"ldapUserNameAttribute": "Atributo de nombre de usuario",
|
||||
"ldapUserTitleAttribute": "Atributo del usuario Título",
|
||||
"ldapUserFirstNameAttribute": "Nombre de usuario Atributo",
|
||||
"ldapUserLastNameAttribute": "Apellido de usuario Atributo",
|
||||
"ldapUserEmailAddressAttribute": "Dirección de correo electrónico del usuario Atributo",
|
||||
"ldapUserPhoneNumberAttribute": "Número de teléfono del usuario Atributo",
|
||||
"ldapUserTeams": "Los equipos de los usuarios",
|
||||
"ldapUserDefaultTeam": "Equipo de usuario por defecto",
|
||||
"exportDisabled": "Desactivar Exportar (Solo admin está permitido)",
|
||||
"assignmentNotificationsEntityList": "Las entidades notifican sobre la asignación",
|
||||
"assignmentEmailNotifications": "Enviar Correos Electrónicos de notificación sobre Asignación",
|
||||
"assignmentEmailNotificationsEntityList": "Entidades a Notificar",
|
||||
"streamEmailNotifications": "Las notificaciones sobre actualizaciones en Steam para los usuarios internos",
|
||||
"portalStreamEmailNotifications": "Las notificaciones sobre actualizaciones en Steam para los usuarios del portal",
|
||||
"streamEmailNotificationsEntityList": "Notificaciones por correo electrónico corriente ámbitos",
|
||||
"b2cMode": "Modo B2C",
|
||||
"avatarsDisabled": "Deshabilitar Avatars",
|
||||
"followCreatedEntities": "Seguir Endidades Creadas",
|
||||
"displayListViewRecordCount": "Mostrar Contador Total (en la vista de lista)",
|
||||
"theme": "Tema",
|
||||
"userThemesDisabled": "Deshabilitar Temas de Usuarios",
|
||||
"emailMessageMaxSize": "Tamaño máximo del Correo (MB)",
|
||||
"massEmailMaxPerHourCount": "mäximo número de mensajes de correo enviado por hora",
|
||||
"personalEmailMaxPortionSize": "Máximo tamaño de la porción de correo para recuperar de una cuenta personal",
|
||||
"inboundEmailMaxPortionSize": "Máximo tamaño de la porción de correo para recuperar de una cuenta de grupo",
|
||||
"maxEmailAccountCount": "Máximo número de cuentas de correo personal por usuario",
|
||||
"authTokenLifetime": "Vida del Token de Autenticación (horas)",
|
||||
"authTokenMaxIdleTime": "Máximo tiempo de inactividad del Token de Autenticación (horas)",
|
||||
"dashboardLayout": "Diseño del Panel de control (por defecto)",
|
||||
"siteUrl": "URL del sitio",
|
||||
"addressPreview": "Vista previa de dirección",
|
||||
"addressFormat": "Formato de dirección",
|
||||
"notificationSoundsDisabled": "Desactivar los sonidos de notificación",
|
||||
"applicationName": "Nombre de la aplicación",
|
||||
"calendarEntityList": "Lista de Entidades Calendario",
|
||||
"mentionEmailNotifications": "Enviar notificaciones por correo electrónico acerca de menciones en los mensajes"
|
||||
},
|
||||
"options": {
|
||||
"weekStart": {
|
||||
"0": "Domingo",
|
||||
"1": "Lunes"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tooltips": {
|
||||
"recordsPerPage": "Número de registros inicialmente representada en las vistas de lista.",
|
||||
"recordsPerPageSmall": "Contador de registros en los paneles de relación",
|
||||
"outboundEmailIsShared": "Permitir a los usuarios enviar mensajes a través de esta SMTP.",
|
||||
"followCreatedEntities": "Los usuarios seguirán automáticamente los registros que ellos crearon.",
|
||||
"emailMessageMaxSize": "Todos los correos entrantes que superen un tamaño especificado se omitirán.",
|
||||
"authTokenLifetime": "Define cuanto tiempo de vida tienen los tokens.\n0 - significa que no caduca.",
|
||||
"authTokenMaxIdleTime": "Define cuándo caduca el Token luego del último acceso.\n0 - significa que no caduca.",
|
||||
"userThemesDisabled": "Si está marcado, entonces los usuarios no podrán seleccionar otro tema.",
|
||||
"ldapUsername": "El sistema de usuario DN completo que permite a los usuarios buscar otros. E.g. \"CN=LDAP usuario del sistema,OU=users,OU=espocrm, DC=test,DC=lan\".",
|
||||
"ldapPassword": "La contraseña para acceder al servidor LDAP.",
|
||||
"ldapAuth": "Credenciales de acceso para el servidor LDAP.",
|
||||
"ldapBindRequiresDn": "La opción para formatear el nombre de usuario en el formulario de DN.",
|
||||
"ldapBaseDn": "La base DN predeterminado utilizado para la búsqueda de los usuarios. E.g. \"OU=users,OU=espocrm,DC=test, DC=lan\".",
|
||||
"ldapTryUsernameSplit": "La opción de dividir un nombre de usuario con el dominio.",
|
||||
"ldapOptReferrals": "La opción de dividir un nombre de usuario con el dominio.",
|
||||
"ldapCreateEspoUser": "Esta opción permite EspoCRM para crear un usuario del LDAP.",
|
||||
"ldapUserFirstNameAttribute": "atributo LDAP que se utiliza para determinar el nombre de usuario primero. E.g. \"givenname\".",
|
||||
"ldapUserLastNameAttribute": "LDAP attribute which is used to determine the user last name. E.g. \"sn\".",
|
||||
"ldapUserTitleAttribute": "LDAP attribute which is used to determine the user title. E.g. \"title\".",
|
||||
"ldapUserEmailAddressAttribute": "LDAP attribute which is used to determine the user email address. E.g. \"mail\".",
|
||||
"ldapUserPhoneNumberAttribute": "LDAP attribute which is used to determine the user phone number. E.g. \"telephoneNumber\".",
|
||||
"ldapUserLoginFilter": "The filter which allows to restrict users who able to use EspoCRM. E.g. \"memberOf=CN=espoGroup, OU=groups,OU=espocrm, DC=test,DC=lan\".",
|
||||
"ldapAccountDomainName": "The domain which is used for authorization to LDAP server.",
|
||||
"ldapAccountDomainNameShort": "The short domain which is used for authorization to LDAP server.",
|
||||
"ldapUserTeams": "Equipos de usuario creado. Para más información, véase el perfil de usuario.",
|
||||
"ldapUserDefaultTeam": "equipo predeterminado de usuario creado. Para más información, véase el perfil de usuario."
|
||||
},
|
||||
"labels": {
|
||||
"System": "Sistema",
|
||||
"Locale": "Localización",
|
||||
"SMTP": "SMTP",
|
||||
"Configuration": "Configuración",
|
||||
"In-app Notifications": "Notificaciones In-app",
|
||||
"Email Notifications": "Notificaciones de Email",
|
||||
"Currency Settings": "Configuración Moneda",
|
||||
"Currency Rates": "Tasas de conversion de Divisas",
|
||||
"Mass Email": "Email Masivo",
|
||||
"Test Connection": "Conexión de prueba",
|
||||
"Connecting": "Conexión"
|
||||
},
|
||||
"messages": {
|
||||
"ldapTestConnection": "La conexión fue establecida con éxito."
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
{
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"roles": "Roles",
|
||||
"positionList": "Lista de Posiciones"
|
||||
},
|
||||
"links": {
|
||||
"users": "Usuarios",
|
||||
"notes": "Notas",
|
||||
"roles": "Roles"
|
||||
},
|
||||
"tooltips": {
|
||||
"roles": "Todos los usuarios de este equipo tendrán acceso a la configuración desde los roles seleccionados",
|
||||
"positionList": "Posiciones disponibles en este equipo. Por ejemplo Vendedor, Gerente."
|
||||
},
|
||||
"labels": {
|
||||
"Create Team": "Crear Equipo"
|
||||
}
|
||||
}
|
||||
"fields": {
|
||||
"name": "Nombre",
|
||||
"roles": "Roles",
|
||||
"positionList": "Lista de Posiciones"
|
||||
},
|
||||
"links": {
|
||||
"users": "Usuarios",
|
||||
"notes": "Notas",
|
||||
"roles": "Roles"
|
||||
},
|
||||
"tooltips": {
|
||||
"roles": "Todos los usuarios de este equipo tendrán acceso a la configuración desde los roles seleccionados",
|
||||
"positionList": "Posiciones disponibles en este equipo. Por ejemplo Vendedor, Gerente."
|
||||
},
|
||||
"labels": {
|
||||
"Create Team": "Crear Equipo"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user