mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
New: Start to work on a cron module
This commit is contained in:
parent
80b5bd7215
commit
277784af25
124
htdocs/core/modules/modCron.class.php
Normal file
124
htdocs/core/modules/modCron.class.php
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
<?php
|
||||
/* Copyright (C) 2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup webservices Module webservices
|
||||
* \brief Module to enable the Dolibarr server of web services
|
||||
* \file htdocs/core/modules/modCron.class.php
|
||||
* \ingroup cron
|
||||
* \brief File to describe cron module
|
||||
*/
|
||||
include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
|
||||
|
||||
/**
|
||||
* Class to describe a Cron module
|
||||
*/
|
||||
class modCron extends DolibarrModules
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructor. Define names, constants, directories, boxes, permissions
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
function __construct($db)
|
||||
{
|
||||
$this->db = $db;
|
||||
$this->numero = 2300;
|
||||
|
||||
// Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
|
||||
// It is used to group modules in module setup page
|
||||
$this->family = "technic";
|
||||
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
|
||||
$this->name = preg_replace('/^mod/i','',get_class($this));
|
||||
$this->description = "Enable the Dolibarr cron service";
|
||||
$this->version = 'experimental'; // 'experimental' or 'dolibarr' or version
|
||||
// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
|
||||
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
|
||||
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
|
||||
$this->special = 2;
|
||||
// Name of image file used for this module.
|
||||
$this->picto='technic';
|
||||
|
||||
// Data directories to create when module is enabled
|
||||
$this->dirs = array();
|
||||
|
||||
// Config pages
|
||||
//-------------
|
||||
$this->config_page_url = array("cron.php@cron");
|
||||
|
||||
// Dependancies
|
||||
//-------------
|
||||
$this->depends = array();
|
||||
$this->requiredby = array();
|
||||
$this->langfiles = array("cron");
|
||||
|
||||
// Constantes
|
||||
//-----------
|
||||
$this->const = array();
|
||||
|
||||
// New pages on tabs
|
||||
// -----------------
|
||||
$this->tabs = array();
|
||||
|
||||
// Boxes
|
||||
//------
|
||||
$this->boxes = array();
|
||||
|
||||
// Permissions
|
||||
//------------
|
||||
$this->rights = array();
|
||||
$this->rights_class = 'cron';
|
||||
$r=0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Function called when module is enabled.
|
||||
* The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
|
||||
* It also creates data directories
|
||||
*
|
||||
* @param string $options Options when enabling module ('', 'noboxes')
|
||||
* @return int 1 if OK, 0 if KO
|
||||
*/
|
||||
function init($options='')
|
||||
{
|
||||
// Prevent pb of modules not correctly disabled
|
||||
//$this->remove($options);
|
||||
|
||||
$sql = array();
|
||||
|
||||
return $this->_init($sql,$options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Function called when module is disabled.
|
||||
* Remove from database constants, boxes and permissions from Dolibarr database.
|
||||
* Data directories are not deleted
|
||||
*
|
||||
* @param string $options Options when enabling module ('', 'noboxes')
|
||||
* @return int 1 if OK, 0 if KO
|
||||
*/
|
||||
function remove($options='')
|
||||
{
|
||||
$sql = array();
|
||||
|
||||
return $this->_remove($sql,$options);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
132
htdocs/cron/admin/cron.php
Normal file
132
htdocs/cron/admin/cron.php
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
<?php
|
||||
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.org>
|
||||
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
||||
* Copyright (C) 2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/cron/admin/cron.php
|
||||
* \ingroup cron
|
||||
* \brief Page to setup cron module
|
||||
*/
|
||||
|
||||
require '../../main.inc.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
||||
|
||||
$langs->load("admin");
|
||||
$langs->load("cron");
|
||||
|
||||
if (! $user->admin)
|
||||
accessforbidden();
|
||||
|
||||
$actionsave=GETPOST("save");
|
||||
|
||||
// Sauvegardes parametres
|
||||
if ($actionsave)
|
||||
{
|
||||
$i=0;
|
||||
|
||||
$db->begin();
|
||||
|
||||
$i+=dolibarr_set_const($db,'CRON_KEY',trim(GETPOST("CRON_KEY")),'chaine',0,'',$conf->entity);
|
||||
|
||||
if ($i >= 1)
|
||||
{
|
||||
$db->commit();
|
||||
setEventMessage($langs->trans("SetupSaved"));
|
||||
}
|
||||
else
|
||||
{
|
||||
$db->rollback();
|
||||
setEventMessage($langs->trans("Error"), 'errors');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* View
|
||||
*/
|
||||
|
||||
llxHeader();
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("CronSetup"),$linkback,'setup');
|
||||
|
||||
print $langs->trans("CronDesc")."<br>\n";
|
||||
print "<br>\n";
|
||||
|
||||
print '<form name="agendasetupform" action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||
print '<table class="noborder" width="100%">';
|
||||
|
||||
print '<tr class="liste_titre">';
|
||||
print "<td>".$langs->trans("Parameter")."</td>";
|
||||
print "<td>".$langs->trans("Value")."</td>";
|
||||
//print "<td>".$langs->trans("Examples")."</td>";
|
||||
print "<td> </td>";
|
||||
print "</tr>";
|
||||
|
||||
print '<tr class="impair">';
|
||||
print '<td class="fieldrequired">'.$langs->trans("KeyForCronAccess").'</td>';
|
||||
print '<td><input type="text" class="flat" id="CRON_KEY" name="CRON_KEY" value="'. (GETPOST('CRON_KEY')?GETPOST('CRON_KEY'):(! empty($conf->global->CRON_KEY)?$conf->global->CRON_KEY:'')) . '" size="40">';
|
||||
if (! empty($conf->use_javascript_ajax))
|
||||
print ' '.img_picto($langs->trans('Generate'), 'refresh', 'id="generate_token" class="linkobject"');
|
||||
print '</td>';
|
||||
print '<td> </td>';
|
||||
print '</tr>';
|
||||
|
||||
print '</table>';
|
||||
|
||||
print '<br><center>';
|
||||
print '<input type="submit" name="save" class="button" value="'.$langs->trans("Save").'">';
|
||||
print '</center>';
|
||||
|
||||
print '</form>';
|
||||
|
||||
print '<br><br>';
|
||||
|
||||
|
||||
// Cron launch
|
||||
print '<u>'.$langs->trans("URLToLaunchCronJobs").':</u><br>';
|
||||
$url=DOL_MAIN_URL_ROOT.'/cron/cron_run_jobs.php'.(empty($conf->global->CRON_KEY)?'':'?securitykey='.$conf->global->CRON_KEY);
|
||||
print img_picto('','object_globe.png').' <a href="'.$url.'" target="_blank">'.$url."</a><br>\n";
|
||||
print '<br>';
|
||||
|
||||
|
||||
print '<br>';
|
||||
|
||||
if (! empty($conf->use_javascript_ajax))
|
||||
{
|
||||
print "\n".'<script type="text/javascript">';
|
||||
print '$(document).ready(function () {
|
||||
$("#generate_token").click(function() {
|
||||
$.get( "'.DOL_URL_ROOT.'/core/ajax/security.php", {
|
||||
action: \'getrandompassword\',
|
||||
generic: true
|
||||
},
|
||||
function(token) {
|
||||
$("#CRON_KEY").val(token);
|
||||
});
|
||||
});
|
||||
});';
|
||||
print '</script>';
|
||||
}
|
||||
|
||||
|
||||
llxFooter();
|
||||
$db->close();
|
||||
?>
|
||||
|
|
@ -333,10 +333,6 @@ Module1400Name=المحاسبة
|
|||
Module1400Desc=المحاسبة الإدارية (ضعف الأحزاب)
|
||||
Module1780Name=الفئات
|
||||
Module1780Desc=الفئات إدارة المنتجات والموردين والزبائن)
|
||||
Module2200Name=الإقراض الإنسان
|
||||
Module2200Desc=الإقراض لإدارة الحقوق
|
||||
Module2300Name=القوائم
|
||||
Module2300Desc=القوائم إدارة
|
||||
Module2400Name=جدول الأعمال
|
||||
Module2400Desc=الأعمال / الإدارة المهام وجدول الأعمال
|
||||
Module2500Name=إدارة المحتوى الإلكتروني
|
||||
|
|
|
|||
|
|
@ -438,10 +438,6 @@ Module1780Name=Категории
|
|||
Module1780Desc=Категория управление (продукти, доставчици и клиенти)
|
||||
Module2000Name=WYSIWYG редактор
|
||||
Module2000Desc=Оставя се да редактирате някакъв текст, чрез използване на усъвършенствана редактор
|
||||
Module2200Name=Кредити права
|
||||
Module2200Desc=Заеми за управление на права
|
||||
Module2300Name=Менюта
|
||||
Module2300Desc=Меню управление
|
||||
Module2400Name=Дневен ред
|
||||
Module2400Desc=Събития / задачи и управление на дневен ред
|
||||
Module2500Name=Управление на електронно съдържание
|
||||
|
|
|
|||
|
|
@ -450,10 +450,6 @@ Module1780Name=Categories
|
|||
Module1780Desc=Gestió de categories (productes, proveïdors i clients)
|
||||
Module2000Name=Editor WYSIWYG
|
||||
Module2000Desc=Permet l'edició de certes zones de text mitjançant un editor avançat
|
||||
Module2200Name=Dret de préstecs
|
||||
Module2200Desc=Gestió dels drets de préstecs
|
||||
Module2300Name=Menús
|
||||
Module2300Desc=Administració dels menús per base de dades
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Gestió de l'agenda i de les accions
|
||||
Module2500Name=Gestió Electrònica de Documents
|
||||
|
|
|
|||
|
|
@ -305,10 +305,6 @@ Module1400Name=Regnskabsmæssig ekspert
|
|||
Module1400Desc=Regnskabsmæssig forvaltning for eksperter (dobbelt parterne)
|
||||
Module1780Name=Kategorier
|
||||
Module1780Desc=Kategorier 'forvaltning (produkter, leverandører og kunder)
|
||||
Module2200Name=Udlånsrettighederne
|
||||
Module2200Desc=Udlånsrettighederne forvaltning
|
||||
Module2300Name=Menuer
|
||||
Module2300Desc=Menuer 'ledelse
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Handlinger / opgaver og dagsorden forvaltning
|
||||
Module2500Name=Elektronisk Content Management
|
||||
|
|
|
|||
|
|
@ -300,10 +300,6 @@ Module1400Name=Buchhaltung
|
|||
Module1400Desc=Buchhaltung für Experten (doppelte Buchhaltung)
|
||||
Module1780Name=Kategorien
|
||||
Module1780Desc=Kategorienverwaltung (Produkte, Lieferanten und Kunden)
|
||||
Module2200Name=Verleihrechte
|
||||
Module2200Desc=Verleihrechteverwaltung
|
||||
Module2300Name=Menüs
|
||||
Module2300Desc=Menüverwaltung
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Maßnahmen/Aufgaben und Agendaverwaltung
|
||||
Module2500Name=Inhaltsverwaltung(ECM)
|
||||
|
|
|
|||
|
|
@ -421,10 +421,6 @@ Module1780Name=Kategorien
|
|||
Module1780Desc=Kategorienverwaltung (Produkte, Lieferanten und Kunden)
|
||||
Module2000Name=FCKeditor
|
||||
Module2000Desc=WYSIWYG-Editor
|
||||
Module2200Name=Verleihrechte
|
||||
Module2200Desc=Verleihrechteverwaltung
|
||||
Module2300Name=Menüs
|
||||
Module2300Desc=Menüverwaltung
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Maßnahmen/Aufgaben und Agendaverwaltung
|
||||
Module2500Name=Inhaltsverwaltung(ECM)
|
||||
|
|
|
|||
|
|
@ -181,7 +181,6 @@ Module330Name=Σελιδοδείκτες
|
|||
Module400Name=Έργα
|
||||
Module700Name=Δωρεές
|
||||
Module1780Name=Κατηγορίες
|
||||
Module2300Name=Μενού
|
||||
Module2400Name=Ατζέντα
|
||||
Module50100Name=Σημείο Πωλήσεων
|
||||
Permission19=Διαγραφή τιμολογίων
|
||||
|
|
|
|||
|
|
@ -454,10 +454,8 @@ Module1780Name=Categories
|
|||
Module1780Desc=Category management (products, suppliers and customers)
|
||||
Module2000Name=WYSIWYG editor
|
||||
Module2000Desc=Allow to edit some text area using an advanced editor
|
||||
Module2200Name=Lending rights
|
||||
Module2200Desc=Lending rights management
|
||||
Module2300Name=Menus
|
||||
Module2300Desc=Menu management
|
||||
Module2300Name=Cron
|
||||
Module2300Desc=Scheduled task management
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Events/tasks and agenda management
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
6
htdocs/langs/en_US/cron.lang
Normal file
6
htdocs/langs/en_US/cron.lang
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Dolibarr language file - en_US - cron
|
||||
CHARSET=UTF-8
|
||||
CronSetup=Cron scheduler setup
|
||||
CronDesc=This page can be used to setup options of the scheduler manager
|
||||
URLToLaunchCronJobs=URL to launch cron jobs
|
||||
KeyForCronAccess=Security key for URL to launch cron jobs
|
||||
|
|
@ -451,10 +451,6 @@ Module1780Name=Categorías
|
|||
Module1780Desc=Gestión de categorías (productos, proveedores y clientes)
|
||||
Module2000Name=Editor WYSIWYG
|
||||
Module2000Desc=Permite la edición de ciertas zonas de texto mediante un editor avanzado
|
||||
Module2200Name=Derecho de préstamos
|
||||
Module2200Desc=Gestión de los derechos de préstamos
|
||||
Module2300Name=Menús
|
||||
Module2300Desc=Administración de los menús por base de datos
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Gestión de la agenda y de las acciones
|
||||
Module2500Name=Gestión Electrónica de Documentos
|
||||
|
|
|
|||
|
|
@ -418,10 +418,6 @@ Module1780Name=Kategooriad
|
|||
Module1780Desc=Kategoorias juhtkond (toodete, tarnijate ja tarbijate)
|
||||
Module2000Name=WYSIWYG editor
|
||||
Module2000Desc=Võimaldavad muuta natuke teksti ala, kasutades täiustatud toimetaja
|
||||
Module2200Name=Laenutusõigust
|
||||
Module2200Desc=Laenutusõigust juhtimine
|
||||
Module2300Name=Menüüd
|
||||
Module2300Desc=Menüü juhtkond
|
||||
Module2400Name=Päevakord
|
||||
Module2400Desc=Events / ülesanded ja kava haldamise
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -341,10 +341,6 @@ Module1400Name=المحاسبة
|
|||
Module1400Desc=المحاسبة الإدارية (ضعف الأحزاب)
|
||||
Module1780Name=الفئات
|
||||
Module1780Desc=الفئات إدارة المنتجات والموردين والزبائن)
|
||||
Module2200Name=الإقراض الإنسان
|
||||
Module2200Desc=الإقراض لإدارة الحقوق
|
||||
Module2300Name=القوائم
|
||||
Module2300Desc=القوائم إدارة
|
||||
Module2400Name=جدول الأعمال
|
||||
Module2400Desc=الأعمال / الإدارة المهام وجدول الأعمال
|
||||
Module2500Name=إدارة المحتوى الإلكتروني
|
||||
|
|
|
|||
|
|
@ -303,10 +303,6 @@ Module1400Name=Kirjanpidon asiantuntija
|
|||
Module1400Desc=Kirjanpidon hallinta asiantuntijoille (double osapuolet)
|
||||
Module1780Name=Kategoriat
|
||||
Module1780Desc=Kategoriat hallintaa (tuotteet, tavarantoimittajat ja asiakkaat)
|
||||
Module2200Name=Lainausoikeuksia
|
||||
Module2200Desc=Luotonanto oikeuksien hallinta
|
||||
Module2300Name=Menut
|
||||
Module2300Desc=Valikot hallinto
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Toimet / tehtävät ja esityslistan hallinta
|
||||
Module2500Name=Sähköinen Content Management
|
||||
|
|
|
|||
|
|
@ -452,10 +452,8 @@ Module1780Name= Catégories
|
|||
Module1780Desc= Gestion des catégories (produits, fournisseurs, clients et adhérents)
|
||||
Module2000Name= Editeur WYSIWYG
|
||||
Module2000Desc= Permet la saisie de certaines zones de textes grace à un éditeur avancé
|
||||
Module2200Name= Droit de prêts
|
||||
Module2200Desc= Gestion du droit de prêts
|
||||
Module2300Name= Menus
|
||||
Module2300Desc= Administration des menus par base de données
|
||||
Module2300Name= Cron
|
||||
Module2300Desc= Gestionnaire de taches programmées
|
||||
Module2400Name= Agenda
|
||||
Module2400Desc= Gestion des actions (événements et tâches) et de l'agenda
|
||||
Module2500Name= Gestion Electronique de Documents
|
||||
|
|
|
|||
6
htdocs/langs/fr_FR/cron.lang
Normal file
6
htdocs/langs/fr_FR/cron.lang
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Dolibarr language file - fr_FR - cron
|
||||
CHARSET=UTF-8
|
||||
CronSetup=Configuration du séquenceur de taches
|
||||
CronDesc=Cette page permet de configurer certaines options du séquenceur de taches
|
||||
URLToLaunchCronJobs=URL pour lancer les taches automatiques
|
||||
KeyForCronAccess=Clé de sécurité pour l'URL de lancement des taches automatiques
|
||||
|
|
@ -418,10 +418,6 @@ Module1780Name=קטגוריות
|
|||
Module1780Desc=Categorie ההנהלה (מוצרים, ספקים ולקוחות)
|
||||
Module2000Name=עורך WYSIWYG
|
||||
Module2000Desc=אפשר לערוך כמה אזור הטקסט באמצעות עורך מתקדם
|
||||
Module2200Name=ההלוואות זכויות
|
||||
Module2200Desc=זכויות ההלוואות וניהול
|
||||
Module2300Name=תפריטים
|
||||
Module2300Desc=תפריט של ההנהלה
|
||||
Module2400Name=סדר היום
|
||||
Module2400Desc=אירועים / משימות וניהול סדר היום
|
||||
Module2500Name=תוכן אלקטרוני ניהול
|
||||
|
|
|
|||
|
|
@ -418,10 +418,6 @@ Module1780Name=Kategóriák
|
|||
Module1780Desc=Kategóriában vezetősége (termékek, szállítók és vevők)
|
||||
Module2000Name=WYSIWYG szerkesztő
|
||||
Module2000Desc=Hagyjuk szerkeszteni egy szöveget terület egy fejlett szerkesztő
|
||||
Module2200Name=Haszonkölcsönzési jogait
|
||||
Module2200Desc=Hitelezési jogkezelés
|
||||
Module2300Name=Menük
|
||||
Module2300Desc=Menü vezetése
|
||||
Module2400Name=Napirend
|
||||
Module2400Desc=Események / feladatok és napirend menedzsment
|
||||
Module2500Name=Elektronikus Content Management
|
||||
|
|
|
|||
|
|
@ -369,10 +369,6 @@ Module1780Name=Flokkar
|
|||
Module1780Desc=Stjórn Flokkur's (vörur, birgja og viðskiptavina)
|
||||
Module2000Name=Fckeditor
|
||||
Module2000Desc=WYSIWYG Editor
|
||||
Module2200Name=Útlán réttindi
|
||||
Module2200Desc=Útlán réttindi
|
||||
Module2300Name=Matseðlar
|
||||
Module2300Desc=Valmynd's stjórnun
|
||||
Module2400Name=Dagskrá
|
||||
Module2400Desc=Aðgerðir / verkefni og dagskrá stjórnun
|
||||
Module2500Name=Rafræn Innihald Stjórnun
|
||||
|
|
|
|||
|
|
@ -641,8 +641,6 @@ Module2200Desc =Gestione dei diritti di prestito
|
|||
Module2200Name =Diritti di prestito
|
||||
Module22Desc =Gestione posta massiva
|
||||
Module22Name =Posta massiva
|
||||
Module2300Desc =Gestione dei Menu
|
||||
Module2300Name =Menu
|
||||
Module23Desc =Monitoraggio del consumo energetico
|
||||
Module23Name =Energia
|
||||
Module2400Desc =Gestione eventi/compiti e ordine del giorno
|
||||
|
|
|
|||
|
|
@ -418,10 +418,6 @@ Module1780Name=カテゴリー
|
|||
Module1780Desc=Categorieの管理(製品、サプライヤー、顧客)
|
||||
Module2000Name=WYSIWYGエディタ
|
||||
Module2000Desc=高度なエディタを使用して、いくつかのテキストエリアを編集することができます
|
||||
Module2200Name=融資の権限
|
||||
Module2200Desc=貸出権限の管理
|
||||
Module2300Name=メニュー
|
||||
Module2300Desc=メニューの管理
|
||||
Module2400Name=議題
|
||||
Module2400Desc=イベント/タスクと議題の管理
|
||||
Module2500Name=電子コンテンツ管理
|
||||
|
|
|
|||
|
|
@ -299,10 +299,6 @@ Module1400Name=Regnskapsekspert
|
|||
Module1400Desc=Behandling av regnskapssopplysninger for eksperter (double parties)
|
||||
Module1780Name=Kategorier
|
||||
Module1780Desc=Behandling av kategorier (varer, leverandører og kunder)
|
||||
Module2200Name=Utlånsrettigheter
|
||||
Module2200Desc=Behandling av utlånsrettigheter
|
||||
Module2300Name=Menyer
|
||||
Module2300Desc=Menybehandling
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Handlinger/oppgaver og agendabehandling
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -413,10 +413,6 @@ Module1780Name = Categorieën
|
|||
Module1780Desc = Categorie' beheer (producten, leveranciers en klanten)
|
||||
Module2000Name =
|
||||
Module2000Desc =
|
||||
Module2200Name = Uitleenrechten
|
||||
Module2200Desc = Uitleenrechten beheer
|
||||
Module2300Name = Menu's
|
||||
Module2300Desc = Menu's beheer
|
||||
Module2400Name = Agenda
|
||||
Module2400Desc = Acties / taken en agenda beheer
|
||||
Module2500Name = Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -383,10 +383,6 @@ Module1780Name = Categorieën
|
|||
Module1780Desc = Categoriebeheer (producten, leveranciers en afnemers)
|
||||
Module2000Name = Fckeditor
|
||||
Module2000Desc = Een WYSIWYG editor
|
||||
Module2200Name = Uitleenrechten
|
||||
Module2200Desc = Uitleenrechtenbeheer
|
||||
Module2300Name = Menu's
|
||||
Module2300Desc = Menubeheer
|
||||
Module2400Name = Agenda
|
||||
Module2400Desc = Acties-, taken- en agendabeheer
|
||||
Module2500Name = Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -306,10 +306,6 @@ Module1400Name=Księgowość ekspertów
|
|||
Module1400Desc=Księgowość zarządzania dla ekspertów (double stron)
|
||||
Module1780Name=Kategorie
|
||||
Module1780Desc=Kategorie zarządzania (produktów, dostawców i klientów)
|
||||
Module2200Name=Użyczanie
|
||||
Module2200Desc=Kredyty zarządzania prawami
|
||||
Module2300Name=Menu
|
||||
Module2300Desc=Menu zarządzania
|
||||
Module2400Name=Porządek obrad
|
||||
Module2400Desc=Działania / zadania i porządku zarządzania
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -320,10 +320,6 @@ Module1200Name=Mantis
|
|||
Module1200Desc=Interface com o sistema de seguimento de incidências Mantis
|
||||
Module1780Name=Categorias
|
||||
Module1780Desc=Administração de categorias (produtos, Fornecedores e clientes)
|
||||
Module2200Name=Direito de emprétimos
|
||||
Module2200Desc=Administração dos direitos de emprétimos
|
||||
Module2300Name=Menus
|
||||
Module2300Desc=Administração dos menus por base de dados
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Administração da agenda e das ações
|
||||
Module2500Name=Administração Eletrônica de Documentos
|
||||
|
|
|
|||
|
|
@ -562,8 +562,6 @@ Module2200Desc = Gestão dos direitos de empréstimos
|
|||
Module2200Name = Direito de empréstimos
|
||||
Module22Desc = Administração e envío de E-Mails massivos
|
||||
Module22Name = E-Mailings
|
||||
Module2300Desc = Administração dos menus por base de dados
|
||||
Module2300Name = Menus
|
||||
Module23Desc = Acompanhamento do consumo de energia
|
||||
Module23Name = Energia
|
||||
Module2400Desc = Gestão da agenda e das acções
|
||||
|
|
|
|||
|
|
@ -304,10 +304,6 @@ Module1400Name=Expert contabil
|
|||
Module1400Desc=Contabilitate de gestiune pentru experţi (dublu părţi)
|
||||
Module1780Name=Categorii
|
||||
Module1780Desc=Categorii de "management (produse, furnizori şi clienţi)
|
||||
Module2200Name=Credite drepturile
|
||||
Module2200Desc=Credite de gestionare a drepturilor
|
||||
Module2300Name=Meniuri
|
||||
Module2300Desc=Meniuri de gestionare
|
||||
Module2400Name=Ordinea de zi
|
||||
Module2400Desc=Acţiuni / activităţi de ordine de zi şi de gestionare a
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -303,10 +303,6 @@ Module1400Name=Бухгалтерия эксперт
|
|||
Module1400Desc=Бухгалтерия управления для экспертов (двойная сторон)
|
||||
Module1780Name=Категории
|
||||
Module1780Desc=Категории управления (продукции, поставщиков и заказчиков)
|
||||
Module2200Name=Кредитование человека
|
||||
Module2200Desc=Кредитование права управления
|
||||
Module2300Name=Меню
|
||||
Module2300Desc=Меню управления
|
||||
Module2400Name=Повестка дня
|
||||
Module2400Desc=Деятельность / задачи и программы управления
|
||||
Module2500Name=Электронное управление
|
||||
|
|
|
|||
|
|
@ -399,10 +399,6 @@ Module1780Name = Kategorije
|
|||
Module1780Desc = Upravljanje kategorij (proizvodi, dobavitelji in kupci)
|
||||
Module2000Name = Fck urejevalnik
|
||||
Module2000Desc = WYSIWYG urejevalnik
|
||||
Module2200Name = Kreditne pravice
|
||||
Module2200Desc = Upravljanje kreditnih pravic
|
||||
Module2300Name = Meniji
|
||||
Module2300Desc = Upravljanje menijev
|
||||
Module2400Name = Dnevni red
|
||||
Module2400Desc = Upravljanje aktivnosti/nalog in dnevnih redov
|
||||
Module2500Name = Upravljanje elektronskih vsebin
|
||||
|
|
|
|||
|
|
@ -372,10 +372,6 @@ Module1780Name=Kategorier
|
|||
Module1780Desc=Categorie ledning (produkter, leverantörer och kunder)
|
||||
Module2000Name=FCKeditor
|
||||
Module2000Desc=WYSIWYG Editor
|
||||
Module2200Name=Utlåning rättigheter
|
||||
Module2200Desc=Utlåning förvaltning av rättigheter
|
||||
Module2300Name=Menyer
|
||||
Module2300Desc=Meny ledning
|
||||
Module2400Name=Agenda
|
||||
Module2400Desc=Åtgärder / uppgifter och dagordning förvaltning
|
||||
Module2500Name=Electronic Content Management
|
||||
|
|
|
|||
|
|
@ -456,10 +456,6 @@ Module1780Name=Kategoriler
|
|||
Module1780Desc=Kategorilerin yönetimi (ürünler, tedarikçiler ve müşteriler)
|
||||
Module2000Name=WYSIWYG düzenleyici
|
||||
Module2000Desc=Gelişmiş editör kullanarak bazı metin alanlarının düzenlenmesini sağlar
|
||||
Module2200Name=Kiralama hakları
|
||||
Module2200Desc=Kiralama hakları yönetimi
|
||||
Module2300Name=Menüler
|
||||
Module2300Desc=Menü yönetimi
|
||||
Module2400Name=Gündem
|
||||
Module2400Desc=Etkinlikler/görevler ve gündem yönetimi
|
||||
Module2500Name=Elektronik İçerik Yönetimi
|
||||
|
|
|
|||
|
|
@ -366,10 +366,6 @@ Module1780Name=分类
|
|||
Module1780Desc=的类别:管理层(产品,供应商和客户)
|
||||
Module2000Name=fckeditor的
|
||||
Module2000Desc=所见即所得的编辑器
|
||||
Module2200Name=贷款的权利
|
||||
Module2200Desc=贷款权限管理
|
||||
Module2300Name=菜单
|
||||
Module2300Desc=菜单的管理
|
||||
Module2400Name=议程
|
||||
Module2400Desc=行动/任务和议程管理
|
||||
Module2500Name=电子内容管理
|
||||
|
|
|
|||
|
|
@ -371,10 +371,6 @@ Module1780Name=分類
|
|||
Module1780Desc=分類的管理(產品,供應商和客戶)
|
||||
Module2000Name=fckeditor的
|
||||
Module2000Desc=所見即所得的編輯器
|
||||
Module2200Name=貸款的權利
|
||||
Module2200Desc=貸款權限管理
|
||||
Module2300Name=選單
|
||||
Module2300Desc=選單的管理
|
||||
Module2400Name=議程
|
||||
Module2400Desc=行動/任務和議程管理
|
||||
Module2500Name=電子內容管理
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user