This commit is contained in:
Laurent Destailleur 2017-07-11 23:19:47 +02:00
parent ceeb9d7f1b
commit b016b1ca5f
3 changed files with 9 additions and 8 deletions

View File

@ -103,7 +103,7 @@ LineOfExpenseReport=Line of expense report
NoAccountSelected=No accounting account selected NoAccountSelected=No accounting account selected
VentilatedinAccount=Binded successfully to the accounting account VentilatedinAccount=Binded successfully to the accounting account
NotVentilatedinAccount=Not bound to the accounting account NotVentilatedinAccount=Not bound to the accounting account
XLineSuccessfullyBinded=%s products/services successfuly bound to an accounting account XLineSuccessfullyBinded=%s products/services successfully bound to an accounting account
XLineFailedToBeBinded=%s products/services were not bound to any accounting account XLineFailedToBeBinded=%s products/services were not bound to any accounting account
ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50) ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to bind shown by page (maximum recommended : 50)

View File

@ -75,7 +75,8 @@ FileRenamed=The file was successfully renamed
FileGenerated=The file was successfully generated FileGenerated=The file was successfully generated
FileSaved=The file was successfully saved FileSaved=The file was successfully saved
FileUploaded=The file was successfully uploaded FileUploaded=The file was successfully uploaded
FileTransferComplete=File(s) was uploaded successfuly FileTransferComplete=File(s) was uploaded successfully
FilesDeleted=File(s) successfully deleted
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this. FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
NbOfEntries=Nb of entries NbOfEntries=Nb of entries
GoToWikiHelpPage=Read online help (Internet access needed) GoToWikiHelpPage=Read online help (Internet access needed)

View File

@ -174,11 +174,11 @@ if (empty($reshook))
} }
// Mass actions // Mass actions
$objectclass='Skeleton'; $objectclass='MyModule';
$objectlabel='Skeleton'; $objectlabel='MyModule';
$permtoread = $user->rights->skeleton->read; $permtoread = $user->rights->mymodule->read;
$permtodelete = $user->rights->skeleton->delete; $permtodelete = $user->rights->mymodule->delete;
$uploaddir = $conf->skeleton->dir_output; $uploaddir = $conf->mymodule->dir_output;
include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php'; include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
} }