dolibarr/htdocs/langs/th_TH/modulebuilder.lang

148 lines
13 KiB
Plaintext
Raw Normal View History

2017-07-09 19:32:35 +02:00
# Dolibarr language file - Source file is en_US - loan
2022-01-02 18:22:18 +01:00
ModuleBuilderDesc=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" rel="noopener noreferrer">manual development is here</a>.
2017-07-09 19:32:35 +02:00
EnterNameOfModuleDesc=Enter name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...)
2017-08-02 15:30:46 +02:00
EnterNameOfObjectDesc=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.
2019-04-11 16:08:50 +02:00
ModuleBuilderDesc2=Path where modules are generated/edited (first directory for external modules defined into %s): <strong>%s</strong>
2017-10-19 17:55:24 +02:00
ModuleBuilderDesc3=Generated/editable modules found: <strong>%s</strong>
ModuleBuilderDesc4=A module is detected as 'editable' when the file <strong>%s</strong> exists in root of module directory
2017-07-09 19:32:35 +02:00
NewModule=New module
2019-12-22 12:55:38 +01:00
NewObjectInModulebuilder=New object
2017-07-09 19:32:35 +02:00
ModuleKey=Module key
ObjectKey=Object key
ModuleInitialized=Module initialized
2017-08-02 15:30:46 +02:00
FilesForObjectInitialized=Files for new object '%s' initialized
FilesForObjectUpdated=Files for object '%s' updated (.sql files and .class.php file)
2017-10-19 17:55:24 +02:00
ModuleBuilderDescdescription=Enter here all general information that describe your module.
2019-04-11 16:08:50 +02:00
ModuleBuilderDescspecifications=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).
2017-08-02 15:30:46 +02:00
ModuleBuilderDescobjects=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.
2017-07-09 19:32:35 +02:00
ModuleBuilderDescmenus=This tab is dedicated to define menu entries provided by your module.
ModuleBuilderDescpermissions=This tab is dedicated to define the new permissions you want to provide with your module.
ModuleBuilderDesctriggers=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.
ModuleBuilderDeschooks=This tab is dedicated to hooks.
ModuleBuilderDescwidgets=This tab is dedicated to manage/build widgets.
ModuleBuilderDescbuildpackage=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.
EnterNameOfModuleToDeleteDesc=You can delete your module. WARNING: All coding files of module (generated or created manually) AND structured data and documentation will be deleted!
EnterNameOfObjectToDeleteDesc=You can delete an object. WARNING: All coding files (generated or created manually) related to object will be deleted!
2017-07-09 19:32:35 +02:00
DangerZone=Danger zone
2019-04-11 16:08:50 +02:00
BuildPackage=Build package
BuildPackageDesc=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>.
2017-07-09 19:32:35 +02:00
BuildDocumentation=Build documentation
2020-06-18 10:05:00 +02:00
ModuleIsNotActive=This module is not activated yet. Go to %s to make it live or click here
ModuleIsLive=This module has been activated. Any change may break a current live feature.
2017-07-09 19:32:35 +02:00
DescriptionLong=Long description
EditorName=Name of editor
EditorUrl=URL of editor
DescriptorFile=Descriptor file of module
2017-10-19 17:55:24 +02:00
ClassFile=File for PHP DAO CRUD class
2017-07-09 19:32:35 +02:00
ApiClassFile=File for PHP API class
PageForList=PHP page for list of record
PageForCreateEditView=PHP page to create/edit/view a record
2017-10-19 17:55:24 +02:00
PageForAgendaTab=PHP page for event tab
PageForDocumentTab=PHP page for document tab
PageForNoteTab=PHP page for note tab
2021-01-08 11:22:11 +01:00
PageForContactTab=PHP page for contact tab
2017-07-09 19:32:35 +02:00
PathToModulePackage=Path to zip of module/application package
2019-04-11 16:08:50 +02:00
PathToModuleDocumentation=Path to file of module/application documentation (%s)
2017-07-09 19:32:35 +02:00
SpaceOrSpecialCharAreNotAllowed=Spaces or special characters are not allowed.
FileNotYetGenerated=File not yet generated
RegenerateClassAndSql=Force update of .class and .sql files
2018-04-11 13:26:23 +02:00
RegenerateMissingFiles=Generate missing files
2019-04-11 16:08:50 +02:00
SpecificationFile=File of documentation
2017-10-19 17:55:24 +02:00
LanguageFile=File for language
ObjectProperties=Object Properties
2019-04-11 16:08:50 +02:00
ConfirmDeleteProperty=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.
2017-08-02 15:30:46 +02:00
NotNull=Not NULL
2017-11-01 10:48:21 +01:00
NotNullDesc=1=Set database to NOT NULL. -1=Allow null values and force value to NULL if empty ('' or 0).
2017-08-02 15:30:46 +02:00
SearchAll=Used for 'search all'
DatabaseIndex=Database index
FileAlreadyExists=File %s already exists
TriggersFile=File for triggers code
HooksFile=File for hooks code
2017-10-19 17:55:24 +02:00
ArrayOfKeyValues=Array of key-val
ArrayOfKeyValuesDesc=Array of keys and values if field is a combo list with fixed values
2017-08-02 15:30:46 +02:00
WidgetFile=Widget file
2019-12-22 12:55:38 +01:00
CSSFile=CSS file
JSFile=Javascript file
2017-08-02 15:30:46 +02:00
ReadmeFile=Readme file
ChangeLog=ChangeLog file
2017-10-19 17:55:24 +02:00
TestClassFile=File for PHP Unit Test class
2017-08-02 15:30:46 +02:00
SqlFile=Sql file
2019-12-22 12:55:38 +01:00
PageForLib=File for the common PHP library
PageForObjLib=File for the PHP library dedicated to object
2017-10-19 17:55:24 +02:00
SqlFileExtraFields=Sql file for complementary attributes
2017-08-02 15:30:46 +02:00
SqlFileKey=Sql file for keys
SqlFileKeyExtraFields=Sql file for keys of complementary attributes
2017-08-02 15:30:46 +02:00
AnObjectAlreadyExistWithThisNameAndDiffCase=An object already exists with this name and a different case
2019-04-11 16:08:50 +02:00
UseAsciiDocFormat=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)
2017-10-19 17:55:24 +02:00
IsAMeasure=Is a measure
DirScanned=Directory scanned
NoTrigger=No trigger
NoWidget=No widget
2021-01-08 11:22:11 +01:00
GoToApiExplorer=API explorer
2017-11-28 12:32:23 +01:00
ListOfMenusEntries=List of menu entries
2019-12-22 12:55:38 +01:00
ListOfDictionariesEntries=List of dictionaries entries
2017-10-19 17:55:24 +02:00
ListOfPermissionsDefined=List of defined permissions
2018-07-09 20:15:14 +02:00
SeeExamples=See examples here
2017-10-19 17:55:24 +02:00
EnabledDesc=Condition to have this field active (Examples: 1 or $conf->global->MYMODULE_MYOPTION)
2020-05-23 23:50:00 +02:00
VisibleDesc=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)
2021-05-05 01:48:21 +02:00
DisplayOnPdfDesc=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
2020-03-14 00:14:42 +01:00
DisplayOnPdf=Display on PDF
2019-04-11 16:08:50 +02:00
IsAMeasureDesc=Can the value of field be cumulated to get a total into list? (Examples: 1 or 0)
SearchAllDesc=Is the field used to make a search from the quick search tool? (Examples: 1 or 0)
2017-10-19 17:55:24 +02:00
SpecDefDesc=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.
LanguageDefDesc=Enter in this files, all the key and the translation for each language file.
MenusDefDesc=Define here the menus provided by your module
2019-12-22 12:55:38 +01:00
DictionariesDefDesc=Define here the dictionaries provided by your module
PermissionsDefDesc=Define here the new permissions provided by your module
MenusDefDescTooltip=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.
2019-12-22 12:55:38 +01:00
DictionariesDefDescTooltip=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.
PermissionsDefDescTooltip=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.
2017-10-19 17:55:24 +02:00
HooksDefDesc=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).
2022-01-02 18:22:18 +01:00
TriggerDefDesc=Define in the trigger file the code that you want to execute when a business event external to your module is executed (events triggered by other modules).
2017-10-19 17:55:24 +02:00
SeeIDsInUse=See IDs in use in your installation
SeeReservedIDsRangeHere=See range of reserved IDs
ToolkitForDevelopers=Toolkit for Dolibarr developers
2019-04-11 16:08:50 +02:00
TryToUseTheModuleBuilder=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!
2017-11-28 12:32:23 +01:00
SeeTopRightMenu=See <span class="fa fa-bug"></span> on the top right menu
AddLanguageFile=Add language file
YouCanUseTranslationKey=You can use here a key that is the translation key found into language file (see tab "Languages")
2021-01-08 11:22:11 +01:00
DropTableIfEmpty=(Destroy table if empty)
2017-11-28 12:32:23 +01:00
TableDoesNotExists=The table %s does not exists
TableDropped=Table %s deleted
2018-04-11 13:26:23 +02:00
InitStructureFromExistingTable=Build the structure array string of an existing table
2019-04-11 16:08:50 +02:00
UseAboutPage=Disable the about page
UseDocFolder=Disable the documentation folder
2018-07-09 20:15:14 +02:00
UseSpecificReadme=Use a specific ReadMe
2019-12-22 12:55:38 +01:00
ContentOfREADMECustomized=Note: The content of the README.md file has been replaced with the specific value defined into setup of ModuleBuilder.
2019-04-11 16:08:50 +02:00
RealPathOfModule=Real path of module
ContentCantBeEmpty=Content of file can't be empty
WidgetDesc=You can generate and edit here the widgets that will be embedded with your module.
2019-12-22 12:55:38 +01:00
CSSDesc=You can generate and edit here a file with personalized CSS embedded with your module.
JSDesc=You can generate and edit here a file with personalized Javascript embedded with your module.
2019-04-11 16:08:50 +02:00
CLIDesc=You can generate here some command line scripts you want to provide with your module.
CLIFile=CLI File
NoCLIFile=No CLI files
UseSpecificEditorName = Use a specific editor name
UseSpecificEditorURL = Use a specific editor URL
UseSpecificFamily = Use a specific family
UseSpecificAuthor = Use a specific author
UseSpecificVersion = Use a specific initial version
2019-12-22 12:55:38 +01:00
IncludeRefGeneration=The reference of object must be generated automatically
IncludeRefGenerationHelp=Check this if you want to include code to manage the generation automatically of the reference
IncludeDocGeneration=I want to generate some documents from the object
IncludeDocGenerationHelp=If you check this, some code will be generated to add a "Generate document" box on the record.
ShowOnCombobox=Show value into combobox
KeyForTooltip=Key for tooltip
2021-04-20 00:45:48 +02:00
CSSClass=CSS for edit/create form
CSSViewClass=CSS for read form
CSSListClass=CSS for list
2019-12-22 12:55:38 +01:00
NotEditable=Not editable
ForeignKey=Foreign key
TypeOfFieldsHelp=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)
2020-01-27 16:07:53 +01:00
AsciiToHtmlConverter=Ascii to HTML converter
AsciiToPdfConverter=Ascii to PDF converter
2020-06-18 10:05:00 +02:00
TableNotEmptyDropCanceled=Table not empty. Drop has been canceled.
2021-01-08 11:22:11 +01:00
ModuleBuilderNotAllowed=The module builder is available but not allowed to your user.
2021-06-26 22:51:23 +02:00
ImportExportProfiles=Import and export profiles
2021-11-13 15:17:06 +01:00
ValidateModBuilderDesc=Put 1 if this field need to be validated with $this->validateField() or 0 if validation required