1# Dolibarr language file - Source file is en_US - loan 2ModuleBuilderDesc=This tool must be used only by experienced users or developers. It provides utilities to build or edit your own module. Documentation for alternative <a href="%s" target="_blank">manual development is here</a>. 3EnterNameOfModuleDesc=Enter name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...) 4EnterNameOfObjectDesc=Enter name of the object to create with no spaces. Use uppercase to separate words (For example: MyObject, Student, Teacher...). The CRUD class file, but also API file, pages to list/add/edit/delete object and SQL files will be generated. 5ModuleBuilderDesc2=Path where modules are generated/edited (first directory for external modules defined into %s): <strong>%s</strong> 6ModuleBuilderDesc3=Generated/editable modules found: <strong>%s</strong> 7ModuleBuilderDesc4=A module is detected as 'editable' when the file <strong>%s</strong> exists in root of module directory 8NewModule=New module 9NewObjectInModulebuilder=New object 10ModuleKey=Module key 11ObjectKey=Object key 12ModuleInitialized=Module initialized 13FilesForObjectInitialized=Files for new object '%s' initialized 14FilesForObjectUpdated=Files for object '%s' updated (.sql files and .class.php file) 15ModuleBuilderDescdescription=Enter here all general information that describe your module. 16ModuleBuilderDescspecifications=You can enter here a detailed description of the specifications of your module that is not already structured into other tabs. So you have within easy reach all the rules to develop. Also this text content will be included into the generated documentation (see last tab). You can use Markdown format, but it is recommended to use Asciidoc format (comparison between .md and .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown). 17ModuleBuilderDescobjects=Define here the objects you want to manage with your module. A CRUD DAO class, SQL files, page to list record of objects, to create/edit/view a record and an API will be generated. 18ModuleBuilderDescmenus=This tab is dedicated to define menu entries provided by your module. 19ModuleBuilderDescpermissions=This tab is dedicated to define the new permissions you want to provide with your module. 20ModuleBuilderDesctriggers=This is the view of triggers provided by your module. To include code executed when a triggered business event is launched, just edit this file. 21ModuleBuilderDeschooks=This tab is dedicated to hooks. 22ModuleBuilderDescwidgets=This tab is dedicated to manage/build widgets. 23ModuleBuilderDescbuildpackage=You can generate here a "ready to distribute" package file (a normalized .zip file) of your module and a "ready to distribute" documentation file. Just click on button to build the package or documentation file. 24EnterNameOfModuleToDeleteDesc=You can delete your module. WARNING: All coding files of module (generated or created manually) AND structured data and documentation will be deleted! 25EnterNameOfObjectToDeleteDesc=You can delete an object. WARNING: All coding files (generated or created manually) related to object will be deleted! 26DangerZone=Danger zone 27BuildPackage=Build package 28BuildPackageDesc=You can generate a zip package of your application so your are ready to distribute it on any Dolibarr. You can also distribute it or sell it on marketplace like <a href="https://www.dolistore.com">DoliStore.com</a>. 29BuildDocumentation=Build documentation 30ModuleIsNotActive=This module is not activated yet. Go to %s to make it live or click here 31ModuleIsLive=This module has been activated. Any change may break a current live feature. 32DescriptionLong=Long description 33EditorName=Name of editor 34EditorUrl=URL of editor 35DescriptorFile=Descriptor file of module 36ClassFile=File for PHP DAO CRUD class 37ApiClassFile=File for PHP API class 38PageForList=PHP page for list of record 39PageForCreateEditView=PHP page to create/edit/view a record 40PageForAgendaTab=PHP page for event tab 41PageForDocumentTab=PHP page for document tab 42PageForNoteTab=PHP page for note tab 43PageForContactTab=PHP page for contact tab 44PathToModulePackage=Path to zip of module/application package 45PathToModuleDocumentation=Path to file of module/application documentation (%s) 46SpaceOrSpecialCharAreNotAllowed=Spaces or special characters are not allowed. 47FileNotYetGenerated=File not yet generated 48RegenerateClassAndSql=Force update of .class and .sql files 49RegenerateMissingFiles=Generate missing files 50SpecificationFile=File of documentation 51LanguageFile=File for language 52ObjectProperties=Object Properties 53ConfirmDeleteProperty=Are you sure you want to delete the property <strong>%s</strong>? This will change code in PHP class but also remove column from table definition of object. 54NotNull=Not NULL 55NotNullDesc=1=Set database to NOT NULL. -1=Allow null values and force value to NULL if empty ('' or 0). 56SearchAll=Used for 'search all' 57DatabaseIndex=Database index 58FileAlreadyExists=File %s already exists 59TriggersFile=File for triggers code 60HooksFile=File for hooks code 61ArrayOfKeyValues=Array of key-val 62ArrayOfKeyValuesDesc=Array of keys and values if field is a combo list with fixed values 63WidgetFile=Widget file 64CSSFile=CSS file 65JSFile=Javascript file 66ReadmeFile=Readme file 67ChangeLog=ChangeLog file 68TestClassFile=File for PHP Unit Test class 69SqlFile=Sql file 70PageForLib=File for the common PHP library 71PageForObjLib=File for the PHP library dedicated to object 72SqlFileExtraFields=Sql file for complementary attributes 73SqlFileKey=Sql file for keys 74SqlFileKeyExtraFields=Sql file for keys of complementary attributes 75AnObjectAlreadyExistWithThisNameAndDiffCase=An object already exists with this name and a different case 76UseAsciiDocFormat=You can use Markdown format, but it is recommended to use Asciidoc format (omparison between .md and .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown) 77IsAMeasure=Is a measure 78DirScanned=Directory scanned 79NoTrigger=No trigger 80NoWidget=No widget 81GoToApiExplorer=API explorer 82ListOfMenusEntries=List of menu entries 83ListOfDictionariesEntries=List of dictionaries entries 84ListOfPermissionsDefined=List of defined permissions 85SeeExamples=See examples here 86EnabledDesc=Condition to have this field active (Examples: 1 or $conf->global->MYMODULE_MYOPTION) 87VisibleDesc=Is the field visible ? (Examples: 0=Never visible, 1=Visible on list and create/update/view forms, 2=Visible on list only, 3=Visible on create/update/view form only (not list), 4=Visible on list and update/view form only (not create), 5=Visible on list end view form only (not create, not update).<br><br>Using a negative value means field is not shown by default on list but can be selected for viewing).<br><br>It can be an expression, for example:<br>preg_match('/public/', $_SERVER['PHP_SELF'])?0:1<br>($user->rights->holiday->define_holiday ? 1 : 0) 88DisplayOnPdfDesc=Display this field on compatible PDF documents, you can manage position with "Position" field.<br/>Currently, known compatibles PDF models are : eratosthene (order), espadon (ship), sponge (invoices), cyan (propal/quotation), cornas (supplier order)<br/><br/><strong>For document :</strong><br/>0 = not displayed <br/>1 = display<br/>2 = display only if not empty<br/><br/><strong>For document lines :</strong><br/>0 = not displayed <br/>1 = displayed in a column<br/>3 = display in line description column after the description<br/>4 = display in description column after the description only if not empty 89DisplayOnPdf=Display on PDF 90IsAMeasureDesc=Can the value of field be cumulated to get a total into list? (Examples: 1 or 0) 91SearchAllDesc=Is the field used to make a search from the quick search tool? (Examples: 1 or 0) 92SpecDefDesc=Enter here all documentation you want to provide with your module that is not already defined by other tabs. You can use .md or better, the rich .asciidoc syntax. 93LanguageDefDesc=Enter in this files, all the key and the translation for each language file. 94MenusDefDesc=Define here the menus provided by your module 95DictionariesDefDesc=Define here the dictionaries provided by your module 96PermissionsDefDesc=Define here the new permissions provided by your module 97MenusDefDescTooltip=The menus provided by your module/application are defined into the array <strong>$this->menus</strong> into the module descriptor file. You can edit manually this file or use the embedded editor.<br><br>Note: Once defined (and module re-activated), menus are also visible into the menu editor available to administrator users on %s. 98DictionariesDefDescTooltip=The dictionaries provided by your module/application are defined into the array <strong>$this->dictionaries</strong> into the module descriptor file. You can edit manually this file or use the embedded editor.<br><br>Note: Once defined (and module re-activated), dictionaries are also visible into the setup area to administrator users on %s. 99PermissionsDefDescTooltip=The permissions provided by your module/application are defined into the array <strong>$this->rights</strong> into the module descriptor file. You can edit manually this file or use the embedded editor.<br><br>Note: Once defined (and module re-activated), permissions are visible into the default permissions setup %s. 100HooksDefDesc=Define in the <b>module_parts['hooks']</b> property, in the module descriptor, the context of hooks you want to manage (list of contexts can be found by a search on '<b>initHooks(</b>' in core code).<br>Edit the hook file to add code of your hooked functions (hookable functions can be found by a search on '<b>executeHooks</b>' in core code). 101TriggerDefDesc=Define in the trigger file the code you want to execute for each business event executed. 102SeeIDsInUse=See IDs in use in your installation 103SeeReservedIDsRangeHere=See range of reserved IDs 104ToolkitForDevelopers=Toolkit for Dolibarr developers 105TryToUseTheModuleBuilder=If you have knowledge of SQL and PHP, you may use the native module builder wizard.<br>Enable the module <strong>%s</strong> and use the wizard by clicking the <span class="fa fa-bug"></span> on the top right menu.<br>Warning: This is an advanced developer feature, do <b>not</b> experiment on your production site! 106SeeTopRightMenu=See <span class="fa fa-bug"></span> on the top right menu 107AddLanguageFile=Add language file 108YouCanUseTranslationKey=You can use here a key that is the translation key found into language file (see tab "Languages") 109DropTableIfEmpty=(Destroy table if empty) 110TableDoesNotExists=The table %s does not exists 111TableDropped=Table %s deleted 112InitStructureFromExistingTable=Build the structure array string of an existing table 113UseAboutPage=Disable the about page 114UseDocFolder=Disable the documentation folder 115UseSpecificReadme=Use a specific ReadMe 116ContentOfREADMECustomized=Note: The content of the README.md file has been replaced with the specific value defined into setup of ModuleBuilder. 117RealPathOfModule=Real path of module 118ContentCantBeEmpty=Content of file can't be empty 119WidgetDesc=You can generate and edit here the widgets that will be embedded with your module. 120CSSDesc=You can generate and edit here a file with personalized CSS embedded with your module. 121JSDesc=You can generate and edit here a file with personalized Javascript embedded with your module. 122CLIDesc=You can generate here some command line scripts you want to provide with your module. 123CLIFile=CLI File 124NoCLIFile=No CLI files 125UseSpecificEditorName = Use a specific editor name 126UseSpecificEditorURL = Use a specific editor URL 127UseSpecificFamily = Use a specific family 128UseSpecificAuthor = Use a specific author 129UseSpecificVersion = Use a specific initial version 130IncludeRefGeneration=The reference of object must be generated automatically 131IncludeRefGenerationHelp=Check this if you want to include code to manage the generation automatically of the reference 132IncludeDocGeneration=I want to generate some documents from the object 133IncludeDocGenerationHelp=If you check this, some code will be generated to add a "Generate document" box on the record. 134ShowOnCombobox=Show value into combobox 135KeyForTooltip=Key for tooltip 136CSSClass=CSS Class 137NotEditable=Not editable 138ForeignKey=Foreign key 139TypeOfFieldsHelp=Type of fields:<br>varchar(99), double(24,8), real, text, html, datetime, timestamp, integer, integer:ClassName:relativepath/to/classfile.class.php[:1[:filter]] ('1' means we add a + button after the combo to create the record, 'filter' can be 'status=1 AND fk_user = __USER_ID AND entity IN (__SHARED_ENTITIES__)' for example) 140AsciiToHtmlConverter=Ascii to HTML converter 141AsciiToPdfConverter=Ascii to PDF converter 142TableNotEmptyDropCanceled=Table not empty. Drop has been canceled. 143ModuleBuilderNotAllowed=The module builder is available but not allowed to your user. 144