Merge branch 'develop-external-logging' of
https://github.com/GPCsolutions/dolibarr into GPCsolutions-develop-external-logging Conflicts: composer.json
This commit is contained in:
commit
0e4b4ee321
@ -2,14 +2,22 @@
|
|||||||
"name": "dolibarr/dolibarr",
|
"name": "dolibarr/dolibarr",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"description": "Dolibarr ERP & CRM is a modern and easy to use web software to manage your business",
|
"description": "Dolibarr ERP & CRM is a modern and easy to use web software to manage your business",
|
||||||
"keywords": ["erp","crm","invoice","sme","proposal","order","stock"],
|
"keywords": [
|
||||||
"homepage": "http://www.dolibarr.org",
|
"erp",
|
||||||
|
"crm",
|
||||||
|
"invoice",
|
||||||
|
"sme",
|
||||||
|
"proposal",
|
||||||
|
"order",
|
||||||
|
"stock",
|
||||||
|
"agenda"
|
||||||
|
],
|
||||||
|
"homepage": "https://www.dolibarr.org",
|
||||||
"license": "GPL-3.0+",
|
"license": "GPL-3.0+",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/Dolibarr/dolibarr/issues",
|
"issues": "https://github.com/Dolibarr/dolibarr/issues",
|
||||||
"forum": "http://www.dolibarr.org/forum",
|
"forum": "https://www.dolibarr.org/forum",
|
||||||
"wiki": "http://wiki.dolibarr.org",
|
"wiki": "https://wiki.dolibarr.org",
|
||||||
"irc": "irc://chat.freenode.net/dolibarr",
|
|
||||||
"source": "https://github.com/Dolibarr/dolibarr"
|
"source": "https://github.com/Dolibarr/dolibarr"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
@ -48,6 +56,5 @@
|
|||||||
"ext-zip": "ODT and Excel support",
|
"ext-zip": "ODT and Excel support",
|
||||||
"ext-xml": "Excel support",
|
"ext-xml": "Excel support",
|
||||||
"firephp/firephp-core": "Logging to Firebug console support",
|
"firephp/firephp-core": "Logging to Firebug console support",
|
||||||
"raven/raven": "Sentry logging server support"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,6 +27,8 @@
|
|||||||
require '../main.inc.php';
|
require '../main.inc.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
||||||
|
|
||||||
|
global $conf;
|
||||||
|
|
||||||
if (!$user->admin) accessforbidden();
|
if (!$user->admin) accessforbidden();
|
||||||
|
|
||||||
$langs->load("admin");
|
$langs->load("admin");
|
||||||
@ -40,34 +42,37 @@ $activeModules = array();
|
|||||||
|
|
||||||
if (defined('SYSLOG_HANDLERS')) $activeModules = json_decode(constant('SYSLOG_HANDLERS'));
|
if (defined('SYSLOG_HANDLERS')) $activeModules = json_decode(constant('SYSLOG_HANDLERS'));
|
||||||
|
|
||||||
$dir = dol_buildpath('/core/modules/syslog/');
|
$dirsyslogs = array_merge(array('/core/modules/syslog/'), $conf->modules_parts['syslog']);
|
||||||
|
foreach ($dirsyslogs as $reldir) {
|
||||||
|
$dir = dol_buildpath($reldir, 0);
|
||||||
|
$newdir = dol_osencode($dir);
|
||||||
|
if (is_dir($newdir)) {
|
||||||
|
$handle = opendir($newdir);
|
||||||
|
|
||||||
if (is_dir($dir))
|
if (is_resource($handle)) {
|
||||||
{
|
$var = true;
|
||||||
$handle = opendir($dir);
|
|
||||||
|
|
||||||
if (is_resource($handle))
|
while (($file = readdir($handle)) !== false) {
|
||||||
{
|
if (substr($file, 0, 11) == 'mod_syslog_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
|
||||||
$var=true;
|
$file = substr($file, 0, dol_strlen($file) - 4);
|
||||||
|
|
||||||
while (($file = readdir($handle))!==false)
|
require_once $newdir . $file . '.php';
|
||||||
{
|
|
||||||
if (substr($file, 0, 11) == 'mod_syslog_' && substr($file, dol_strlen($file)-3, 3) == 'php')
|
|
||||||
{
|
|
||||||
$file = substr($file, 0, dol_strlen($file)-4);
|
|
||||||
|
|
||||||
require_once $dir.$file.'.php';
|
$module = new $file;
|
||||||
|
|
||||||
$module = new $file;
|
// Show modules according to features level
|
||||||
|
if ($module->getVersion() == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if ($module->getVersion() == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Show modules according to features level
|
$syslogModules[] = $file;
|
||||||
if ($module->getVersion() == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) continue;
|
}
|
||||||
if ($module->getVersion() == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) continue;
|
|
||||||
|
|
||||||
$syslogModules[] = $file;
|
|
||||||
}
|
}
|
||||||
|
closedir($handle);
|
||||||
}
|
}
|
||||||
closedir($handle);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -51,7 +51,7 @@ class Conf
|
|||||||
public $standard_menu;
|
public $standard_menu;
|
||||||
|
|
||||||
public $modules = array(); // List of activated modules
|
public $modules = array(); // List of activated modules
|
||||||
public $modules_parts = array('css'=>array(),'js'=>array(),'tabs'=>array(),'triggers'=>array(),'login'=>array(),'substitutions'=>array(),'menus'=>array(),'theme'=>array(),'sms'=>array(),'tpl'=>array(),'barcode'=>array(),'models'=>array(),'societe'=>array(),'hooks'=>array(),'dir'=>array());
|
public $modules_parts = array('css'=>array(),'js'=>array(),'tabs'=>array(),'triggers'=>array(),'login'=>array(),'substitutions'=>array(),'menus'=>array(),'theme'=>array(),'sms'=>array(),'tpl'=>array(),'barcode'=>array(),'models'=>array(),'societe'=>array(),'hooks'=>array(),'dir'=>array(), 'syslog' =>array());
|
||||||
|
|
||||||
var $logbuffer = array();
|
var $logbuffer = array();
|
||||||
|
|
||||||
@ -123,6 +123,8 @@ class Conf
|
|||||||
*/
|
*/
|
||||||
function setValues($db)
|
function setValues($db)
|
||||||
{
|
{
|
||||||
|
global $conf;
|
||||||
|
|
||||||
dol_syslog(get_class($this)."::setValues");
|
dol_syslog(get_class($this)."::setValues");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -203,7 +205,7 @@ class Conf
|
|||||||
|
|
||||||
$db->free($resql);
|
$db->free($resql);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Include other local consts.php files and fetch their values to the corresponding database constants
|
// Include other local consts.php files and fetch their values to the corresponding database constants
|
||||||
if (! empty($this->global->LOCAL_CONSTS_FILES)) {
|
if (! empty($this->global->LOCAL_CONSTS_FILES)) {
|
||||||
$filesList = explode(":", $this->global->LOCAL_CONSTS_FILES);
|
$filesList = explode(":", $this->global->LOCAL_CONSTS_FILES);
|
||||||
@ -342,7 +344,7 @@ class Conf
|
|||||||
$this->fournisseur->facture=new stdClass();
|
$this->fournisseur->facture=new stdClass();
|
||||||
$this->fournisseur->facture->dir_output =$rootfordata."/fournisseur/facture";
|
$this->fournisseur->facture->dir_output =$rootfordata."/fournisseur/facture";
|
||||||
$this->fournisseur->facture->dir_temp =$rootfordata."/fournisseur/facture/temp";
|
$this->fournisseur->facture->dir_temp =$rootfordata."/fournisseur/facture/temp";
|
||||||
|
|
||||||
// To prepare split of module fournisseur into fournisseur + supplier_order + supplier_invoice
|
// To prepare split of module fournisseur into fournisseur + supplier_order + supplier_invoice
|
||||||
if (! empty($this->fournisseur->enabled) && empty($this->global->MAIN_USE_NEW_SUPPLIERMOD)) // By default, if module supplier is on, we set new properties
|
if (! empty($this->fournisseur->enabled) && empty($this->global->MAIN_USE_NEW_SUPPLIERMOD)) // By default, if module supplier is on, we set new properties
|
||||||
{
|
{
|
||||||
@ -379,7 +381,7 @@ class Conf
|
|||||||
// Set some default values
|
// Set some default values
|
||||||
|
|
||||||
$this->global->MAIN_ACTIVATE_HTML5=1;
|
$this->global->MAIN_ACTIVATE_HTML5=1;
|
||||||
|
|
||||||
// societe
|
// societe
|
||||||
if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) $this->global->SOCIETE_CODECLIENT_ADDON="mod_codeclient_leopard";
|
if (empty($this->global->SOCIETE_CODECLIENT_ADDON)) $this->global->SOCIETE_CODECLIENT_ADDON="mod_codeclient_leopard";
|
||||||
if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) $this->global->SOCIETE_CODECOMPTA_ADDON="mod_codecompta_panicum";
|
if (empty($this->global->SOCIETE_CODECOMPTA_ADDON)) $this->global->SOCIETE_CODECOMPTA_ADDON="mod_codecompta_panicum";
|
||||||
@ -483,10 +485,10 @@ class Conf
|
|||||||
|
|
||||||
// By default, we propagate contacts
|
// By default, we propagate contacts
|
||||||
if (! isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN='*'; // Can be also '*' or '^(BILLING|SHIPPING|CUSTOMER|.*)$' (regex not yet implemented)
|
if (! isset($this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN)) $this->global->MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN='*'; // Can be also '*' or '^(BILLING|SHIPPING|CUSTOMER|.*)$' (regex not yet implemented)
|
||||||
|
|
||||||
// By default, we use the zip town autofill
|
// By default, we use the zip town autofill
|
||||||
if (! isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY=1;
|
if (! isset($this->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) $this->global->MAIN_USE_ZIPTOWN_DICTIONNARY=1;
|
||||||
|
|
||||||
// Define list of limited modules
|
// Define list of limited modules
|
||||||
if (! isset($this->global->MAIN_MODULES_FOR_EXTERNAL)) $this->global->MAIN_MODULES_FOR_EXTERNAL='user,supplier_proposal,facture,categorie,commande,fournisseur,contact,propal,projet,contrat,societe,ficheinter,expedition,agenda,adherent'; // '' means 'all'. Note that contact is added here as it should be a module later.
|
if (! isset($this->global->MAIN_MODULES_FOR_EXTERNAL)) $this->global->MAIN_MODULES_FOR_EXTERNAL='user,supplier_proposal,facture,categorie,commande,fournisseur,contact,propal,projet,contrat,societe,ficheinter,expedition,agenda,adherent'; // '' means 'all'. Note that contact is added here as it should be a module later.
|
||||||
|
|
||||||
@ -510,13 +512,13 @@ class Conf
|
|||||||
$this->adherent->cotisation->warning_delay=(isset($this->global->MAIN_DELAY_MEMBERS)?$this->global->MAIN_DELAY_MEMBERS:0)*24*60*60;
|
$this->adherent->cotisation->warning_delay=(isset($this->global->MAIN_DELAY_MEMBERS)?$this->global->MAIN_DELAY_MEMBERS:0)*24*60*60;
|
||||||
}
|
}
|
||||||
if (isset($this->agenda)) $this->agenda->warning_delay=(isset($this->global->MAIN_DELAY_ACTIONS_TODO)?$this->global->MAIN_DELAY_ACTIONS_TODO:7)*24*60*60;
|
if (isset($this->agenda)) $this->agenda->warning_delay=(isset($this->global->MAIN_DELAY_ACTIONS_TODO)?$this->global->MAIN_DELAY_ACTIONS_TODO:7)*24*60*60;
|
||||||
if (isset($this->projet))
|
if (isset($this->projet))
|
||||||
{
|
{
|
||||||
$this->projet->warning_delay=(isset($this->global->MAIN_DELAY_PROJECT_TO_CLOSE)?$this->global->MAIN_DELAY_PROJECT_TO_CLOSE:7)*24*60*60;
|
$this->projet->warning_delay=(isset($this->global->MAIN_DELAY_PROJECT_TO_CLOSE)?$this->global->MAIN_DELAY_PROJECT_TO_CLOSE:7)*24*60*60;
|
||||||
$this->projet->task = new StdClass();
|
$this->projet->task = new StdClass();
|
||||||
$this->projet->task->warning_delay=(isset($this->global->MAIN_DELAY_TASKS_TODO)?$this->global->MAIN_DELAY_TASKS_TODO:7)*24*60*60;
|
$this->projet->task->warning_delay=(isset($this->global->MAIN_DELAY_TASKS_TODO)?$this->global->MAIN_DELAY_TASKS_TODO:7)*24*60*60;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($this->commande)) {
|
if (isset($this->commande)) {
|
||||||
$this->commande->client = new stdClass();
|
$this->commande->client = new stdClass();
|
||||||
$this->commande->fournisseur = new stdClass();
|
$this->commande->fournisseur = new stdClass();
|
||||||
@ -570,26 +572,40 @@ class Conf
|
|||||||
if (is_object($mc)) $mc->setValues($this);
|
if (is_object($mc)) $mc->setValues($this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// We init log handlers
|
// We init log handlers
|
||||||
if (defined('SYSLOG_HANDLERS')) $handlers = json_decode(constant('SYSLOG_HANDLERS'));
|
if (defined('SYSLOG_HANDLERS')) {
|
||||||
else $handlers = array();
|
$handlers = json_decode(constant('SYSLOG_HANDLERS'));
|
||||||
foreach ($handlers as $handler)
|
} else {
|
||||||
{
|
$handlers = array();
|
||||||
$file = DOL_DOCUMENT_ROOT.'/core/modules/syslog/'.$handler.'.php';
|
}
|
||||||
if (!file_exists($file))
|
foreach ($handlers as $handler) {
|
||||||
{
|
$handler_files = array();
|
||||||
throw new Exception('Missing log handler file '.$handler.'.php');
|
$dirsyslogs = array_merge(array('/core/modules/syslog/'), $conf->modules_parts['syslog']);
|
||||||
}
|
foreach ($dirsyslogs as $reldir) {
|
||||||
|
$dir = dol_buildpath($reldir, 0);
|
||||||
|
$newdir = dol_osencode($dir);
|
||||||
|
if (is_dir($newdir)) {
|
||||||
|
$file = $newdir . $handler . '.php';
|
||||||
|
if (file_exists($file)) {
|
||||||
|
$handler_files[] = $file;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
require_once $file;
|
if (empty($handler_files)) {
|
||||||
$loghandlerinstance = new $handler();
|
throw new Exception('Missing log handler file ' . $handler . '.php');
|
||||||
if (!$loghandlerinstance instanceof LogHandlerInterface)
|
}
|
||||||
{
|
|
||||||
throw new Exception('Log handler does not extend LogHandlerInterface');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (empty($this->loghandlers[$handler])) $this->loghandlers[$handler]=$loghandlerinstance;
|
require_once $handler_files[0];
|
||||||
}
|
$loghandlerinstance = new $handler();
|
||||||
|
if (!$loghandlerinstance instanceof LogHandlerInterface) {
|
||||||
|
throw new Exception('Log handler does not extend LogHandlerInterface');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($this->loghandlers[$handler])) {
|
||||||
|
$this->loghandlers[$handler] = $loghandlerinstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,195 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
* Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
||||||
* Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/modules/syslog/logHandler.php';
|
|
||||||
if (file_exists(DOL_DOCUMENT_ROOT.'/includes/raven/raven/lib/Raven/Autoloader.php'))
|
|
||||||
{
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/includes/raven/raven/lib/Raven/Autoloader.php';
|
|
||||||
Raven_Autoloader::register();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class to manage logging to Sentry
|
|
||||||
*
|
|
||||||
* @see https://docs.getsentry.com/on-premise/clients/php/
|
|
||||||
*/
|
|
||||||
class mod_syslog_sentry extends LogHandler implements LogHandlerInterface
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var string Log handler code
|
|
||||||
*/
|
|
||||||
public $code = 'sentry';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return name of logger
|
|
||||||
*
|
|
||||||
* @return string Name of logger
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return 'Sentry';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version of the module ('x.y.z' or 'dolibarr' or 'experimental' or 'development')
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getVersion()
|
|
||||||
{
|
|
||||||
return 'dolibarr';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Content of the info tooltip.
|
|
||||||
*
|
|
||||||
* @return false|string
|
|
||||||
*/
|
|
||||||
public function getInfo()
|
|
||||||
{
|
|
||||||
global $langs;
|
|
||||||
return $langs->trans('SyslogSentryFromProject');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Is the module active ?
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function isActive()
|
|
||||||
{
|
|
||||||
return file_exists(DOL_DOCUMENT_ROOT.'/includes/raven/raven/lib/Raven/Autoloader.php');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return array of configuration data
|
|
||||||
*
|
|
||||||
* @return array Return array of configuration data
|
|
||||||
*/
|
|
||||||
public function configure()
|
|
||||||
{
|
|
||||||
global $langs;
|
|
||||||
return array(
|
|
||||||
array(
|
|
||||||
'constant' => 'SYSLOG_SENTRY_DSN',
|
|
||||||
'name' => $langs->trans('SyslogSentryDSN'),
|
|
||||||
'default' => '',
|
|
||||||
'attr' => 'size="100" placeholder="https://<key>:<secret>@app.getsentry.com/<project>"'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return if configuration is valid
|
|
||||||
*
|
|
||||||
* @return array Array of errors. Empty array if ok.
|
|
||||||
*/
|
|
||||||
public function checkConfiguration()
|
|
||||||
{
|
|
||||||
global $conf;
|
|
||||||
|
|
||||||
$errors = array();
|
|
||||||
|
|
||||||
$dsn = $conf->global->SYSLOG_SENTRY_DSN;
|
|
||||||
|
|
||||||
try {
|
|
||||||
$client = new Raven_Client(
|
|
||||||
$dsn,
|
|
||||||
array('curl_method' => 'sync')
|
|
||||||
);
|
|
||||||
} catch (InvalidArgumentException $ex) {
|
|
||||||
$errors[] = "ERROR: There was an error parsing your DSN:\n " . $ex->getMessage();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$errors) {
|
|
||||||
// Send test event and check for errors
|
|
||||||
$client->captureMessage('TEST: Sentry syslog configuration check', null, Raven_Client::DEBUG);
|
|
||||||
$last_error = $client->getLastError();
|
|
||||||
if ($last_error) {
|
|
||||||
$errors[] = $last_error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$errors) {
|
|
||||||
// Install handlers
|
|
||||||
$error_handler = new Raven_ErrorHandler($client);
|
|
||||||
$error_handler->registerExceptionHandler();
|
|
||||||
$error_handler->registerErrorHandler();
|
|
||||||
$error_handler->registerShutdownFunction();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $errors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Export the message
|
|
||||||
*
|
|
||||||
* @param array $content Array containing the info about the message
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function export($content)
|
|
||||||
{
|
|
||||||
if (! $this->isActive()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
global $conf;
|
|
||||||
$dsn = $conf->global->SYSLOG_SENTRY_DSN;
|
|
||||||
$client = new Raven_Client(
|
|
||||||
$dsn,
|
|
||||||
array('curl_method' => 'exec')
|
|
||||||
);
|
|
||||||
|
|
||||||
$client->user_context(array(
|
|
||||||
'username' => ($content['user'] ? $content['user'] : ''),
|
|
||||||
'ip_address' => $content['ip']
|
|
||||||
));
|
|
||||||
|
|
||||||
$client->tags_context(array(
|
|
||||||
'version' => DOL_VERSION
|
|
||||||
));
|
|
||||||
|
|
||||||
$client->registerSeverityMap(array(
|
|
||||||
LOG_EMERG => Raven_Client::FATAL,
|
|
||||||
LOG_ALERT => Raven_Client::FATAL,
|
|
||||||
LOG_CRIT => Raven_Client::ERROR,
|
|
||||||
LOG_ERR => Raven_Client::ERROR,
|
|
||||||
LOG_WARNING => Raven_Client::WARNING,
|
|
||||||
LOG_NOTICE => Raven_Client::WARNING,
|
|
||||||
LOG_INFO => Raven_Client::INFO,
|
|
||||||
LOG_DEBUG => Raven_Client::DEBUG,
|
|
||||||
));
|
|
||||||
|
|
||||||
if (substr($content['message'], 0, 3) === 'sql') {
|
|
||||||
global $db;
|
|
||||||
$query = substr($content['message'], 4, strlen($content['message']));
|
|
||||||
$client->captureQuery(
|
|
||||||
$query,
|
|
||||||
$client->translateSeverity($content['level']),
|
|
||||||
$db->type
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$client->captureMessage(
|
|
||||||
$content['message'],
|
|
||||||
null,
|
|
||||||
$client->translateSeverity($content['level'])
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1311,8 +1311,6 @@ SyslogFilename=اسم الملف ومسار
|
|||||||
YouCanUseDOL_DATA_ROOT=يمكنك استخدام DOL_DATA_ROOT / dolibarr.log لملف الدخول في Dolibarr "وثائق" دليل. يمكنك أن تحدد مسارا مختلفا لتخزين هذا الملف.
|
YouCanUseDOL_DATA_ROOT=يمكنك استخدام DOL_DATA_ROOT / dolibarr.log لملف الدخول في Dolibarr "وثائق" دليل. يمكنك أن تحدد مسارا مختلفا لتخزين هذا الملف.
|
||||||
ErrorUnknownSyslogConstant=ثابت %s ليس ثابت سيسلوغ معروفة
|
ErrorUnknownSyslogConstant=ثابت %s ليس ثابت سيسلوغ معروفة
|
||||||
OnlyWindowsLOG_USER=نوافذ يعتمد فقط LOG_USER
|
OnlyWindowsLOG_USER=نوافذ يعتمد فقط LOG_USER
|
||||||
SyslogSentryDSN=ترقب DSN
|
|
||||||
SyslogSentryFromProject=DSN من مشروع ترقب بك
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=وحدة الإعداد للتبرع
|
DonationsSetup=وحدة الإعداد للتبرع
|
||||||
DonationsReceiptModel=قالب من استلام التبرع
|
DonationsReceiptModel=قالب من استلام التبرع
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Име на файла и пътя
|
|||||||
YouCanUseDOL_DATA_ROOT=Можете да използвате DOL_DATA_ROOT / dolibarr.log за лог файл в Dolibarr директория "документи". Можете да зададете различен път, за да се съхранява този файл.
|
YouCanUseDOL_DATA_ROOT=Можете да използвате DOL_DATA_ROOT / dolibarr.log за лог файл в Dolibarr директория "документи". Можете да зададете различен път, за да се съхранява този файл.
|
||||||
ErrorUnknownSyslogConstant=Постоянни %s не е известен Syslog постоянно
|
ErrorUnknownSyslogConstant=Постоянни %s не е известен Syslog постоянно
|
||||||
OnlyWindowsLOG_USER=Windows поддържа само LOG_USER
|
OnlyWindowsLOG_USER=Windows поддържа само LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Настройка на модул Дарение
|
DonationsSetup=Настройка на модул Дарение
|
||||||
DonationsReceiptModel=Шаблон на получаване на дарение
|
DonationsReceiptModel=Шаблон на получаване на дарение
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nom i ruta de l'arxiu
|
|||||||
YouCanUseDOL_DATA_ROOT=Utilitza DOL_DATA_ROOT/dolibarr.log per un fitxer de registre en la carpeta documents de Dolibarr. Tanmateix, es pot definir una carpeta diferent per guardar aquest fitxer.
|
YouCanUseDOL_DATA_ROOT=Utilitza DOL_DATA_ROOT/dolibarr.log per un fitxer de registre en la carpeta documents de Dolibarr. Tanmateix, es pot definir una carpeta diferent per guardar aquest fitxer.
|
||||||
ErrorUnknownSyslogConstant=La constant %s no és una constant syslog coneguda
|
ErrorUnknownSyslogConstant=La constant %s no és una constant syslog coneguda
|
||||||
OnlyWindowsLOG_USER=Windows només suporta LOG_USER
|
OnlyWindowsLOG_USER=Windows només suporta LOG_USER
|
||||||
SyslogSentryDSN=DSN Sentry
|
|
||||||
SyslogSentryFromProject=DSN del teu projecte Sentry
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Configuració del mòdul donacions
|
DonationsSetup=Configuració del mòdul donacions
|
||||||
DonationsReceiptModel=Plantilla de rebut de donació
|
DonationsReceiptModel=Plantilla de rebut de donació
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Název souboru a cesta
|
|||||||
YouCanUseDOL_DATA_ROOT=Můžete použít DOL_DATA_ROOT / dolibarr.log pro soubor protokolu Dolibarr "Dokumenty" adresáře. Můžete nastavit jinou cestu k uložení tohoto souboru.
|
YouCanUseDOL_DATA_ROOT=Můžete použít DOL_DATA_ROOT / dolibarr.log pro soubor protokolu Dolibarr "Dokumenty" adresáře. Můžete nastavit jinou cestu k uložení tohoto souboru.
|
||||||
ErrorUnknownSyslogConstant=Konstantní %s není známo, Syslog konstantní
|
ErrorUnknownSyslogConstant=Konstantní %s není známo, Syslog konstantní
|
||||||
OnlyWindowsLOG_USER=Windows podporuje pouze LOG_USER
|
OnlyWindowsLOG_USER=Windows podporuje pouze LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Darování modul nastavení
|
DonationsSetup=Darování modul nastavení
|
||||||
DonationsReceiptModel=Vzor darovací přijetí
|
DonationsReceiptModel=Vzor darovací přijetí
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Filnavn og sti
|
|||||||
YouCanUseDOL_DATA_ROOT=Du kan bruge DOL_DATA_ROOT / dolibarr.log for en logfil i Dolibarr "dokumenter" mappen. Du kan indstille en anden vej til at gemme denne fil.
|
YouCanUseDOL_DATA_ROOT=Du kan bruge DOL_DATA_ROOT / dolibarr.log for en logfil i Dolibarr "dokumenter" mappen. Du kan indstille en anden vej til at gemme denne fil.
|
||||||
ErrorUnknownSyslogConstant=Konstant %s er ikke en kendt syslog konstant
|
ErrorUnknownSyslogConstant=Konstant %s er ikke en kendt syslog konstant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation modul opsætning
|
DonationsSetup=Donation modul opsætning
|
||||||
DonationsReceiptModel=Skabelon for donationen modtagelse
|
DonationsReceiptModel=Skabelon for donationen modtagelse
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Dateiname und-pfad
|
|||||||
YouCanUseDOL_DATA_ROOT=Sie können DOL_DATA_ROOT/dolibarr.log als Protokolldatei in Ihrem Dokumentenverzeichnis verwenden. Bei Bedarf können Sie auch den Pfad der Datei anpassen.
|
YouCanUseDOL_DATA_ROOT=Sie können DOL_DATA_ROOT/dolibarr.log als Protokolldatei in Ihrem Dokumentenverzeichnis verwenden. Bei Bedarf können Sie auch den Pfad der Datei anpassen.
|
||||||
ErrorUnknownSyslogConstant=Konstante %s ist nicht als Protokoll-Konstante definiert
|
ErrorUnknownSyslogConstant=Konstante %s ist nicht als Protokoll-Konstante definiert
|
||||||
OnlyWindowsLOG_USER=Windows unterstützt nur LOG_USER
|
OnlyWindowsLOG_USER=Windows unterstützt nur LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN Ihres Sentry Projekts
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Spendenmoduleinstellungen
|
DonationsSetup=Spendenmoduleinstellungen
|
||||||
DonationsReceiptModel=Vorlage für Spendenquittungen
|
DonationsReceiptModel=Vorlage für Spendenquittungen
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1323,8 +1323,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nombre y ruta del archivo
|
|||||||
YouCanUseDOL_DATA_ROOT=Puede utilizar DOL_DATA_ROOT/dolibarr.log para un registro en el directorio "documentos" de Dolibarr. Sin embargo, puede establecer un directorio diferente para guardar este archivo.
|
YouCanUseDOL_DATA_ROOT=Puede utilizar DOL_DATA_ROOT/dolibarr.log para un registro en el directorio "documentos" de Dolibarr. Sin embargo, puede establecer un directorio diferente para guardar este archivo.
|
||||||
ErrorUnknownSyslogConstant=La constante %s no es una constante syslog conocida
|
ErrorUnknownSyslogConstant=La constante %s no es una constante syslog conocida
|
||||||
OnlyWindowsLOG_USER=Windows sólo soporta LOG_USER
|
OnlyWindowsLOG_USER=Windows sólo soporta LOG_USER
|
||||||
SyslogSentryDSN=DSN Sentry
|
|
||||||
SyslogSentryFromProject=DSN de su proyecto Sentry
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Configuración del módulo donaciones
|
DonationsSetup=Configuración del módulo donaciones
|
||||||
DonationsReceiptModel=Modelo recepción de donaciones
|
DonationsReceiptModel=Modelo recepción de donaciones
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Faili nimi ja rada
|
|||||||
YouCanUseDOL_DATA_ROOT=Võid kasutada DOL_DATA_ROOT/dolibarr.log Dolibarri "documents" kausta faili salvestamiseks, aga logifaili salvestamiseks võib ka mõnda muud rada kasutada.
|
YouCanUseDOL_DATA_ROOT=Võid kasutada DOL_DATA_ROOT/dolibarr.log Dolibarri "documents" kausta faili salvestamiseks, aga logifaili salvestamiseks võib ka mõnda muud rada kasutada.
|
||||||
ErrorUnknownSyslogConstant=Konstant %s ei ole tuntud Syslogi konstant
|
ErrorUnknownSyslogConstant=Konstant %s ei ole tuntud Syslogi konstant
|
||||||
OnlyWindowsLOG_USER=Windows toetab vaid LOG_USER direktiivi
|
OnlyWindowsLOG_USER=Windows toetab vaid LOG_USER direktiivi
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Annetuste mooduli seadistamine
|
DonationsSetup=Annetuste mooduli seadistamine
|
||||||
DonationsReceiptModel=Annetuse kviitungi mall
|
DonationsReceiptModel=Annetuse kviitungi mall
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Fitxategiaren izena eta kokapena
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=%s konstantea ez da Syslog-eko konstante ezaguna
|
ErrorUnknownSyslogConstant=%s konstantea ez da Syslog-eko konstante ezaguna
|
||||||
OnlyWindowsLOG_USER=Windows-ek LOG_USER soilik jasaten du
|
OnlyWindowsLOG_USER=Windows-ek LOG_USER soilik jasaten du
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=نام فایل و مسیر
|
|||||||
YouCanUseDOL_DATA_ROOT=شما می توانید DOL_DATA_ROOT / dolibarr.log برای یک فایل در "اسناد" Dolibarr دایرکتوری استفاده کنید. شما می توانید راه های مختلفی را برای ذخیره این فایل را.
|
YouCanUseDOL_DATA_ROOT=شما می توانید DOL_DATA_ROOT / dolibarr.log برای یک فایل در "اسناد" Dolibarr دایرکتوری استفاده کنید. شما می توانید راه های مختلفی را برای ذخیره این فایل را.
|
||||||
ErrorUnknownSyslogConstant=٪ ثابت است ثابت های Syslog شناخته نشده است
|
ErrorUnknownSyslogConstant=٪ ثابت است ثابت های Syslog شناخته نشده است
|
||||||
OnlyWindowsLOG_USER=ویندوز تنها پشتیبانی از LOG_USER
|
OnlyWindowsLOG_USER=ویندوز تنها پشتیبانی از LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=راه اندازی ماژول کمک مالی
|
DonationsSetup=راه اندازی ماژول کمک مالی
|
||||||
DonationsReceiptModel=الگو از دریافت کمک مالی
|
DonationsReceiptModel=الگو از دریافت کمک مالی
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Tiedoston nimi ja polku
|
|||||||
YouCanUseDOL_DATA_ROOT=Voit käyttää DOL_DATA_ROOT / dolibarr.log varten lokitiedoston Dolibarr "asiakirjoihin" hakemistoon. Voit valita eri reitin tallentaa tiedoston.
|
YouCanUseDOL_DATA_ROOT=Voit käyttää DOL_DATA_ROOT / dolibarr.log varten lokitiedoston Dolibarr "asiakirjoihin" hakemistoon. Voit valita eri reitin tallentaa tiedoston.
|
||||||
ErrorUnknownSyslogConstant=Constant %s ei ole tunnettu syslog vakio
|
ErrorUnknownSyslogConstant=Constant %s ei ole tunnettu syslog vakio
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Lahjoitus-moduulin asetukset
|
DonationsSetup=Lahjoitus-moduulin asetukset
|
||||||
DonationsReceiptModel=Malline lahjoituksen vastaanottamisesta
|
DonationsReceiptModel=Malline lahjoituksen vastaanottamisesta
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nom et chemin du fichier
|
|||||||
YouCanUseDOL_DATA_ROOT=Vous pouvez utiliser DOL_DATA_ROOT/dolibarr.log pour un journal dans le répertoire "documents" de Dolibarr. Vous pouvez néanmoins définir un chemin différent pour stocker ce fichier.
|
YouCanUseDOL_DATA_ROOT=Vous pouvez utiliser DOL_DATA_ROOT/dolibarr.log pour un journal dans le répertoire "documents" de Dolibarr. Vous pouvez néanmoins définir un chemin différent pour stocker ce fichier.
|
||||||
ErrorUnknownSyslogConstant=La constante %s n'est pas une constante syslog connue
|
ErrorUnknownSyslogConstant=La constante %s n'est pas une constante syslog connue
|
||||||
OnlyWindowsLOG_USER=Windows ne prend en charge que LOG_USER
|
OnlyWindowsLOG_USER=Windows ne prend en charge que LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN de votre projet Sentry
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Configuration du module Dons
|
DonationsSetup=Configuration du module Dons
|
||||||
DonationsReceiptModel=Modèles de reçu de dons
|
DonationsReceiptModel=Modèles de reçu de dons
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=שם קובץ ונתיב
|
|||||||
YouCanUseDOL_DATA_ROOT=ניתן להשתמש DOL_DATA_ROOT / dolibarr.log עבור קובץ יומן בספרייה Dolibarr "מסמכים". ניתן להגדיר בדרך אחרת כדי לאחסן קובץ זה.
|
YouCanUseDOL_DATA_ROOT=ניתן להשתמש DOL_DATA_ROOT / dolibarr.log עבור קובץ יומן בספרייה Dolibarr "מסמכים". ניתן להגדיר בדרך אחרת כדי לאחסן קובץ זה.
|
||||||
ErrorUnknownSyslogConstant=%s קבועים אינו ידוע Syslog מתמיד
|
ErrorUnknownSyslogConstant=%s קבועים אינו ידוע Syslog מתמיד
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=מודול תרומה ההתקנה
|
DonationsSetup=מודול תרומה ההתקנה
|
||||||
DonationsReceiptModel=תבנית של קבלת תרומה
|
DonationsReceiptModel=תבנית של קבלת תרומה
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=A fájl nevét és elérési útvonalát
|
|||||||
YouCanUseDOL_DATA_ROOT=Használhatja DOL_DATA_ROOT / dolibarr.log egy log fájlt Dolibarr "Dokumentumok" mappa. Beállíthatjuk, más utat kell tárolni ezt a fájlt.
|
YouCanUseDOL_DATA_ROOT=Használhatja DOL_DATA_ROOT / dolibarr.log egy log fájlt Dolibarr "Dokumentumok" mappa. Beállíthatjuk, más utat kell tárolni ezt a fájlt.
|
||||||
ErrorUnknownSyslogConstant=Constant %s nem ismert Syslog állandó
|
ErrorUnknownSyslogConstant=Constant %s nem ismert Syslog állandó
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Adomány modul beállítása
|
DonationsSetup=Adomány modul beállítása
|
||||||
DonationsReceiptModel=Sablon az adomány átvételét
|
DonationsReceiptModel=Sablon az adomány átvételét
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Skráarnafn og slóði
|
|||||||
YouCanUseDOL_DATA_ROOT=Þú getur notað DOL_DATA_ROOT / dolibarr.log fyrir annálinn í Dolibarr "skjöl" skrá. Þú getur stillt mismunandi leið til að geyma þessa skrá.
|
YouCanUseDOL_DATA_ROOT=Þú getur notað DOL_DATA_ROOT / dolibarr.log fyrir annálinn í Dolibarr "skjöl" skrá. Þú getur stillt mismunandi leið til að geyma þessa skrá.
|
||||||
ErrorUnknownSyslogConstant=Constant %s er ekki þekktur skrifað fasti
|
ErrorUnknownSyslogConstant=Constant %s er ekki þekktur skrifað fasti
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Safnast mát skipulag
|
DonationsSetup=Safnast mát skipulag
|
||||||
DonationsReceiptModel=Snið af málefnið berst
|
DonationsReceiptModel=Snið af málefnið berst
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nome file e percorso
|
|||||||
YouCanUseDOL_DATA_ROOT=È possibile utilizzare DOL_DATA_ROOT/dolibarr.log come file di log per la directory "documenti". È anche possibile impostare un percorso diverso per tale file.
|
YouCanUseDOL_DATA_ROOT=È possibile utilizzare DOL_DATA_ROOT/dolibarr.log come file di log per la directory "documenti". È anche possibile impostare un percorso diverso per tale file.
|
||||||
ErrorUnknownSyslogConstant=La costante %s è sconosciuta a syslog.
|
ErrorUnknownSyslogConstant=La costante %s è sconosciuta a syslog.
|
||||||
OnlyWindowsLOG_USER=Solo utenti Windows supportano LOG_USER
|
OnlyWindowsLOG_USER=Solo utenti Windows supportano LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Impostazioni modulo donazioni
|
DonationsSetup=Impostazioni modulo donazioni
|
||||||
DonationsReceiptModel=Modello di ricevuta per donazioni
|
DonationsReceiptModel=Modello di ricevuta per donazioni
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=ファイル名とパス
|
|||||||
YouCanUseDOL_DATA_ROOT=あなたがDolibarr "ドキュメント"ディレクトリ内のログ·ファイルのDOL_DATA_ROOT / dolibarr.logを使用することができます。このファイルを格納する別のパスを設定することができます。
|
YouCanUseDOL_DATA_ROOT=あなたがDolibarr "ドキュメント"ディレクトリ内のログ·ファイルのDOL_DATA_ROOT / dolibarr.logを使用することができます。このファイルを格納する別のパスを設定することができます。
|
||||||
ErrorUnknownSyslogConstant=定数%sは知られているSyslogの定数ではありません。
|
ErrorUnknownSyslogConstant=定数%sは知られているSyslogの定数ではありません。
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=寄付モジュールのセットアップ
|
DonationsSetup=寄付モジュールのセットアップ
|
||||||
DonationsReceiptModel=寄付金の領収書のテンプレート
|
DonationsReceiptModel=寄付金の領収書のテンプレート
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Failo pavadinimas ir kelias
|
|||||||
YouCanUseDOL_DATA_ROOT=Galite naudoti DOL_DATA_ROOT/dolibarr.log prisijungimo failui Dolibarr "dokuments" kataloge. Galite nustatyti kitokį kelią šio failo saugojimui.
|
YouCanUseDOL_DATA_ROOT=Galite naudoti DOL_DATA_ROOT/dolibarr.log prisijungimo failui Dolibarr "dokuments" kataloge. Galite nustatyti kitokį kelią šio failo saugojimui.
|
||||||
ErrorUnknownSyslogConstant=Konstanta %s yra nežinoma Syslog konstanta
|
ErrorUnknownSyslogConstant=Konstanta %s yra nežinoma Syslog konstanta
|
||||||
OnlyWindowsLOG_USER=Windows palaiko tik LOG_USER
|
OnlyWindowsLOG_USER=Windows palaiko tik LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Aukų modulio nuostatos
|
DonationsSetup=Aukų modulio nuostatos
|
||||||
DonationsReceiptModel=Aukų įplaukų šablonas
|
DonationsReceiptModel=Aukų įplaukų šablonas
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Faila nosaukums un ceļš
|
|||||||
YouCanUseDOL_DATA_ROOT=Jūs varat izmantot DOL_DATA_ROOT / dolibarr.log uz log failu Dolibarr "dokumenti" direktorijā. Jūs varat iestatīt citu ceļu, lai saglabātu šo failu.
|
YouCanUseDOL_DATA_ROOT=Jūs varat izmantot DOL_DATA_ROOT / dolibarr.log uz log failu Dolibarr "dokumenti" direktorijā. Jūs varat iestatīt citu ceļu, lai saglabātu šo failu.
|
||||||
ErrorUnknownSyslogConstant=Constant %s nav zināms Syslog konstante
|
ErrorUnknownSyslogConstant=Constant %s nav zināms Syslog konstante
|
||||||
OnlyWindowsLOG_USER=Windows atbalsta tikai LOG_USER
|
OnlyWindowsLOG_USER=Windows atbalsta tikai LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Ziedojumu moduļa uzstādīšana
|
DonationsSetup=Ziedojumu moduļa uzstādīšana
|
||||||
DonationsReceiptModel=Veidne ziedojuma saņemšanu
|
DonationsReceiptModel=Veidne ziedojuma saņemšanu
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Filnavn og bane
|
|||||||
YouCanUseDOL_DATA_ROOT=Du kan bruke DOL_DATA_ROOT / dolibarr.log som loggfil i Dolibarr "dokumenter"-mappen. Du kan angi en annen bane for å lagre denne filen.
|
YouCanUseDOL_DATA_ROOT=Du kan bruke DOL_DATA_ROOT / dolibarr.log som loggfil i Dolibarr "dokumenter"-mappen. Du kan angi en annen bane for å lagre denne filen.
|
||||||
ErrorUnknownSyslogConstant=Konstant %s er ikke en kjent syslog-konstant
|
ErrorUnknownSyslogConstant=Konstant %s er ikke en kjent syslog-konstant
|
||||||
OnlyWindowsLOG_USER=Windows støtter bare LOG_USER
|
OnlyWindowsLOG_USER=Windows støtter bare LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN fra ditt Sentry-prosjekt
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Oppsett av Donasjonsmodulen
|
DonationsSetup=Oppsett av Donasjonsmodulen
|
||||||
DonationsReceiptModel=Mal for donasjonskvittering
|
DonationsReceiptModel=Mal for donasjonskvittering
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Bestandsnaam en -pad
|
|||||||
YouCanUseDOL_DATA_ROOT=U kunt DOL_DATA_ROOT/dolibarr.log gebruiken voor een logbestand in de Dolibarr "documenten"-map. U kunt ook een ander pad gebruiken om dit bestand op te slaan.
|
YouCanUseDOL_DATA_ROOT=U kunt DOL_DATA_ROOT/dolibarr.log gebruiken voor een logbestand in de Dolibarr "documenten"-map. U kunt ook een ander pad gebruiken om dit bestand op te slaan.
|
||||||
ErrorUnknownSyslogConstant=Constante %s is geen bekende 'syslog' constante
|
ErrorUnknownSyslogConstant=Constante %s is geen bekende 'syslog' constante
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donatiemoduleinstellingen
|
DonationsSetup=Donatiemoduleinstellingen
|
||||||
DonationsReceiptModel=Sjabloon van donatie-ontvangst
|
DonationsReceiptModel=Sjabloon van donatie-ontvangst
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nazwa pliku i ścieżka
|
|||||||
YouCanUseDOL_DATA_ROOT=Możesz użyć DOL_DATA_ROOT / dolibarr.log do pliku w Dolibarr "dokumenty" katalogu. Można ustawić inną ścieżkę do przechowywania tego pliku.
|
YouCanUseDOL_DATA_ROOT=Możesz użyć DOL_DATA_ROOT / dolibarr.log do pliku w Dolibarr "dokumenty" katalogu. Można ustawić inną ścieżkę do przechowywania tego pliku.
|
||||||
ErrorUnknownSyslogConstant=Stała %s nie jest znany syslog stałej
|
ErrorUnknownSyslogConstant=Stała %s nie jest znany syslog stałej
|
||||||
OnlyWindowsLOG_USER=System Windows obsługuje tylko LOG_USER
|
OnlyWindowsLOG_USER=System Windows obsługuje tylko LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Darowizna konfiguracji modułu
|
DonationsSetup=Darowizna konfiguracji modułu
|
||||||
DonationsReceiptModel=Szablon otrzymania wpłaty
|
DonationsReceiptModel=Szablon otrzymania wpłaty
|
||||||
|
|||||||
@ -1011,7 +1011,6 @@ SyslogFilename=Nome do arquivo e caminho
|
|||||||
YouCanUseDOL_DATA_ROOT=Você pode usar DOL_DATA_ROOT/dolibarr.log para um arquivo de log no diretório dos "documentos" do Dolibarr.
|
YouCanUseDOL_DATA_ROOT=Você pode usar DOL_DATA_ROOT/dolibarr.log para um arquivo de log no diretório dos "documentos" do Dolibarr.
|
||||||
ErrorUnknownSyslogConstant=A Constante %s não é conhecida pelas constantes do Syslog
|
ErrorUnknownSyslogConstant=A Constante %s não é conhecida pelas constantes do Syslog
|
||||||
OnlyWindowsLOG_USER=Somente Windows suporta LOG_USER
|
OnlyWindowsLOG_USER=Somente Windows suporta LOG_USER
|
||||||
SyslogSentryFromProject=DSN do seu projeto Sentry
|
|
||||||
DonationsSetup=Configurações do módulo de doações
|
DonationsSetup=Configurações do módulo de doações
|
||||||
DonationsReceiptModel=Templates de recibos de doação
|
DonationsReceiptModel=Templates de recibos de doação
|
||||||
BarcodeSetup=Configurações de código de barras
|
BarcodeSetup=Configurações de código de barras
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nome e caminho do Ficheiro
|
|||||||
YouCanUseDOL_DATA_ROOT=Pode utilizar DOL_DATA_ROOT/dolibarr.log para um log na pasta 'documentos' de Dolibarr.
|
YouCanUseDOL_DATA_ROOT=Pode utilizar DOL_DATA_ROOT/dolibarr.log para um log na pasta 'documentos' de Dolibarr.
|
||||||
ErrorUnknownSyslogConstant=A constante %s não é uma constante syslog conhecida
|
ErrorUnknownSyslogConstant=A constante %s não é uma constante syslog conhecida
|
||||||
OnlyWindowsLOG_USER=O Windows suporta apenas LOG_USER
|
OnlyWindowsLOG_USER=O Windows suporta apenas LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Configuração do módulo Bolsas
|
DonationsSetup=Configuração do módulo Bolsas
|
||||||
DonationsReceiptModel=Modelo de recibo de doação
|
DonationsReceiptModel=Modelo de recibo de doação
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Nume fişier şi calea
|
|||||||
YouCanUseDOL_DATA_ROOT=Puteţi folosi DOL_DATA_ROOT / dolibarr.log pentru un fişier de log în Dolibarr "Documente" director. Aveţi posibilitatea să setaţi o altă cale de a păstra acest fişier.
|
YouCanUseDOL_DATA_ROOT=Puteţi folosi DOL_DATA_ROOT / dolibarr.log pentru un fişier de log în Dolibarr "Documente" director. Aveţi posibilitatea să setaţi o altă cale de a păstra acest fişier.
|
||||||
ErrorUnknownSyslogConstant=Constant %s nu este un cunoscut syslog constant
|
ErrorUnknownSyslogConstant=Constant %s nu este un cunoscut syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows suportă numai LOG_USER
|
OnlyWindowsLOG_USER=Windows suportă numai LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donatii modul de configurare
|
DonationsSetup=Donatii modul de configurare
|
||||||
DonationsReceiptModel=Format de donatie la primirea
|
DonationsReceiptModel=Format de donatie la primirea
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Имя файла и путь
|
|||||||
YouCanUseDOL_DATA_ROOT=Вы можете использовать DOL_DATA_ROOT / dolibarr.log в лог-файл в Dolibarr "документы" каталог. Вы можете установить различные пути для хранения этого файла.
|
YouCanUseDOL_DATA_ROOT=Вы можете использовать DOL_DATA_ROOT / dolibarr.log в лог-файл в Dolibarr "документы" каталог. Вы можете установить различные пути для хранения этого файла.
|
||||||
ErrorUnknownSyslogConstant=Постоянная %s не известны журнала постоянная
|
ErrorUnknownSyslogConstant=Постоянная %s не известны журнала постоянная
|
||||||
OnlyWindowsLOG_USER=Windows© поддерживает только LOG_USER
|
OnlyWindowsLOG_USER=Windows© поддерживает только LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Пожертвования модуль настройки
|
DonationsSetup=Пожертвования модуль настройки
|
||||||
DonationsReceiptModel=Шаблон дарения получения
|
DonationsReceiptModel=Шаблон дарения получения
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Názov súboru a cesta
|
|||||||
YouCanUseDOL_DATA_ROOT=Môžete použiť DOL_DATA_ROOT / dolibarr.log pre súbor denníka Dolibarr "Dokumenty" adresára. Môžete nastaviť inú cestu na uloženie tohto súboru.
|
YouCanUseDOL_DATA_ROOT=Môžete použiť DOL_DATA_ROOT / dolibarr.log pre súbor denníka Dolibarr "Dokumenty" adresára. Môžete nastaviť inú cestu na uloženie tohto súboru.
|
||||||
ErrorUnknownSyslogConstant=Konštantná %s nie je známe, Syslog konštantný
|
ErrorUnknownSyslogConstant=Konštantná %s nie je známe, Syslog konštantný
|
||||||
OnlyWindowsLOG_USER=Windows podporuje iba LOG_USER
|
OnlyWindowsLOG_USER=Windows podporuje iba LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Darovanie modul nastavenia
|
DonationsSetup=Darovanie modul nastavenia
|
||||||
DonationsReceiptModel=Vzor darovacej prijatie
|
DonationsReceiptModel=Vzor darovacej prijatie
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Ime datoteke in pot
|
|||||||
YouCanUseDOL_DATA_ROOT=Za log datoteko v Dolibarr dokumentni mapi lahko uporabite DOL_DATA_ROOT/dolibarr.log. Za shranjevanje te datoteke lahko nastavite tudi drugačno pot.
|
YouCanUseDOL_DATA_ROOT=Za log datoteko v Dolibarr dokumentni mapi lahko uporabite DOL_DATA_ROOT/dolibarr.log. Za shranjevanje te datoteke lahko nastavite tudi drugačno pot.
|
||||||
ErrorUnknownSyslogConstant=Konstanta %s ni znana syslog konstanta
|
ErrorUnknownSyslogConstant=Konstanta %s ni znana syslog konstanta
|
||||||
OnlyWindowsLOG_USER=Windowsi podpirajo samo LOG_USER
|
OnlyWindowsLOG_USER=Windowsi podpirajo samo LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Nastanitev modula za donacije
|
DonationsSetup=Nastanitev modula za donacije
|
||||||
DonationsReceiptModel=Predloga računa za donacijo
|
DonationsReceiptModel=Predloga računa za donacijo
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN iz Vašeg Sentry projekta
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Filnamn och sökväg
|
|||||||
YouCanUseDOL_DATA_ROOT=Du kan använda DOL_DATA_ROOT / dolibarr.log för en loggfil i Dolibarr "dokument" katalogen. Du kan ställa in en annan väg för att lagra den här filen.
|
YouCanUseDOL_DATA_ROOT=Du kan använda DOL_DATA_ROOT / dolibarr.log för en loggfil i Dolibarr "dokument" katalogen. Du kan ställa in en annan väg för att lagra den här filen.
|
||||||
ErrorUnknownSyslogConstant=Konstant %s är inte en känd syslog konstant
|
ErrorUnknownSyslogConstant=Konstant %s är inte en känd syslog konstant
|
||||||
OnlyWindowsLOG_USER=Endast Windows stöder LOG_USER
|
OnlyWindowsLOG_USER=Endast Windows stöder LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation modul setup
|
DonationsSetup=Donation modul setup
|
||||||
DonationsReceiptModel=Mall för donation kvitto
|
DonationsReceiptModel=Mall för donation kvitto
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=ชื่อแฟ้มและเส้นทาง
|
|||||||
YouCanUseDOL_DATA_ROOT=คุณสามารถใช้ DOL_DATA_ROOT / dolibarr.log สำหรับล็อกไฟล์ใน Dolibarr "เอกสาร" ไดเรกทอรี คุณสามารถตั้งค่าเส้นทางที่แตกต่างกันในการจัดเก็บไฟล์นี้
|
YouCanUseDOL_DATA_ROOT=คุณสามารถใช้ DOL_DATA_ROOT / dolibarr.log สำหรับล็อกไฟล์ใน Dolibarr "เอกสาร" ไดเรกทอรี คุณสามารถตั้งค่าเส้นทางที่แตกต่างกันในการจัดเก็บไฟล์นี้
|
||||||
ErrorUnknownSyslogConstant=% s คงไม่ได้เป็นที่รู้จักกันอย่างต่อเนื่อง Syslog
|
ErrorUnknownSyslogConstant=% s คงไม่ได้เป็นที่รู้จักกันอย่างต่อเนื่อง Syslog
|
||||||
OnlyWindowsLOG_USER=Windows เท่านั้นสนับสนุน LOG_USER
|
OnlyWindowsLOG_USER=Windows เท่านั้นสนับสนุน LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=บริจาคการติดตั้งโมดูล
|
DonationsSetup=บริจาคการติดตั้งโมดูล
|
||||||
DonationsReceiptModel=แม่แบบที่ได้รับการบริจาค
|
DonationsReceiptModel=แม่แบบที่ได้รับการบริจาค
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Dosya adı ve yolu
|
|||||||
YouCanUseDOL_DATA_ROOT=Dolibarr’daki “belgeler” dizinindeki bir log (günlük) dosyası için DOL_DATA_ROOT/dolibarr.log u kullanabilirsiniz. Bu dosyayı saklamak için farklı bir yol (path) kullanabilirsiniz.
|
YouCanUseDOL_DATA_ROOT=Dolibarr’daki “belgeler” dizinindeki bir log (günlük) dosyası için DOL_DATA_ROOT/dolibarr.log u kullanabilirsiniz. Bu dosyayı saklamak için farklı bir yol (path) kullanabilirsiniz.
|
||||||
ErrorUnknownSyslogConstant=%s Değişmezi bilinen bir Syslog değişmezi değildir
|
ErrorUnknownSyslogConstant=%s Değişmezi bilinen bir Syslog değişmezi değildir
|
||||||
OnlyWindowsLOG_USER=Windows yalnızca LOG_USER'ı destekler
|
OnlyWindowsLOG_USER=Windows yalnızca LOG_USER'ı destekler
|
||||||
SyslogSentryDSN=Nöbetçi DSN
|
|
||||||
SyslogSentryFromProject=Nöbetçi projenizdeki DSN
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Bağış modülü kurulumu
|
DonationsSetup=Bağış modülü kurulumu
|
||||||
DonationsReceiptModel=Bağış makbuzu şablonu
|
DonationsReceiptModel=Bağış makbuzu şablonu
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=File name and path
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Donation module setup
|
DonationsSetup=Donation module setup
|
||||||
DonationsReceiptModel=Template of donation receipt
|
DonationsReceiptModel=Template of donation receipt
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=Tên tập tin và đường dẫn
|
|||||||
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
|
||||||
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Cài đặt module Tài trợ
|
DonationsSetup=Cài đặt module Tài trợ
|
||||||
DonationsReceiptModel=Mẫu biên nhận Tài trợ
|
DonationsReceiptModel=Mẫu biên nhận Tài trợ
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=文件名称和路径
|
|||||||
YouCanUseDOL_DATA_ROOT=您可以使用 DOL_DATA_ROOT/dolibarr.log 来表示“documents”目录下的日志文件。您可以设置不同的路径来保存此文件。
|
YouCanUseDOL_DATA_ROOT=您可以使用 DOL_DATA_ROOT/dolibarr.log 来表示“documents”目录下的日志文件。您可以设置不同的路径来保存此文件。
|
||||||
ErrorUnknownSyslogConstant=常量 %s 不是已知的 Syslog 常数
|
ErrorUnknownSyslogConstant=常量 %s 不是已知的 Syslog 常数
|
||||||
OnlyWindowsLOG_USER=Windows 仅支持 LOG_USER
|
OnlyWindowsLOG_USER=Windows 仅支持 LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=捐赠模块设置
|
DonationsSetup=捐赠模块设置
|
||||||
DonationsReceiptModel=捐赠收据模板
|
DonationsReceiptModel=捐赠收据模板
|
||||||
|
|||||||
@ -1311,8 +1311,6 @@ SyslogFilename=文件名稱和路徑
|
|||||||
YouCanUseDOL_DATA_ROOT=你可以使用DOL_DATA_ROOT /可在Dolibarr日誌文件dolibarr.log“文件”目錄。你可以設置一個不同的路徑來存儲該文件。
|
YouCanUseDOL_DATA_ROOT=你可以使用DOL_DATA_ROOT /可在Dolibarr日誌文件dolibarr.log“文件”目錄。你可以設置一個不同的路徑來存儲該文件。
|
||||||
ErrorUnknownSyslogConstant=恆%s不是一個已知的syslog常數
|
ErrorUnknownSyslogConstant=恆%s不是一個已知的syslog常數
|
||||||
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
OnlyWindowsLOG_USER=Windows only supports LOG_USER
|
||||||
SyslogSentryDSN=Sentry DSN
|
|
||||||
SyslogSentryFromProject=DSN from your Sentry project
|
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=捐贈模組設置
|
DonationsSetup=捐贈模組設置
|
||||||
DonationsReceiptModel=模板的捐贈收據
|
DonationsReceiptModel=模板的捐贈收據
|
||||||
|
|||||||
@ -1293,16 +1293,6 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
|
|||||||
print '<script type="text/javascript" src="'.$pathckeditor.$jsckeditor.($ext?'?'.$ext:'').'"></script>'."\n";
|
print '<script type="text/javascript" src="'.$pathckeditor.$jsckeditor.($ext?'?'.$ext:'').'"></script>'."\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Raven.js for client-side Sentry logging support
|
|
||||||
if (array_key_exists('mod_syslog_sentry', $conf->loghandlers)) {
|
|
||||||
print '<!-- Includes Raven.js for Sentry -->' . "\n";
|
|
||||||
print '<script src="' . DOL_URL_ROOT . '/includes/raven-js/dist/raven.min.js"></script>' . "\n";
|
|
||||||
print '<script src="' . DOL_URL_ROOT . '/includes/raven-js/plugins/native.js"></script>' . "\n";
|
|
||||||
if (! defined('DISABLE_JQUERY')) {
|
|
||||||
print '<script src="' . DOL_URL_ROOT . '/includes/raven-js/plugins/jquery.js"></script>' . "\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Global js function
|
// Global js function
|
||||||
print '<!-- Includes JS of Dolibarr -->'."\n";
|
print '<!-- Includes JS of Dolibarr -->'."\n";
|
||||||
print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/core/js/lib_head.js.php?version='.urlencode(DOL_VERSION).($ext?'&'.$ext:'').'"></script>'."\n";
|
print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/core/js/lib_head.js.php?version='.urlencode(DOL_VERSION).($ext?'&'.$ext:'').'"></script>'."\n";
|
||||||
@ -1388,23 +1378,6 @@ function top_menu($head, $title='', $target='', $disablejs=0, $disablehead=0, $a
|
|||||||
|
|
||||||
print '<body id="mainbody">' . "\n";
|
print '<body id="mainbody">' . "\n";
|
||||||
|
|
||||||
if ($conf->use_javascript_ajax)
|
|
||||||
{
|
|
||||||
// Raven.js for client-side Sentry logging support
|
|
||||||
if (array_key_exists('mod_syslog_sentry', $conf->loghandlers) && ! empty($conf->global->SYSLOG_SENTRY_DSN))
|
|
||||||
{
|
|
||||||
// Filter out secret key
|
|
||||||
$dsn = parse_url($conf->global->SYSLOG_SENTRY_DSN);
|
|
||||||
$public_dsn = $dsn['scheme'] . '://' . $dsn['user'] .'@' . $dsn['host'] . $dsn['path'];
|
|
||||||
|
|
||||||
print '<script type="text/javascript">' . "\n";
|
|
||||||
print "Raven.config('" . $public_dsn . "').install()\n";
|
|
||||||
print "Raven.setUserContext({username: '" . $user->login . "'})\n";
|
|
||||||
print "Raven.setTagsContext({version: '" . DOL_VERSION . "'})\n";
|
|
||||||
print "</script>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Top menu
|
* Top menu
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user