modulebuilder.lang 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # Dolibarr language file - Source file is en_US - loan
  2. IdModule= Module id
  3. 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>.
  4. EnterNameOfModuleDesc=Enter the name of the module/application to create with no spaces. Use uppercase to separate words (For example: MyModule, EcommerceForShop, SyncWithMySystem...)
  5. EnterNameOfObjectDesc=Enter the name of the object to create with no spaces. Use uppercase to separate words (For example: MyObject, Student, Teacher...). The CRUD class file, the pages to list/add/edit/delete the object and the SQL files will be generated.
  6. EnterNameOfDictionaryDesc=Enter the name of the dictionary to create with no spaces. Use uppercase to separate words (For example: MyDico...). The class file, but also the SQL file will be generated.
  7. ModuleBuilderDesc2=Path where modules are generated/edited (first directory for external modules defined into %s): <strong>%s</strong>
  8. ModuleBuilderDesc3=Módulos gerados / editáveis ​​encontrados: <strong>%s</strong>
  9. ModuleBuilderDesc4=Um módulo é detectado como 'editável' quando o arquivo <strong> %s </ strong> existe na raiz do diretório do módulo
  10. NewModule=Novo módulo
  11. NewObjectInModulebuilder=Novo objeto
  12. NewDictionary=New dictionary
  13. ModuleName=Module name
  14. ModuleKey=Chave do módulo
  15. ObjectKey=Chave do objeto
  16. DicKey=Dictionary key
  17. ModuleInitialized=Módulo inicializado
  18. FilesForObjectInitialized=Arquivos para o novo objeto '%s' inicializado
  19. FilesForObjectUpdated=Arquivos para o objeto '%s' atualizado (arquivos .sql e arquivo .class.php)
  20. ModuleBuilderDescdescription=Digite aqui todas as informações gerais que descrevem seu módulo.
  21. ModuleBuilderDescspecifications=Você pode inserir aqui uma descrição detalhada das especificações do seu módulo que ainda não está estruturada em outras guias. Então você tem fácil acesso a todas as regras para desenvolver. Além disso, este conteúdo de texto será incluído na documentação gerada (consulte a última guia). Você pode usar o formato Markdown, mas é recomendável usar o formato Asciidoc (comparação entre .md e .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown).
  22. ModuleBuilderDescobjects=Defina aqui os objetos que você deseja gerenciar com seu módulo. Uma classe CRUD DAO, arquivos SQL, página para listar registro de objetos, para criar / editar / visualizar um registro e uma API será gerada.
  23. ModuleBuilderDescmenus=Este separador é dedicado para definir entradas de menu fornecidas pelo seu módulo.
  24. ModuleBuilderDescpermissions=Este separador é dedicado para definir as novas permissões que deseja fornecer com o seu módulo.
  25. ModuleBuilderDesctriggers=Esta é a vista dos acionadores fornecidos pelo seu módulo. Para incluir o código executado quando um evento comercial acionado é iniciado, basta editar este ficheiro.
  26. ModuleBuilderDeschooks=Este separador é dedicado para hooks.
  27. ModuleBuilderDescwidgets=Este separador é dedicado para gerir/criar widgets.
  28. ModuleBuilderDescbuildpackage=Você pode gerar aqui um ficheiro pacote "pronto para distribuir" (um ficheiro .zip normalizado) do seu módulo e um ficheiro de documentação "pronto para distribuir". Basta clicar no botão para criar o ficheiro pacote do módulo e o ficheiro de documentação.
  29. EnterNameOfModuleToDeleteDesc=You can delete your module. WARNING: All coding files of module (generated or created manually) AND structured data and documentation will be deleted!
  30. EnterNameOfObjectToDeleteDesc=You can delete an object. WARNING: All coding files (generated or created manually) related to object will be deleted!
  31. DangerZone=Zona de perigo
  32. BuildPackage=Pacote de construção
  33. 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>.
  34. BuildDocumentation=Criar documentação
  35. ModuleIsNotActive=This module is not activated yet. Go to %s to make it live or click here
  36. ModuleIsLive=This module has been activated. Any change may break a current live feature.
  37. DescriptionLong=Descrição longa
  38. EditorName=Nome do editor
  39. EditorUrl=URL do editor
  40. DescriptorFile=Ficheiro descritor do módulo
  41. ClassFile=Arquivo para PHP classe DAO CRUD
  42. ApiClassFile=Ficheiro para a classe API PHP
  43. PageForList=Página PHP para a lista de registos
  44. PageForCreateEditView=Página PHP para criar/editar/visualizar um registo
  45. PageForAgendaTab=Página PHP para guia de evento
  46. PageForDocumentTab=Página PHP para guia do documento
  47. PageForNoteTab=Página do PHP para a guia de nota
  48. PageForContactTab=PHP page for contact tab
  49. PathToModulePackage=Caminho para o ficheiro pacote .zip do módulo/aplicação
  50. PathToModuleDocumentation=Path to file of module/application documentation (%s)
  51. SpaceOrSpecialCharAreNotAllowed=Espaços ou caracteres especiais não são permitidos.
  52. FileNotYetGenerated=O ficheiro ainda não foi gerado
  53. GenerateCode=Generate code
  54. RegenerateClassAndSql=Force update of .class and .sql files
  55. RegenerateMissingFiles=Gere arquivos ausentes
  56. SpecificationFile=File of documentation
  57. LanguageFile=Arquivar por idioma
  58. ObjectProperties=Object Properties
  59. Property=Propery
  60. PropertyDesc=A property is an attribute that characterizes an object. This attribute has a code, a label and a type with several options.
  61. ConfirmDeleteProperty=Tem certeza de que deseja excluir a propriedade <strong> %s </ strong>? Isso irá mudar o código na classe PHP, mas também removerá a coluna da definição da tabela do objeto.
  62. NotNull=Não nulo
  63. NotNullDesc=1=Set database to NOT NULL, 0=Allow null values, -1=Allow null values by forcing value to NULL if empty ('' or 0)
  64. SearchAll=Usado para "pesquisar todos"
  65. DatabaseIndex=Índex da Base de Dados
  66. FileAlreadyExists=O arquivo %s já existe
  67. TriggersFile=Arquivo para o código de gatilhos
  68. HooksFile=Arquivo para o código de ganchos
  69. ArrayOfKeyValues=Matriz de chave-val
  70. ArrayOfKeyValuesDesc=Matriz de chaves e valores se o campo for uma lista de combinação com valores fixos
  71. WidgetFile=Arquivo Widget
  72. CSSFile=CSS file
  73. JSFile=Javascript file
  74. ReadmeFile=Arquivo Leiame
  75. ChangeLog=Arquivo ChangeLog
  76. TestClassFile=Arquivo para a classe de teste de unidade do PHP
  77. SqlFile=Arquivo Sql
  78. PageForLib=File for the common PHP library
  79. PageForObjLib=File for the PHP library dedicated to object
  80. SqlFileExtraFields=Arquivo Sql para atributos complementares
  81. SqlFileKey=Arquivo Sql para chaves
  82. SqlFileKeyExtraFields=Sql file for keys of complementary attributes
  83. AnObjectAlreadyExistWithThisNameAndDiffCase=Um objeto já existe com este nome e um caso diferente
  84. UseAsciiDocFormat=Você pode usar o formato Markdown, mas é recomendável usar o formato Asciidoc (omparison entre .md e .asciidoc: http://asciidoctor.org/docs/user-manual/#compared-to-markdown)
  85. IsAMeasure=É uma medida
  86. DirScanned=Diretório varrido
  87. NoTrigger=Nenhum gatilho
  88. NoWidget=Nenhum widget
  89. ApiExplorer=API explorer
  90. ListOfMenusEntries=Lista de entradas do menu
  91. ListOfDictionariesEntries=List of dictionaries entries
  92. ListOfPermissionsDefined=Lista de permissões definidas
  93. SeeExamples=Veja exemplos aqui
  94. EnabledDesc=Condition to have this field active.<br><br>Examples:<br>1<br>isModEnabled('MAIN_MODULE_MYMODULE')<br>getDolGlobalString('MYMODULE_OPTION')==2
  95. 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).
  96. ItCanBeAnExpression=It can be an expression. Example:<br>preg_match('/public/', $_SERVER['PHP_SELF'])?0:1<br>$user->hasRight('holiday', 'define_holiday')?1:5
  97. DisplayOnPdfDesc=Display this field on compatible PDF documents, you can manage position with "Position" field.<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
  98. DisplayOnPdf=On PDF
  99. IsAMeasureDesc=O valor do campo pode ser acumulado para obter um total na lista? (Exemplos: 1 ou 0)
  100. SearchAllDesc=O campo é usado para fazer uma pesquisa a partir da ferramenta de pesquisa rápida? (Exemplos: 1 ou 0)
  101. SpecDefDesc=Digite aqui toda a documentação que você deseja fornecer com seu módulo que ainda não está definido por outras guias. Você pode usar .md ou melhor, a rica sintaxe .asciidoc.
  102. LanguageDefDesc=Entre neste arquivo, toda a chave e a tradução para cada arquivo de idioma.
  103. MenusDefDesc=Define here the menus provided by your module
  104. DictionariesDefDesc=Define here the dictionaries provided by your module
  105. PermissionsDefDesc=Define here the new permissions provided by your module
  106. 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 the module re-activated), the menus are also visible into the menu editor available to administrator users on %s.
  107. 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.
  108. 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.
  109. HooksDefDesc=Defina na propriedade <b> module_parts ['hooks'] </ b>, no descritor de módulo, o contexto dos ganchos que você deseja gerenciar (lista de contextos pode ser encontrada por uma pesquisa em '<b> initHooks (</ b> 'in core code). <br> Edite o arquivo hook para adicionar código de suas funções (funções hookable podem ser encontradas por uma pesquisa em' <b> executeHooks </ b> 'no código principal).
  110. 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).
  111. SeeIDsInUse=Veja os códigos em uso na sua instalação
  112. SeeReservedIDsRangeHere=Veja o intervalo de IDs reservados
  113. ToolkitForDevelopers=Toolkit para desenvolvedores do Dolibarr
  114. TryToUseTheModuleBuilder=Se você tem conhecimento de SQL e PHP, você pode usar o assistente do construtor de módulo nativo. <br> Habilite o módulo <strong> %s </ strong> e use o assistente clicando no <span class = "fa-bug"> </ span> no menu superior direito. <br> Aviso: este é um recurso de desenvolvedor avançado, não <b> experimente </ b> em seu site de produção!
  115. SeeTopRightMenu=Veja <span class = "fa fa-bug"> </ span> no menu superior direito
  116. AddLanguageFile=Adicionar ficheiro de idiomas
  117. YouCanUseTranslationKey=Você pode usar aqui uma chave que é a chave de tradução encontrada no arquivo de idioma (veja a aba "Idiomas")
  118. DropTableIfEmpty=(Destroy table if empty)
  119. TableDoesNotExists=A tabela %s não existe
  120. TableDropped=Tabela %s excluída
  121. InitStructureFromExistingTable=Construir a cadeia de matriz de estrutura de uma tabela existente
  122. UseAboutPage=Do not generate the About page
  123. UseDocFolder=Desativar a pasta de documentação
  124. UseSpecificReadme=Use um ReadMe específico
  125. ContentOfREADMECustomized=Note: The content of the README.md file has been replaced with the specific value defined into setup of ModuleBuilder.
  126. RealPathOfModule=Caminho real do módulo
  127. ContentCantBeEmpty=Content of file can't be empty
  128. WidgetDesc=You can generate and edit here the widgets that will be embedded with your module.
  129. CSSDesc=You can generate and edit here a file with personalized CSS embedded with your module.
  130. JSDesc=You can generate and edit here a file with personalized Javascript embedded with your module.
  131. CLIDesc=You can generate here some command line scripts you want to provide with your module.
  132. CLIFile=CLI File
  133. NoCLIFile=No CLI files
  134. UseSpecificEditorName = Use a specific editor name
  135. UseSpecificEditorURL = Use a specific editor URL
  136. UseSpecificFamily = Use a specific family
  137. UseSpecificAuthor = Use a specific author
  138. UseSpecificVersion = Use a specific initial version
  139. IncludeRefGeneration=The reference of this object must be generated automatically by custom numbering rules
  140. IncludeRefGenerationHelp=Check this if you want to include code to manage the generation of the reference automatically using custom numbering rules
  141. IncludeDocGeneration=I want the feature to generate some documents (PDF, ODT) from templates for this object
  142. IncludeDocGenerationHelp=If you check this, some code will be generated to add a "Generate document" box on the record.
  143. ShowOnCombobox=Show value into combo boxes
  144. KeyForTooltip=Key for tooltip
  145. CSSClass=CSS for edit/create form
  146. CSSViewClass=CSS for read form
  147. CSSListClass=CSS for list
  148. NotEditable=Not editable
  149. ForeignKey=Foreign key
  150. ForeignKeyDesc=If the value of this field must be guaranted to exists into another table. Enter here a value matching syntax: tablename.parentfieldtocheck
  151. TypeOfFieldsHelp=Example:<br>varchar(99), double(24,8), real, text, html, datetime, timestamp, integer, integer:ClassName:relativepath/to/classfile.class.php[:1[:filter]]<br>'1' means we add a + button after the combo to create the record<br>'filter' is a sql condition, example: 'status=1 AND fk_user=__USER_ID__ AND entity IN (__SHARED_ENTITIES__)'
  152. TypeOfFieldsHelpIntro=This is the type of the field/attribute.
  153. AsciiToHtmlConverter=Ascii to HTML converter
  154. AsciiToPdfConverter=Ascii to PDF converter
  155. TableNotEmptyDropCanceled=Table not empty. Drop has been canceled.
  156. ModuleBuilderNotAllowed=The module builder is available but not allowed to your user.
  157. ImportExportProfiles=Import and export profiles
  158. ValidateModBuilderDesc=Set this to 1 if you want to have the method $this->validateField() of object being called to validate the content of the field during insert or update. Set 0 if there is no validation required.
  159. WarningDatabaseIsNotUpdated=Warning: The database is not updated automatically, you must destroy tables and disable-enable the module to have tables recreated
  160. LinkToParentMenu=Parent menu (fk_xxxxmenu)
  161. ListOfTabsEntries=List of tab entries
  162. TabsDefDesc=Define here the tabs provided by your module
  163. TabsDefDescTooltip=The tabs provided by your module/application are defined into the array <strong>$this->tabs</strong> into the module descriptor file. You can edit manually this file or use the embedded editor.
  164. BadValueForType=Bad value for type %s
  165. DefinePropertiesFromExistingTable=Define properties from an existing table
  166. DefinePropertiesFromExistingTableDesc=If a table in the database (for the object to create) already exists, you can use it to define the properties of the object.
  167. DefinePropertiesFromExistingTableDesc2=Keep empty if the table does not exist yet. The code generator will use different kinds of fields to build an example of table that you can edit later.