admin.lang 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. # Dolibarr language file - Source file is en_US - admin
  2. Foundation=Foundation
  3. Version=Version
  4. Publisher=Publisher
  5. VersionProgram=Version program
  6. VersionLastInstall=Initial install version
  7. VersionLastUpgrade=Latest version upgrade
  8. VersionExperimental=Experimental
  9. VersionDevelopment=Development
  10. VersionUnknown=Unknown
  11. VersionRecommanded=Recommended
  12. FileCheck=Fileset Integrity Checks
  13. FileCheckDesc=This tool allows you to check the integrity of files and the setup of your application, comparing each file with the official one. The value of some setup constants may also be checked. You can use this tool to determine if any files have been modified (e.g by a hacker).
  14. FileIntegrityIsStrictlyConformedWithReference=Files integrity is strictly conformed with the reference.
  15. FileIntegrityIsOkButFilesWereAdded=Files integrity check has passed, however some new files have been added.
  16. FileIntegritySomeFilesWereRemovedOrModified=Files integrity check has failed. Some files were modified, removed or added.
  17. GlobalChecksum=Global checksum
  18. MakeIntegrityAnalysisFrom=Make integrity analysis of application files from
  19. LocalSignature=Embedded local signature (less reliable)
  20. RemoteSignature=Remote distant signature (more reliable)
  21. FilesMissing=Missing Files
  22. FilesUpdated=Updated Files
  23. FilesModified=Modified Files
  24. FilesAdded=Added Files
  25. FileCheckDolibarr=Check integrity of application files
  26. AvailableOnlyOnPackagedVersions=The local file for integrity checking is only available when the application is installed from an official package
  27. XmlNotFound=Xml Integrity File of application not found
  28. SessionId=Session ID
  29. SessionSaveHandler=Handler to save sessions
  30. SessionSavePath=Session save location
  31. PurgeSessions=Purge of sessions
  32. ConfirmPurgeSessions=Do you really want to purge all sessions? This will disconnect every user (except yourself).
  33. NoSessionListWithThisHandler=Save session handler configured in your PHP does not allow listing all running sessions.
  34. LockNewSessions=Lock new connections
  35. ConfirmLockNewSessions=Are you sure you want to restrict any new Dolibarr connection to yourself? Only user <b>%s</b> will be able to connect after that.
  36. UnlockNewSessions=Remove connection lock
  37. YourSession=Your session
  38. Sessions=Users Sessions
  39. WebUserGroup=Web server user/group
  40. PermissionsOnFiles=Permissions on files
  41. PermissionsOnFilesInWebRoot=Permissions on files in web root directory
  42. PermissionsOnFile=Permissions on file %s
  43. NoSessionFound=Your PHP configuration seems to not allow listing of active sessions. The directory used to save sessions (<b>%s</b>) may be protected (for example by OS permissions or by PHP directive open_basedir).
  44. DBStoringCharset=Database charset to store data
  45. DBSortingCharset=Database charset to sort data
  46. HostCharset=Host charset
  47. ClientCharset=Client charset
  48. ClientSortingCharset=Client collation
  49. WarningModuleNotActive=Module <b>%s</b> must be enabled
  50. WarningOnlyPermissionOfActivatedModules=Only permissions related to activated modules are shown here. You can activate other modules in the Home->Setup->Modules page.
  51. DolibarrSetup=Dolibarr install or upgrade
  52. InternalUser=Internal user
  53. ExternalUser=External user
  54. InternalUsers=Internal users
  55. ExternalUsers=External users
  56. GUISetup=Display
  57. SetupArea=Setup
  58. UploadNewTemplate=Upload new template(s)
  59. FormToTestFileUploadForm=Form to test file upload (according to setup)
  60. ModuleMustBeEnabled=The module/application <b>%s</b> must be enabled
  61. ModuleIsEnabled=The module/application <b>%s</b> has been enabled
  62. IfModuleEnabled=Note: yes is effective only if module <b>%s</b> is enabled
  63. RemoveLock=Remove/rename file <b>%s</b> if it exists, to allow usage of the Update/Install tool.
  64. RestoreLock=Restore file <b>%s</b>, with read permission only, to disable any further use of the Update/Install tool.
  65. SecuritySetup=Security setup
  66. PHPSetup=PHP setup
  67. OSSetup=OS setup
  68. SecurityFilesDesc=Define here options related to security about uploading files.
  69. ErrorModuleRequirePHPVersion=Error, this module requires PHP version %s or higher
  70. ErrorModuleRequireDolibarrVersion=Error, this module requires Dolibarr version %s or higher
  71. ErrorDecimalLargerThanAreForbidden=Error, a precision higher than <b>%s</b> is not supported.
  72. DictionarySetup=Dictionary setup
  73. Dictionary=Dictionaries
  74. ErrorReservedTypeSystemSystemAuto=Value 'system' and 'systemauto' for type is reserved. You can use 'user' as value to add your own record
  75. ErrorCodeCantContainZero=Code can't contain value 0
  76. DisableJavascript=Disable JavaScript and Ajax functions
  77. DisableJavascriptNote=Note: For test or debug purpose. For optimization for blind person or text browsers, you may prefer to use the setup on the profile of user
  78. UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
  79. UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
  80. DelaiedFullListToSelectCompany=Wait until a key is pressed before loading content of Third Parties combo list.<br>This may increase performance if you have a large number of third parties, but it is less convenient.
  81. DelaiedFullListToSelectContact=Wait until a key is pressed before loading content of Contact combo list.<br>This may increase performance if you have a large number of contacts, but it is less convenient.
  82. NumberOfKeyToSearch=Number of characters to trigger search: %s
  83. NumberOfBytes=Number of Bytes
  84. SearchString=Search string
  85. NotAvailableWhenAjaxDisabled=Not available when Ajax disabled
  86. AllowToSelectProjectFromOtherCompany=On document of a third party, can choose a project linked to another third party
  87. JavascriptDisabled=JavaScript disabled
  88. UsePreviewTabs=Use preview tabs
  89. ShowPreview=Show preview
  90. ShowHideDetails=Show-Hide details
  91. PreviewNotAvailable=Preview not available
  92. ThemeCurrentlyActive=Theme currently active
  93. MySQLTimeZone=TimeZone MySql (database)
  94. TZHasNoEffect=Dates are stored and returned by database server as if they were kept as submitted string. The timezone has effect only when using the UNIX_TIMESTAMP function (that should not be used by Dolibarr, so database TZ should have no effect, even if changed after data was entered).
  95. Space=Space
  96. Table=Table
  97. Fields=Fields
  98. Index=Index
  99. Mask=Mask
  100. NextValue=Next value
  101. NextValueForInvoices=Next value (invoices)
  102. NextValueForCreditNotes=Next value (credit notes)
  103. NextValueForDeposit=Next value (down payment)
  104. NextValueForReplacements=Next value (replacements)
  105. MustBeLowerThanPHPLimit=Note: your PHP configuration currently limits the maximum filesize for upload to <b>%s</b> %s, irrespective of the value of this parameter
  106. NoMaxSizeByPHPLimit=Note: No limit is set in your PHP configuration
  107. MaxSizeForUploadedFiles=Maximum size for uploaded files (0 to disallow any upload)
  108. UseCaptchaCode=Use graphical code (CAPTCHA) on login page
  109. AntiVirusCommand=Full path to antivirus command
  110. AntiVirusCommandExample=Example for ClamAv Daemon (require clamav-daemon): /usr/bin/clamdscan<br>Example for ClamWin (very very slow): c:\\Progra~1\\ClamWin\\bin\\clamscan.exe
  111. AntiVirusParam= More parameters on command line
  112. AntiVirusParamExample=Example for ClamAv Daemon: --fdpass<br>Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
  113. ComptaSetup=Accounting module setup
  114. UserSetup=User management setup
  115. MultiCurrencySetup=Multi-currency setup
  116. MenuLimits=Limits and accuracy
  117. MenuIdParent=Parent menu ID
  118. DetailMenuIdParent=ID of parent menu (empty for a top menu)
  119. DetailPosition=Sort number to define menu position
  120. AllMenus=All
  121. NotConfigured=Module/Application not configured
  122. Active=Active
  123. SetupShort=Setup
  124. OtherOptions=Other options
  125. OtherSetup=Other Setup
  126. CurrentValueSeparatorDecimal=Decimal separator
  127. CurrentValueSeparatorThousand=Thousand separator
  128. Destination=Destination
  129. IdModule=Module ID
  130. IdPermissions=Permissions ID
  131. LanguageBrowserParameter=Parameter %s
  132. LocalisationDolibarrParameters=Localization parameters
  133. ClientTZ=Client Time Zone (user)
  134. ClientHour=Client time (user)
  135. OSTZ=Server OS Time Zone
  136. PHPTZ=PHP server Time Zone
  137. DaylingSavingTime=Daylight saving time
  138. CurrentHour=PHP Time (server)
  139. CurrentSessionTimeOut=Current session timeout
  140. YouCanEditPHPTZ=To set a different PHP timezone (not required), you can try to add a .htaccess file with a line like this "SetEnv TZ Europe/Paris"
  141. HoursOnThisPageAreOnServerTZ=Warning, in contrary of other screens, hours on this page are not in your local timezone, but of the timezone of the server.
  142. Box=Widget
  143. Boxes=Widgets
  144. MaxNbOfLinesForBoxes=Max. number of lines for widgets
  145. AllWidgetsWereEnabled=All available widgets are enabled
  146. PositionByDefault=Default order
  147. Position=Position
  148. MenusDesc=Menu managers set content of the two menu bars (horizontal and vertical).
  149. MenusEditorDesc=The menu editor allows you to define custom menu entries. Use it carefully to avoid instability and permanently unreachable menu entries.<br>Some modules add menu entries (in menu <b>All</b> mostly). If you remove some of these entries by mistake, you can restore them disabling and reenabling the module.
  150. MenuForUsers=Menu for users
  151. LangFile=.lang file
  152. Language_en_US_es_MX_etc=Language (en_US, es_MX, ...)
  153. System=System
  154. SystemInfo=System information
  155. SystemToolsArea=System tools area
  156. SystemToolsAreaDesc=This area provides administration functions. Use the menu to choose the required feature.
  157. Purge=Purge
  158. PurgeAreaDesc=This page allows you to delete all files generated or stored by Dolibarr (temporary files or all files in <b>%s</b> directory). Using this feature is not normally necessary. It is provided as a workaround for users whose Dolibarr is hosted by a provider that does not offer permissions to delete files generated by the web server.
  159. PurgeDeleteLogFile=Delete log files, including <b>%s</b> defined for Syslog module (no risk of losing data)
  160. PurgeDeleteTemporaryFiles=Delete all log and temporary files (no risk of losing data). Parameter can be 'tempfilesold', 'logfiles' or both 'tempfilesold+logfiles'. Note: Deletion of temporary files is done only if the temp directory was created more than 24 hours ago.
  161. PurgeDeleteTemporaryFilesShort=Delete log and temporary files
  162. PurgeDeleteAllFilesInDocumentsDir=Delete all files in directory: <b>%s</b>.<br>This will delete all generated documents related to elements (third parties, invoices etc...), files uploaded into the ECM module, database backup dumps and temporary files.
  163. PurgeRunNow=Purge now
  164. PurgeNothingToDelete=No directory or files to delete.
  165. PurgeNDirectoriesDeleted=<b>%s</b> files or directories deleted.
  166. PurgeNDirectoriesFailed=Failed to delete <b>%s</b> files or directories.
  167. PurgeAuditEvents=Purge all security events
  168. ConfirmPurgeAuditEvents=Are you sure you want to purge all security events? All security logs will be deleted, no other data will be removed.
  169. GenerateBackup=Generate backup
  170. Backup=Backup
  171. Restore=Restore
  172. RunCommandSummary=Backup has been launched with the following command
  173. BackupResult=Backup result
  174. BackupFileSuccessfullyCreated=Backup file successfully generated
  175. YouCanDownloadBackupFile=The generated file can now be downloaded
  176. NoBackupFileAvailable=No backup files available.
  177. ExportMethod=Export method
  178. ImportMethod=Import method
  179. ToBuildBackupFileClickHere=To build a backup file, click <a href="%s">here</a>.
  180. ImportMySqlDesc=To import a MySQL backup file, you may use phpMyAdmin via your hosting or use the mysql command from the Command line.<br>For example:
  181. ImportPostgreSqlDesc=To import a backup file, you must use pg_restore command from command line:
  182. ImportMySqlCommand=%s %s < mybackupfile.sql
  183. ImportPostgreSqlCommand=%s %s mybackupfile.sql
  184. FileNameToGenerate=Filename for backup:
  185. Compression=Compression
  186. CommandsToDisableForeignKeysForImport=Command to disable foreign keys on import
  187. CommandsToDisableForeignKeysForImportWarning=Mandatory if you want to be able to restore your sql dump later
  188. ExportCompatibility=Compatibility of generated export file
  189. ExportUseMySQLQuickParameter=Use the --quick parameter
  190. ExportUseMySQLQuickParameterHelp=The '--quick' parameter helps limit RAM consumption for large tables.
  191. MySqlExportParameters=MySQL export parameters
  192. PostgreSqlExportParameters= PostgreSQL export parameters
  193. UseTransactionnalMode=Use transactional mode
  194. FullPathToMysqldumpCommand=Full path to mysqldump command
  195. FullPathToPostgreSQLdumpCommand=Full path to pg_dump command
  196. AddDropDatabase=Add DROP DATABASE command
  197. AddDropTable=Add DROP TABLE command
  198. ExportStructure=Structure
  199. NameColumn=Name columns
  200. ExtendedInsert=Extended INSERT
  201. NoLockBeforeInsert=No lock commands around INSERT
  202. DelayedInsert=Delayed insert
  203. EncodeBinariesInHexa=Encode binary data in hexadecimal
  204. IgnoreDuplicateRecords=Ignore errors of duplicate record (INSERT IGNORE)
  205. AutoDetectLang=Autodetect (browser language)
  206. FeatureDisabledInDemo=Feature disabled in demo
  207. FeatureAvailableOnlyOnStable=Feature only available on official stable versions
  208. BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the trashcan to disable it.
  209. OnlyActiveElementsAreShown=Only elements from <a href="%s">enabled modules</a> are shown.
  210. ModulesDesc=The modules/applications determine which features are available in the software. Some modules require permissions to be granted to users after activating the module. Click the on/off button <span class="small valignmiddle">%s</span> of each module to enable or disable a module/application.
  211. ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
  212. ModulesDeployDesc=If permissions on your file system allow it, you can use this tool to deploy an external module. The module will then be visible on the tab <strong>%s</strong>.
  213. ModulesMarketPlaces=Find external app/modules
  214. ModulesDevelopYourModule=Develop your own app/modules
  215. ModulesDevelopDesc=You may also develop your own module or find a partner to develop one for you.
  216. DOLISTOREdescriptionLong=Instead of switching on <a href="https://www.dolistore.com">www.dolistore.com</a> web site to find an external module, you can use this embedded tool that will perform the search on the external market place for you (may be slow, need an internet access)...
  217. NewModule=New module
  218. FreeModule=Free
  219. CompatibleUpTo=Compatible with version %s
  220. NotCompatible=This module does not seem compatible with your Dolibarr %s (Min %s - Max %s).
  221. CompatibleAfterUpdate=This module requires an update to your Dolibarr %s (Min %s - Max %s).
  222. SeeInMarkerPlace=See in Market place
  223. SeeSetupOfModule=See setup of module %s
  224. SetOptionTo=Set option <b>%s</b> to %s
  225. Updated=Updated
  226. AchatTelechargement=Buy / Download
  227. GoModuleSetupArea=To deploy/install a new module, go to the Module setup area: <a href="%s">%s</a>.
  228. DoliStoreDesc=DoliStore, the official market place for Dolibarr ERP/CRM external modules
  229. DoliPartnersDesc=List of companies providing custom-developed modules or features.<br>Note: since Dolibarr is an open source application, <i>anyone</i> experienced in PHP programming should be able to develop a module.
  230. WebSiteDesc=External websites for more add-on (non-core) modules...
  231. DevelopYourModuleDesc=Some solutions to develop your own module...
  232. URL=URL
  233. RelativeURL=Relative URL
  234. BoxesAvailable=Widgets available
  235. BoxesActivated=Widgets activated
  236. ActivateOn=Activate on
  237. ActiveOn=Activated on
  238. ActivatableOn=Activatable on
  239. SourceFile=Source file
  240. AvailableOnlyIfJavascriptAndAjaxNotDisabled=Available only if JavaScript is not disabled
  241. Required=Required
  242. UsedOnlyWithTypeOption=Used by some agenda option only
  243. Security=Security
  244. Passwords=Passwords
  245. DoNotStoreClearPassword=Encrypt passwords stored in database (NOT as plain-text). It is strongly recommended to activate this option.
  246. MainDbPasswordFileConfEncrypted=Encrypt database password stored in conf.php. It is strongly recommended to activate this option.
  247. InstrucToEncodePass=To have password encoded into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="...";</b><br>by<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
  248. InstrucToClearPass=To have password decoded (clear) into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>by<br><b>$dolibarr_main_db_pass="%s";</b>
  249. ProtectAndEncryptPdfFiles=Protect generated PDF files. This is NOT recommended as it breaks bulk PDF generation.
  250. ProtectAndEncryptPdfFilesDesc=Protection of a PDF document keeps it available to read and print with any PDF browser. However, editing and copying is not possible anymore. Note that using this feature makes building of a global merged PDFs not working.
  251. Feature=Feature
  252. DolibarrLicense=License
  253. Developpers=Developers/contributors
  254. OfficialWebSite=Dolibarr official web site
  255. OfficialWebSiteLocal=Local web site (%s)
  256. OfficialWiki=Dolibarr documentation / Wiki
  257. OfficialDemo=Dolibarr online demo
  258. OfficialMarketPlace=Official market place for external modules/addons
  259. OfficialWebHostingService=Referenced web hosting services (Cloud hosting)
  260. ReferencedPreferredPartners=Preferred Partners
  261. OtherResources=Other resources
  262. ExternalResources=External Resources
  263. SocialNetworks=Social Networks
  264. SocialNetworkId=Social Network ID
  265. ForDocumentationSeeWiki=For user or developer documentation (Doc, FAQs...),<br>take a look at the Dolibarr Wiki:<br><b><a href="%s" target="_blank">%s</a></b>
  266. ForAnswersSeeForum=For any other questions/help, you can use the Dolibarr forum:<br><b><a href="%s" target="_blank">%s</a></b>
  267. HelpCenterDesc1=Here are some resources for getting help and support with Dolibarr.
  268. HelpCenterDesc2=Some of these resources are only available in <b>english</b>.
  269. CurrentMenuHandler=Current menu handler
  270. MeasuringUnit=Measuring unit
  271. LeftMargin=Left margin
  272. TopMargin=Top margin
  273. PaperSize=Paper type
  274. Orientation=Orientation
  275. SpaceX=Space X
  276. SpaceY=Space Y
  277. FontSize=Font size
  278. Content=Content
  279. NoticePeriod=Notice period
  280. NewByMonth=New by month
  281. Emails=Emails
  282. EMailsSetup=Emails setup
  283. EMailsDesc=This page allows you to set parameters or options for email sending.
  284. EmailSenderProfiles=Emails sender profiles
  285. EMailsSenderProfileDesc=You can keep this section empty. If you enter some emails here, they will be added to the list of possible senders into the combobox when your write a new email.
  286. MAIN_MAIL_SMTP_PORT=SMTP/SMTPS Port (default value in php.ini: <b>%s</b>)
  287. MAIN_MAIL_SMTP_SERVER=SMTP/SMTPS Host (default value in php.ini: <b>%s</b>)
  288. MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=SMTP/SMTPS Port (Not defined into PHP on Unix-like systems)
  289. MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP/SMTPS Host (Not defined into PHP on Unix-like systems)
  290. MAIN_MAIL_EMAIL_FROM=Sender email for automatic emails (default value in php.ini: <b>%s</b>)
  291. MAIN_MAIL_ERRORS_TO=Email used for error returns emails (fields 'Errors-To' in emails sent)
  292. MAIN_MAIL_AUTOCOPY_TO= Copy (Bcc) all sent emails to
  293. MAIN_DISABLE_ALL_MAILS=Disable all email sending (for test purposes or demos)
  294. MAIN_MAIL_FORCE_SENDTO=Send all emails to (instead of real recipients, for test purposes)
  295. MAIN_MAIL_ENABLED_USER_DEST_SELECT=Suggest emails of employees (if defined) into the list of predefined recipient when writing a new email
  296. MAIN_MAIL_SENDMODE=Email sending method
  297. MAIN_MAIL_SMTPS_ID=SMTP ID (if sending server requires authentication)
  298. MAIN_MAIL_SMTPS_PW=SMTP Password (if sending server requires authentication)
  299. MAIN_MAIL_EMAIL_TLS=Use TLS (SSL) encryption
  300. MAIN_MAIL_EMAIL_STARTTLS=Use TLS (STARTTLS) encryption
  301. MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED=Authorise les certificats auto-signés
  302. MAIN_MAIL_EMAIL_DKIM_ENABLED=Use DKIM to generate email signature
  303. MAIN_MAIL_EMAIL_DKIM_DOMAIN=Email Domain for use with dkim
  304. MAIN_MAIL_EMAIL_DKIM_SELECTOR=Name of dkim selector
  305. MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY=Private key for dkim signing
  306. MAIN_DISABLE_ALL_SMS=Disable all SMS sending (for test purposes or demos)
  307. MAIN_SMS_SENDMODE=Method to use to send SMS
  308. MAIN_MAIL_SMS_FROM=Default sender phone number for SMS sending
  309. MAIN_MAIL_DEFAULT_FROMTYPE=Default sender email for manual sending (User email or Company email)
  310. UserEmail=User email
  311. CompanyEmail=Company Email
  312. FeatureNotAvailableOnLinux=Feature not available on Unix like systems. Test your sendmail program locally.
  313. FixOnTransifex=Fix the translation on the online translation platform of project
  314. SubmitTranslation=If the translation for this language is not complete or you find errors, you can correct this by editing files in directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
  315. SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or, if you are a developer, with a PR on github.com/Dolibarr/dolibarr
  316. ModuleSetup=Module setup
  317. ModulesSetup=Modules/Application setup
  318. ModuleFamilyBase=System
  319. ModuleFamilyCrm=Customer Relationship Management (CRM)
  320. ModuleFamilySrm=Vendor Relationship Management (VRM)
  321. ModuleFamilyProducts=Product Management (PM)
  322. ModuleFamilyHr=Human Resource Management (HR)
  323. ModuleFamilyProjects=Projects/Collaborative work
  324. ModuleFamilyOther=Other
  325. ModuleFamilyTechnic=Multi-modules tools
  326. ModuleFamilyExperimental=Experimental modules
  327. ModuleFamilyFinancial=Financial Modules (Accounting/Treasury)
  328. ModuleFamilyECM=Electronic Content Management (ECM)
  329. ModuleFamilyPortal=Websites and other frontal application
  330. ModuleFamilyInterface=Interfaces with external systems
  331. MenuHandlers=Menu handlers
  332. MenuAdmin=Menu editor
  333. DoNotUseInProduction=Do not use in production
  334. ThisIsProcessToFollow=Upgrade procedure:
  335. ThisIsAlternativeProcessToFollow=This is an alternative setup to process manually:
  336. StepNb=Step %s
  337. FindPackageFromWebSite=Find a package that provides the features you need (for example on the official web site %s).
  338. DownloadPackageFromWebSite=Download package (for example from the official web site %s).
  339. UnpackPackageInDolibarrRoot=Unpack/unzip the packaged files into your Dolibarr server directory: <b>%s</b>
  340. UnpackPackageInModulesRoot=To deploy/install an external module, unpack/unzip the packaged files into the server directory dedicated to external modules:<br><b>%s</b>
  341. SetupIsReadyForUse=Module deployment is finished. You must however enable and setup the module in your application by going to the page setup modules: <a href="%s">%s</a>.
  342. NotExistsDirect=The alternative root directory is not defined to an existing directory.<br>
  343. InfDirAlt=Since version 3, it is possible to define an alternative root directory. This allows you to store, into a dedicated directory, plug-ins and custom templates.<br>Just create a directory at the root of Dolibarr (eg: custom).<br>
  344. InfDirExample=<br>Then declare it in the file <strong>conf.php</strong><br> $dolibarr_main_url_root_alt='/custom'<br>$dolibarr_main_document_root_alt='/path/of/dolibarr/htdocs/custom'<br>If these lines are commented with "#", to enable them, just uncomment by removing the "#" character.
  345. YouCanSubmitFile=You can upload the .zip file of module package from here:
  346. CurrentVersion=Dolibarr current version
  347. CallUpdatePage=Browse to the page that updates the database structure and data: %s.
  348. LastStableVersion=Latest stable version
  349. LastActivationDate=Latest activation date
  350. LastActivationAuthor=Latest activation author
  351. LastActivationIP=Latest activation IP
  352. UpdateServerOffline=Update server offline
  353. WithCounter=Manage a counter
  354. GenericMaskCodes=You may enter any numbering mask. In this mask, the following tags can be used:<br><b>{000000}</b> corresponds to a number which will be incremented on each %s. Enter as many zeros as the desired length of the counter. The counter will be completed by zeros from the left in order to have as many zeros as the mask. <br><b>{000000+000}</b> same as the previous one but an offset corresponding to the number to the right of the + sign is applied starting on the first %s. <br><b>{000000@x}</b> same as the previous one but the counter is reset to zero when month x is reached (x between 1 and 12, or 0 to use the early months of fiscal year defined in your configuration, or 99 to reset to zero every month). If this option is used and x is 2 or higher, then the sequence {yy}{mm} or {yyyy}{mm} is also required. <br><b>{dd}</b> day (01 to 31).<br><b>{mm}</b> month (01 to 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> year over 2, 4 or 1 numbers. <br>
  355. GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated to the customer. This counter dedicated to customer is reset at same time as the global counter.<br><b>{tttt}</b> The code of third party type on n characters (see menu Home - Setup - Dictionary - Types of third parties). If you add this tag, the counter will be different for each type of third party.<br>
  356. GenericMaskCodes3=All other characters in the mask will remain intact.<br>Spaces are not allowed.<br>
  357. GenericMaskCodes3EAN=All other characters in the mask will remain intact (except * or ? in 13th position in EAN13).<br>Spaces are not allowed.<br>In EAN13, the last character after the last } in 13th position should be * or ? . It will be replaced by the calculated key.<br>
  358. GenericMaskCodes4a=<u>Example on the 99th %s of the third party TheCompany, with date 2007-01-31:</u><br>
  359. GenericMaskCodes4b=<u>Example on third party created on 2007-03-01:</u><br>
  360. GenericMaskCodes4c=<u>Example on product created on 2007-03-01:</u><br>
  361. GenericMaskCodes5=<b>ABC{yy}{mm}-{000000}</b> will give <b>ABC0701-000099</b><br><b>{0000+100@1}-ZZZ/{dd}/XXX</b> will give <b>0199-ZZZ/31/XXX</b><br><b>IN{yy}{mm}-{0000}-{t}</b> will give <b>IN0701-0099-A</b> if the type of company is 'Responsable Inscripto' with code for type that is 'A_RI'
  362. GenericNumRefModelDesc=Returns a customizable number according to a defined mask.
  363. ServerAvailableOnIPOrPort=Server is available at address <b>%s</b> on port <b>%s</b>
  364. ServerNotAvailableOnIPOrPort=Server is not available at address <b>%s</b> on port <b>%s</b>
  365. DoTestServerAvailability=Test server connectivity
  366. DoTestSend=Test sending
  367. DoTestSendHTML=Test sending HTML
  368. ErrorCantUseRazIfNoYearInMask=Error, can't use option @ to reset counter each year if sequence {yy} or {yyyy} is not in mask.
  369. ErrorCantUseRazInStartedYearIfNoYearMonthInMask=Error, can't use option @ if sequence {yy}{mm} or {yyyy}{mm} is not in mask.
  370. UMask=UMask parameter for new files on Unix/Linux/BSD/Mac file system.
  371. UMaskExplanation=This parameter allow you to define permissions set by default on files created by Dolibarr on server (during upload for example).<br>It must be the octal value (for example, 0666 means read and write for everyone).<br>This parameter is useless on a Windows server.
  372. SeeWikiForAllTeam=Take a look at the Wiki page for a list of contributors and their organization
  373. UseACacheDelay= Delay for caching export response in seconds (0 or empty for no cache)
  374. DisableLinkToHelpCenter=Hide link "<b>Need help or support</b>" on login page
  375. DisableLinkToHelp=Hide link to online help "<b>%s</b>"
  376. AddCRIfTooLong=There is no automatic text wrapping, text that is too long will not display on documents. Please add carriage returns in the text area if needed.
  377. ConfirmPurge=Are you sure you want to execute this purge?<br>This will permanently delete all your data files with no way to restore them (ECM files, attached files...).
  378. MinLength=Minimum length
  379. LanguageFilesCachedIntoShmopSharedMemory=Files .lang loaded in shared memory
  380. LanguageFile=Language file
  381. ExamplesWithCurrentSetup=Examples with current configuration
  382. ListOfDirectories=List of OpenDocument templates directories
  383. ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b> or <b>.ods</b>.
  384. NumberOfModelFilesFound=Number of ODT/ODS template files found in these directories
  385. ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\myapp\\mydocumentdir\\mysubdir<br>/home/myapp/mydocumentdir/mysubdir<br>DOL_DATA_ROOT/ecm/ecmdir
  386. FollowingSubstitutionKeysCanBeUsed=<br>To know how to create your odt document templates, before storing them in those directories, read wiki documentation:
  387. FullListOnOnlineDocumentation=http://wiki.dolibarr.org/index.php/Create_an_ODT_document_template
  388. FirstnameNamePosition=Position of Name/Lastname
  389. DescWeather=The following images will be shown on the dashboard when the number of late actions reach the following values:
  390. KeyForWebServicesAccess=Key to use Web Services (parameter "dolibarrkey" in webservices)
  391. TestSubmitForm=Input test form
  392. ThisForceAlsoTheme=Using this menu manager will also use its own theme whatever the user choice. Also this menu manager specialized for smartphones does not work on all smartphone. Use another menu manager if you experience problems with yours.
  393. ThemeDir=Skins directory
  394. ConnectionTimeout=Connection timeout
  395. ResponseTimeout=Response timeout
  396. SmsTestMessage=Test message from __PHONEFROM__ to __PHONETO__
  397. ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
  398. SecurityToken=Key to secure URLs
  399. NoSmsEngine=No SMS sender manager available. A SMS sender manager is not installed with the default distribution because they depend on an external vendor, but you can find some on %s
  400. PDF=PDF
  401. PDFDesc=Global options for PDF generation
  402. PDFOtherDesc=PDF Option specific to some modules
  403. PDFAddressForging=Rules for address section
  404. HideAnyVATInformationOnPDF=Hide all information related to Sales Tax / VAT
  405. PDFRulesForSalesTax=Rules for Sales Tax / VAT
  406. PDFLocaltax=Rules for %s
  407. HideLocalTaxOnPDF=Hide %s rate in column Sale Tax / VAT
  408. HideDescOnPDF=Hide products description
  409. HideRefOnPDF=Hide products ref.
  410. HideDetailsOnPDF=Hide product lines details
  411. PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
  412. Library=Library
  413. UrlGenerationParameters=Parameters to secure URLs
  414. SecurityTokenIsUnique=Use a unique securekey parameter for each URL
  415. EnterRefToBuildUrl=Enter reference for object %s
  416. GetSecuredUrl=Get calculated URL
  417. ButtonHideUnauthorized=Hide unauthorized action buttons also for internal users (just greyed otherwise)
  418. OldVATRates=Old VAT rate
  419. NewVATRates=New VAT rate
  420. PriceBaseTypeToChange=Modify on prices with base reference value defined on
  421. MassConvert=Launch bulk conversion
  422. PriceFormatInCurrentLanguage=Price Format In Current Language
  423. String=String
  424. String1Line=String (1 line)
  425. TextLong=Long text
  426. TextLongNLines=Long text (n lines)
  427. HtmlText=Html text
  428. Int=Integer
  429. Float=Float
  430. DateAndTime=Date and hour
  431. Unique=Unique
  432. Boolean=Boolean (one checkbox)
  433. ExtrafieldPhone = Phone
  434. ExtrafieldPrice = Price
  435. ExtrafieldMail = Email
  436. ExtrafieldUrl = Url
  437. ExtrafieldSelect = Select list
  438. ExtrafieldSelectList = Select from table
  439. ExtrafieldSeparator=Separator (not a field)
  440. ExtrafieldPassword=Password
  441. ExtrafieldRadio=Radio buttons (one choice only)
  442. ExtrafieldCheckBox=Checkboxes
  443. ExtrafieldCheckBoxFromList=Checkboxes from table
  444. ExtrafieldLink=Link to an object
  445. ComputedFormula=Computed field
  446. ComputedFormulaDesc=You can enter here a formula using other properties of object or any PHP coding to get a dynamic computed value. You can use any PHP compatible formulas including the "?" condition operator, and following global object: <strong>$db, $conf, $langs, $mysoc, $user, $object</strong>.<br><strong>WARNING</strong>: Only some properties of $object may be available. If you need a properties not loaded, just fetch yourself the object into your formula like in the second example.<br>Using a computed field means you can't enter yourself any value from interface. Also, if there is a syntax error, the formula may return nothing.<br><br>Example of formula:<br>$object->id < 10 ? round($object->id / 2, 2): ($object->id + 2 * $user->id) * (int) substr($mysoc->zip, 1, 2)<br><br>Example to reload object<br>(($reloadedobj = new Societe($db)) && ($reloadedobj->fetchNoCompute($obj->id ? $obj->id: ($obj->rowid ? $obj->rowid: $object->id)) > 0)) ? $reloadedobj->array_options['options_extrafieldkey'] * $reloadedobj->capital / 5: '-1'<br><br>Other example of formula to force load of object and its parent object:<br>(($reloadedobj = new Task($db)) && ($reloadedobj->fetchNoCompute($object->id) > 0) && ($secondloadedobj = new Project($db)) && ($secondloadedobj->fetchNoCompute($reloadedobj->fk_project) > 0)) ? $secondloadedobj->ref: 'Parent project not found'
  447. Computedpersistent=Store computed field
  448. ComputedpersistentDesc=Computed extra fields will be stored in the database, however, the value will only be recalculated when the object of this field is changed. If the computed field depends on other objects or global data this value might be wrong!!
  449. ExtrafieldParamHelpPassword=Leaving this field blank means this value will be stored without encryption (field must be only hidden with star on screen).<br>Set 'auto' to use the default encryption rule to save password into database (then value read will be the hash only, no way to retrieve original value)
  450. ExtrafieldParamHelpselect=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>code3,value3<br>...<br><br>In order to have the list depending on another complementary attribute list:<br>1,value1|options_<i>parent_list_code</i>:parent_key<br>2,value2|options_<i>parent_list_code</i>:parent_key <br><br>In order to have the list depending on another list:<br>1,value1|<i>parent_list_code</i>:parent_key<br>2,value2|<i>parent_list_code</i>:parent_key
  451. ExtrafieldParamHelpcheckbox=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
  452. ExtrafieldParamHelpradio=List of values must be lines with format key,value (where key can't be '0')<br><br> for example: <br>1,value1<br>2,value2<br>3,value3<br>...
  453. ExtrafieldParamHelpsellist=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>- id_field is necessarly a primary int key<br>- filtersql is a SQL condition. It can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter which is the current id of current object<br>To use a SELECT into the filter use the keyword $SEL$ to bypass anti-injection protection.<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
  454. ExtrafieldParamHelpchkbxlst=List of values comes from a table<br>Syntax: table_name:label_field:id_field::filtersql<br>Example: c_typent:libelle:id::filtersql<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntax extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another complementary attribute list:<br>c_typent:libelle:id:options_<i>parent_list_code</i>|parent_column:filter <br><br>In order to have the list depending on another list:<br>c_typent:libelle:id:<i>parent_list_code</i>|parent_column:filter
  455. ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax: ObjectName:Classpath
  456. ExtrafieldParamHelpSeparator=Keep empty for a simple separator<br>Set this to 1 for a collapsing separator (open by default for new session, then status is kept for each user session)<br>Set this to 2 for a collapsing separator (collapsed by default for new session, then status is kept fore each user session)
  457. LibraryToBuildPDF=Library used for PDF generation
  458. LocalTaxDesc=Some countries may apply two or three taxes on each invoice line. If this is the case, choose the type for the second and third tax and its rate. Possible type are:<br>1: local tax apply on products and services without vat (localtax is calculated on amount without tax)<br>2: local tax apply on products and services including vat (localtax is calculated on amount + main tax)<br>3: local tax apply on products without vat (localtax is calculated on amount without tax)<br>4: local tax apply on products including vat (localtax is calculated on amount + main vat)<br>5: local tax apply on services without vat (localtax is calculated on amount without tax)<br>6: local tax apply on services including vat (localtax is calculated on amount + tax)
  459. SMS=SMS
  460. LinkToTestClickToDial=Enter a phone number to call to show a link to test the ClickToDial url for user <strong>%s</strong>
  461. RefreshPhoneLink=Refresh link
  462. LinkToTest=Clickable link generated for user <strong>%s</strong> (click phone number to test)
  463. KeepEmptyToUseDefault=Keep empty to use default value
  464. KeepThisEmptyInMostCases=In most cases, you can keep this field empy.
  465. DefaultLink=Default link
  466. SetAsDefault=Set as default
  467. ValueOverwrittenByUserSetup=Warning, this value may be overwritten by user specific setup (each user can set his own clicktodial url)
  468. ExternalModule=External module
  469. InstalledInto=Installed into directory %s
  470. BarcodeInitForThirdparties=Mass barcode init for third-parties
  471. BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
  472. CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> record on <strong>%s</strong> %s without barcode defined.
  473. InitEmptyBarCode=Init value for next %s empty records
  474. EraseAllCurrentBarCode=Erase all current barcode values
  475. ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values?
  476. AllBarcodeReset=All barcode values have been removed
  477. NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled in the Barcode module setup.
  478. EnableFileCache=Enable file cache
  479. ShowDetailsInPDFPageFoot=Add more details into footer, such as company address or manager names (in addition to professional ids, company capital and VAT number).
  480. NoDetails=No additional details in footer
  481. DisplayCompanyInfo=Display company address
  482. DisplayCompanyManagers=Display manager names
  483. DisplayCompanyInfoAndManagers=Display company address and manager names
  484. EnableAndSetupModuleCron=If you want to have this recurring invoice generated automatically, module *%s* must be enabled and correctly setup. Otherwise, generation of invoices must be done manually from this template using the *Create* button. Note that even if you enabled automatic generation, you can still safely launch manual generation. Generation of duplicates for the same period is not possible.
  485. ModuleCompanyCodeCustomerAquarium=%s followed by customer code for a customer accounting code
  486. ModuleCompanyCodeSupplierAquarium=%s followed by vendor code for a vendor accounting code
  487. ModuleCompanyCodePanicum=Return an empty accounting code.
  488. ModuleCompanyCodeDigitaria=Returns a compound accounting code according to the name of the third party. The code consists of a prefix that can be defined in the first position followed by the number of characters defined in the third party code.
  489. ModuleCompanyCodeCustomerDigitaria=%s followed by the truncated customer name by the number of characters: %s for the customer accounting code.
  490. ModuleCompanyCodeSupplierDigitaria=%s followed by the truncated supplier name by the number of characters: %s for the supplier accounting code.
  491. Use3StepsApproval=By default, Purchase Orders need to be created and approved by 2 different users (one step/user to create and one step/user to approve. Note that if user has both permission to create and approve, one step/user will be enough). You can ask with this option to introduce a third step/user approval, if amount is higher than a dedicated value (so 3 steps will be necessary: 1=validation, 2=first approval and 3=second approval if amount is enough).<br>Set this to empty if one approval (2 steps) is enough, set it to a very low value (0.1) if a second approval (3 steps) is always required.
  492. UseDoubleApproval=Use a 3 steps approval when amount (without tax) is higher than...
  493. WarningPHPMail=WARNING: The setup to send emails from the application is using the default generic setup. It is often better to setup outgoing emails to use the email server of your Email Service Provider instead of the default setup for several reasons:
  494. WarningPHPMailA=- Using the server of the Email Service Provider increases the trustability of your email, so it increases the deliverablity without being flagged as SPAM
  495. WarningPHPMailB=- Some Email Service Providers (like Yahoo) do not allow you to send an email from another server than their own server. Your current setup uses the server of the application to send email and not the server of your email provider, so some recipients (the one compatible with the restrictive DMARC protocol), will ask your email provider if they can accept your email and some email providers (like Yahoo) may respond "no" because the server is not theirs, so few of your sent Emails may not be accepted for delivery (be careful also of your email provider's sending quota).
  496. WarningPHPMailC=- Using the SMTP server of your own Email Service Provider to send emails is also interesting so all emails sent from application will also be saved into your "Sent" directory of your mailbox.
  497. WarningPHPMailD=If the method 'PHP Mail' is really the method you would like to use, you can remove this warning by adding the constant MAIN_HIDE_WARNING_TO_ENCOURAGE_SMTP_SETUP to 1 in Home - Setup - Other.
  498. WarningPHPMail2=If your email SMTP provider need to restrict email client to some IP addresses (very rare), this is the IP address of the mail user agent (MUA) for your ERP CRM application: <strong>%s</strong>.
  499. WarningPHPMailSPF=If the domain name in your sender email address is protected by a SPF record (ask you domain name registar), you must add the following IPs in the SPF record of the DNS of your domain: <strong>%s</strong>.
  500. ClickToShowDescription=Click to show description
  501. DependsOn=This module needs the module(s)
  502. RequiredBy=This module is required by module(s)
  503. TheKeyIsTheNameOfHtmlField=This is the name of the HTML field. Technical knowledge is required to read the content of the HTML page to get the key name of a field.
  504. PageUrlForDefaultValues=You must enter the relative path of the page URL. If you include parameters in URL, the default values will be effective if all parameters are set to same value.
  505. PageUrlForDefaultValuesCreate=<br>Example:<br>For the form to create a new third party, it is <strong>%s</strong>.<br>For URL of external modules installed into custom directory, do not include the "custom/", so use path like <strong>mymodule/mypage.php</strong> and not custom/mymodule/mypage.php.<br>If you want default value only if url has some parameter, you can use <strong>%s</strong>
  506. PageUrlForDefaultValuesList=<br>Example:<br>For the page that lists third parties, it is <strong>%s</strong>.<br>For URL of external modules installed into custom directory, do not include the "custom/" so use a path like <strong>mymodule/mypagelist.php</strong> and not custom/mymodule/mypagelist.php.<br>If you want default value only if url has some parameter, you can use <strong>%s</strong>
  507. AlsoDefaultValuesAreEffectiveForActionCreate=Also note that overwritting default values for form creation works only for pages that were correctly designed (so with parameter action=create or presend...)
  508. EnableDefaultValues=Enable customization of default values
  509. EnableOverwriteTranslation=Enable usage of overwritten translation
  510. GoIntoTranslationMenuToChangeThis=A translation has been found for the key with this code. To change this value, you must edit it from Home-Setup-translation.
  511. WarningSettingSortOrder=Warning, setting a default sort order may result in a technical error when going on the list page if field is an unknown field. If you experience such an error, come back to this page to remove the default sort order and restore default behavior.
  512. Field=Field
  513. ProductDocumentTemplates=Document templates to generate product document
  514. FreeLegalTextOnExpenseReports=Free legal text on expense reports
  515. WatermarkOnDraftExpenseReports=Watermark on draft expense reports
  516. AttachMainDocByDefault=Set this to 1 if you want to attach main document to email by default (if applicable)
  517. FilesAttachedToEmail=Attach file
  518. SendEmailsReminders=Send agenda reminders by emails
  519. davDescription=Setup a WebDAV server
  520. DAVSetup=Setup of module DAV
  521. DAV_ALLOW_PRIVATE_DIR=Enable the generic private directory (WebDAV dedicated directory named "private" - login required)
  522. DAV_ALLOW_PRIVATE_DIRTooltip=The generic private directory is a WebDAV directory anybody can access with its application login/pass.
  523. DAV_ALLOW_PUBLIC_DIR=Enable the generic public directory (WebDAV dedicated directory named "public" - no login required)
  524. DAV_ALLOW_PUBLIC_DIRTooltip=The generic public directory is a WebDAV directory anybody can access (in read and write mode), with no authorization required (login/password account).
  525. DAV_ALLOW_ECM_DIR=Enable the DMS/ECM private directory (root directory of the DMS/ECM module - login required)
  526. DAV_ALLOW_ECM_DIRTooltip=The root directory where all files are manually uploaded when using the DMS/ECM module. Similarly as access from the web interface, you will need a valid login/password with adecuate permissions to access it.
  527. # Modules
  528. Module0Name=Users & Groups
  529. Module0Desc=Users / Employees and Groups management
  530. Module1Name=Third Parties
  531. Module1Desc=Companies and contacts management (customers, prospects...)
  532. Module2Name=Commercial
  533. Module2Desc=Commercial management
  534. Module10Name=Accounting (simplified)
  535. Module10Desc=Simple accounting reports (journals, turnover) based on database content. Does not use any ledger table.
  536. Module20Name=Proposals
  537. Module20Desc=Commercial proposal management
  538. Module22Name=Mass Emailings
  539. Module22Desc=Manage bulk emailing
  540. Module23Name=Energy
  541. Module23Desc=Monitoring the consumption of energies
  542. Module25Name=Sales Orders
  543. Module25Desc=Sales order management
  544. Module30Name=Invoices
  545. Module30Desc=Management of invoices and credit notes for customers. Management of invoices and credit notes for suppliers
  546. Module40Name=Vendors
  547. Module40Desc=Vendors and purchase management (purchase orders and billing of supplier invoices)
  548. Module42Name=Debug Logs
  549. Module42Desc=Logging facilities (file, syslog, ...). Such logs are for technical/debug purposes.
  550. Module43Name=Debug Bar
  551. Module43Desc=A tool for developper adding a debug bar in your browser.
  552. Module49Name=Editors
  553. Module49Desc=Editor management
  554. Module50Name=Products
  555. Module50Desc=Management of Products
  556. Module51Name=Mass mailings
  557. Module51Desc=Mass paper mailing management
  558. Module52Name=Stocks
  559. Module52Desc=Stock management
  560. Module53Name=Services
  561. Module53Desc=Management of Services
  562. Module54Name=Contracts/Subscriptions
  563. Module54Desc=Management of contracts (services or recurring subscriptions)
  564. Module55Name=Barcodes
  565. Module55Desc=Barcode or QR code management
  566. Module56Name=Payment by credit transfer
  567. Module56Desc=Management of payment of suppliers by Credit Transfer orders. It includes generation of SEPA file for European countries.
  568. Module57Name=Payments by Direct Debit
  569. Module57Desc=Management of Direct Debit orders. It includes generation of SEPA file for European countries.
  570. Module58Name=ClickToDial
  571. Module58Desc=Integration of a ClickToDial system (Asterisk, ...)
  572. Module60Name=Stickers
  573. Module60Desc=Management of stickers
  574. Module70Name=Interventions
  575. Module70Desc=Intervention management
  576. Module75Name=Expense and trip notes
  577. Module75Desc=Expense and trip notes management
  578. Module80Name=Shipments
  579. Module80Desc=Shipments and delivery note management
  580. Module85Name=Banks & Cash
  581. Module85Desc=Management of bank or cash accounts
  582. Module100Name=External Site
  583. Module100Desc=Add a link to an external website as a main menu icon. Website is shown in a frame under the top menu.
  584. Module105Name=Mailman and SPIP
  585. Module105Desc=Mailman or SPIP interface for member module
  586. Module200Name=LDAP
  587. Module200Desc=LDAP directory synchronization
  588. Module210Name=PostNuke
  589. Module210Desc=PostNuke integration
  590. Module240Name=Data exports
  591. Module240Desc=Tool to export Dolibarr data (with assistance)
  592. Module250Name=Data imports
  593. Module250Desc=Tool to import data into Dolibarr (with assistance)
  594. Module310Name=Members
  595. Module310Desc=Foundation members management
  596. Module320Name=RSS Feed
  597. Module320Desc=Add a RSS feed to Dolibarr pages
  598. Module330Name=Bookmarks & Shortcuts
  599. Module330Desc=Create shortcuts, always accessible, to the internal or external pages to which you frequently access
  600. Module400Name=Projects or Leads
  601. Module400Desc=Management of projects, leads/opportunities and/or tasks. You can also assign any element (invoice, order, proposal, intervention, ...) to a project and get a transversal view from the project view.
  602. Module410Name=Webcalendar
  603. Module410Desc=Webcalendar integration
  604. Module500Name=Taxes & Special Expenses
  605. Module500Desc=Management of other expenses (sale taxes, social or fiscal taxes, dividends, ...)
  606. Module510Name=Salaries
  607. Module510Desc=Record and track employee payments
  608. Module520Name=Loans
  609. Module520Desc=Management of loans
  610. Module600Name=Notifications on business event
  611. Module600Desc=Send email notifications triggered by a business event: per user (setup defined on each user), per third-party contacts (setup defined on each third party) or by specific emails
  612. Module600Long=Note that this module sends emails in real-time when a specific business event occurs. If you are looking for a feature to send email reminders for agenda events, go into the setup of module Agenda.
  613. Module610Name=Product Variants
  614. Module610Desc=Creation of product variants (color, size etc.)
  615. Module700Name=Donations
  616. Module700Desc=Donation management
  617. Module770Name=Expense Reports
  618. Module770Desc=Manage expense reports claims (transportation, meal, ...)
  619. Module1120Name=Vendor Commercial Proposals
  620. Module1120Desc=Request vendor commercial proposal and prices
  621. Module1200Name=Mantis
  622. Module1200Desc=Mantis integration
  623. Module1520Name=Document Generation
  624. Module1520Desc=Mass email document generation
  625. Module1780Name=Tags/Categories
  626. Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
  627. Module2000Name=WYSIWYG editor
  628. Module2000Desc=Allow text fields to be edited/formatted using CKEditor (html)
  629. Module2200Name=Dynamic Prices
  630. Module2200Desc=Use maths expressions for auto-generation of prices
  631. Module2300Name=Scheduled jobs
  632. Module2300Desc=Scheduled jobs management (alias cron or chrono table)
  633. Module2400Name=Events/Agenda
  634. Module2400Desc=Track events. Log automatic events for tracking purposes or record manual events or meetings. This is the principal module for good Customer or Vendor Relationship Management.
  635. Module2500Name=DMS / ECM
  636. Module2500Desc=Document Management System / Electronic Content Management. Automatic organization of your generated or stored documents. Share them when you need.
  637. Module2600Name=API/Web services (SOAP server)
  638. Module2600Desc=Enable the Dolibarr SOAP server providing API services
  639. Module2610Name=API/Web services (REST server)
  640. Module2610Desc=Enable the Dolibarr REST server providing API services
  641. Module2660Name=Call WebServices (SOAP client)
  642. Module2660Desc=Enable the Dolibarr web services client (Can be used to push data/requests to external servers. Only Purchase orders are currently supported.)
  643. Module2700Name=Gravatar
  644. Module2700Desc=Use online Gravatar service (www.gravatar.com) to show photo of users/members (found with their emails). Needs Internet access
  645. Module2800Desc=FTP Client
  646. Module2900Name=GeoIPMaxmind
  647. Module2900Desc=GeoIP Maxmind conversions capabilities
  648. Module3200Name=Unalterable Archives
  649. Module3200Desc=Enable an unalterable log of business events. Events are archived in real-time. The log is a read-only table of chained events that can be exported. This module may be mandatory for some countries.
  650. Module3400Name=Social Networks
  651. Module3400Desc=Enable Social Networks fields into third parties and addresses (skype, twitter, facebook, ...).
  652. Module4000Name=HRM
  653. Module4000Desc=Human resources management (management of department, employee contracts and feelings)
  654. Module5000Name=Multi-company
  655. Module5000Desc=Allows you to manage multiple companies
  656. Module6000Name=Inter-modules Workflow
  657. Module6000Desc=Workflow management between different modules (automatic creation of object and/or automatic status change)
  658. Module10000Name=Websites
  659. Module10000Desc=Create websites (public) with a WYSIWYG editor. This is a webmaster or developer oriented CMS (it is better to know HTML and CSS language). Just setup your web server (Apache, Nginx, ...) to point to the dedicated Dolibarr directory to have it online on the internet with your own domain name.
  660. Module20000Name=Leave Request Management
  661. Module20000Desc=Define and track employee leave requests
  662. Module39000Name=Product Lots
  663. Module39000Desc=Lots, serial numbers, eat-by/sell-by date management for products
  664. Module40000Name=Multicurrency
  665. Module40000Desc=Use alternative currencies in prices and documents
  666. Module50000Name=PayBox
  667. Module50000Desc=Offer customers a PayBox online payment page (credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...)
  668. Module50100Name=POS SimplePOS
  669. Module50100Desc=Point of Sale module SimplePOS (simple POS).
  670. Module50150Name=POS TakePOS
  671. Module50150Desc=Point of Sale module TakePOS (touchscreen POS, for shops, bars or restaurants).
  672. Module50200Name=Paypal
  673. Module50200Desc=Offer customers a PayPal online payment page (PayPal account or credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...)
  674. Module50300Name=Stripe
  675. Module50300Desc=Offer customers a Stripe online payment page (credit/debit cards). This can be used to allow your customers to make ad-hoc payments or payments related to a specific Dolibarr object (invoice, order etc...)
  676. Module50400Name=Accounting (double entry)
  677. Module50400Desc=Accounting management (double entries, support General and Subsidiary Ledgers). Export the ledger in several other accounting software formats.
  678. Module54000Name=PrintIPP
  679. Module54000Desc=Direct print (without opening the documents) using Cups IPP interface (Printer must be visible from server, and CUPS must be installed on server).
  680. Module55000Name=Poll, Survey or Vote
  681. Module55000Desc=Create online polls, surveys or votes (like Doodle, Studs, RDVz etc...)
  682. Module59000Name=Margins
  683. Module59000Desc=Module to follow margins
  684. Module60000Name=Commissions
  685. Module60000Desc=Module to manage commissions
  686. Module62000Name=Incoterms
  687. Module62000Desc=Add features to manage Incoterms
  688. Module63000Name=Resources
  689. Module63000Desc=Manage resources (printers, cars, rooms, ...) for allocating to events
  690. Permission11=Read customer invoices
  691. Permission12=Create/modify customer invoices
  692. Permission13=Invalidate customer invoices
  693. Permission14=Validate customer invoices
  694. Permission15=Send customer invoices by email
  695. Permission16=Create payments for customer invoices
  696. Permission19=Delete customer invoices
  697. Permission21=Read commercial proposals
  698. Permission22=Create/modify commercial proposals
  699. Permission24=Validate commercial proposals
  700. Permission25=Send commercial proposals
  701. Permission26=Close commercial proposals
  702. Permission27=Delete commercial proposals
  703. Permission28=Export commercial proposals
  704. Permission31=Read products
  705. Permission32=Create/modify products
  706. Permission34=Delete products
  707. Permission36=See/manage hidden products
  708. Permission38=Export products
  709. Permission39=Ignore minimum price
  710. Permission41=Read projects and tasks (shared project and projects I'm contact for). Can also enter time consumed, for me or my hierarchy, on assigned tasks (Timesheet)
  711. Permission42=Create/modify projects (shared project and projects I'm contact for). Can also create tasks and assign users to project and tasks
  712. Permission44=Delete projects (shared project and projects I'm contact for)
  713. Permission45=Export projects
  714. Permission61=Read interventions
  715. Permission62=Create/modify interventions
  716. Permission64=Delete interventions
  717. Permission67=Export interventions
  718. Permission68=Send interventions by email
  719. Permission69=Validate interventions
  720. Permission70=Invalidate interventions
  721. Permission71=Read members
  722. Permission72=Create/modify members
  723. Permission74=Delete members
  724. Permission75=Setup types of membership
  725. Permission76=Export data
  726. Permission78=Read subscriptions
  727. Permission79=Create/modify subscriptions
  728. Permission81=Read customers orders
  729. Permission82=Create/modify customers orders
  730. Permission84=Validate customers orders
  731. Permission86=Send customers orders
  732. Permission87=Close customers orders
  733. Permission88=Cancel customers orders
  734. Permission89=Delete customers orders
  735. Permission91=Read social or fiscal taxes and vat
  736. Permission92=Create/modify social or fiscal taxes and vat
  737. Permission93=Delete social or fiscal taxes and vat
  738. Permission94=Export social or fiscal taxes
  739. Permission95=Read reports
  740. Permission101=Read sendings
  741. Permission102=Create/modify sendings
  742. Permission104=Validate sendings
  743. Permission105=Send sendings by email
  744. Permission106=Export sendings
  745. Permission109=Delete sendings
  746. Permission111=Read financial accounts
  747. Permission112=Create/modify/delete and compare transactions
  748. Permission113=Setup financial accounts (create, manage categories)
  749. Permission114=Reconcile transactions
  750. Permission115=Export transactions and account statements
  751. Permission116=Transfers between accounts
  752. Permission117=Manage checks dispatching
  753. Permission121=Read third parties linked to user
  754. Permission122=Create/modify third parties linked to user
  755. Permission125=Delete third parties linked to user
  756. Permission126=Export third parties
  757. Permission141=Read all projects and tasks (also private projects for which I am not a contact)
  758. Permission142=Create/modify all projects and tasks (also private projects for which I am not a contact)
  759. Permission144=Delete all projects and tasks (also private projects i am not contact for)
  760. Permission146=Read providers
  761. Permission147=Read stats
  762. Permission151=Read direct debit payment orders
  763. Permission152=Create/modify a direct debit payment orders
  764. Permission153=Send/Transmit direct debit payment orders
  765. Permission154=Record Credits/Rejections of direct debit payment orders
  766. Permission161=Read contracts/subscriptions
  767. Permission162=Create/modify contracts/subscriptions
  768. Permission163=Activate a service/subscription of a contract
  769. Permission164=Disable a service/subscription of a contract
  770. Permission165=Delete contracts/subscriptions
  771. Permission167=Export contracts
  772. Permission171=Read trips and expenses (yours and your subordinates)
  773. Permission172=Create/modify trips and expenses
  774. Permission173=Delete trips and expenses
  775. Permission174=Read all trips and expenses
  776. Permission178=Export trips and expenses
  777. Permission180=Read suppliers
  778. Permission181=Read purchase orders
  779. Permission182=Create/modify purchase orders
  780. Permission183=Validate purchase orders
  781. Permission184=Approve purchase orders
  782. Permission185=Order or cancel purchase orders
  783. Permission186=Receive purchase orders
  784. Permission187=Close purchase orders
  785. Permission188=Cancel purchase orders
  786. Permission192=Create lines
  787. Permission193=Cancel lines
  788. Permission194=Read the bandwidth lines
  789. Permission202=Create ADSL connections
  790. Permission203=Order connections orders
  791. Permission204=Order connections
  792. Permission205=Manage connections
  793. Permission206=Read connections
  794. Permission211=Read Telephony
  795. Permission212=Order lines
  796. Permission213=Activate line
  797. Permission214=Setup Telephony
  798. Permission215=Setup providers
  799. Permission221=Read emailings
  800. Permission222=Create/modify emailings (topic, recipients...)
  801. Permission223=Validate emailings (allows sending)
  802. Permission229=Delete emailings
  803. Permission237=View recipients and info
  804. Permission238=Manually send mailings
  805. Permission239=Delete mailings after validation or sent
  806. Permission241=Read categories
  807. Permission242=Create/modify categories
  808. Permission243=Delete categories
  809. Permission244=See the contents of the hidden categories
  810. Permission251=Read other users and groups
  811. PermissionAdvanced251=Read other users
  812. Permission252=Read permissions of other users
  813. Permission253=Create/modify other users, groups and permissions
  814. PermissionAdvanced253=Create/modify internal/external users and permissions
  815. Permission254=Create/modify external users only
  816. Permission255=Modify other users password
  817. Permission256=Delete or disable other users
  818. Permission262=Extend access to all third parties AND their objects (not only third parties for which the user is a sale representative).<br>Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).<br>Not effective for projects (only rules on project permissions, visibility and assignment matters).
  819. Permission263=Extend access to all third parties WITHOUT their objects (not only third parties for which the user is a sale representative).<br>Not effective for external users (always limited to themselves for proposals, orders, invoices, contracts, etc.).<br>Not effective for projects (only rules on project permissions, visibility and assignment matters).
  820. Permission271=Read CA
  821. Permission272=Read invoices
  822. Permission273=Issue invoices
  823. Permission281=Read contacts
  824. Permission282=Create/modify contacts
  825. Permission283=Delete contacts
  826. Permission286=Export contacts
  827. Permission291=Read tariffs
  828. Permission292=Set permissions on the tariffs
  829. Permission293=Modify customer's tariffs
  830. Permission300=Read barcodes
  831. Permission301=Create/modify barcodes
  832. Permission302=Delete barcodes
  833. Permission311=Read services
  834. Permission312=Assign service/subscription to contract
  835. Permission331=Read bookmarks
  836. Permission332=Create/modify bookmarks
  837. Permission333=Delete bookmarks
  838. Permission341=Read its own permissions
  839. Permission342=Create/modify his own user information
  840. Permission343=Modify his own password
  841. Permission344=Modify its own permissions
  842. Permission351=Read groups
  843. Permission352=Read groups permissions
  844. Permission353=Create/modify groups
  845. Permission354=Delete or disable groups
  846. Permission358=Export users
  847. Permission401=Read discounts
  848. Permission402=Create/modify discounts
  849. Permission403=Validate discounts
  850. Permission404=Delete discounts
  851. Permission430=Use Debug Bar
  852. Permission511=Read salaries and payments (yours and subordinates)
  853. Permission512=Create/modify salaries and payments
  854. Permission514=Delete salaries and payments
  855. Permission517=Read salaries and payments everybody
  856. Permission519=Export salaries
  857. Permission520=Read Loans
  858. Permission522=Create/modify loans
  859. Permission524=Delete loans
  860. Permission525=Access loan calculator
  861. Permission527=Export loans
  862. Permission531=Read services
  863. Permission532=Create/modify services
  864. Permission534=Delete services
  865. Permission536=See/manage hidden services
  866. Permission538=Export services
  867. Permission561=Read payment orders by credit transfer
  868. Permission562=Create/modify payment order by credit transfer
  869. Permission563=Send/Transmit payment order by credit transfer
  870. Permission564=Record Debits/Rejections of credit transfer
  871. Permission601=Read stickers
  872. Permission602=Create/modify stickers
  873. Permission609=Delete stickers
  874. Permission650=Read Bills of Materials
  875. Permission651=Create/Update Bills of Materials
  876. Permission652=Delete Bills of Materials
  877. Permission660=Read Manufacturing Order (MO)
  878. Permission661=Create/Update Manufacturing Order (MO)
  879. Permission662=Delete Manufacturing Order (MO)
  880. Permission701=Read donations
  881. Permission702=Create/modify donations
  882. Permission703=Delete donations
  883. Permission771=Read expense reports (yours and your subordinates)
  884. Permission772=Create/modify expense reports
  885. Permission773=Delete expense reports
  886. Permission774=Read all expense reports (even for user not subordinates)
  887. Permission775=Approve expense reports
  888. Permission776=Pay expense reports
  889. Permission777=Read expense reports of everybody
  890. Permission778=Create/modify expense reports of everybody
  891. Permission779=Export expense reports
  892. Permission1001=Read stocks
  893. Permission1002=Create/modify warehouses
  894. Permission1003=Delete warehouses
  895. Permission1004=Read stock movements
  896. Permission1005=Create/modify stock movements
  897. Permission1101=Read delivery receipts
  898. Permission1102=Create/modify delivery receipts
  899. Permission1104=Validate delivery receipts
  900. Permission1109=Delete delivery receipts
  901. Permission1121=Read supplier proposals
  902. Permission1122=Create/modify supplier proposals
  903. Permission1123=Validate supplier proposals
  904. Permission1124=Send supplier proposals
  905. Permission1125=Delete supplier proposals
  906. Permission1126=Close supplier price requests
  907. Permission1181=Read suppliers
  908. Permission1182=Read purchase orders
  909. Permission1183=Create/modify purchase orders
  910. Permission1184=Validate purchase orders
  911. Permission1185=Approve purchase orders
  912. Permission1186=Order purchase orders
  913. Permission1187=Acknowledge receipt of purchase orders
  914. Permission1188=Delete purchase orders
  915. Permission1189=Check/Uncheck a purchase order reception
  916. Permission1190=Approve (second approval) purchase orders
  917. Permission1191=Export supplier orders and their attributes
  918. Permission1201=Get result of an export
  919. Permission1202=Create/Modify an export
  920. Permission1231=Read vendor invoices
  921. Permission1232=Create/modify vendor invoices
  922. Permission1233=Validate vendor invoices
  923. Permission1234=Delete vendor invoices
  924. Permission1235=Send vendor invoices by email
  925. Permission1236=Export vendor invoices, attributes and payments
  926. Permission1237=Export purchase orders and their details
  927. Permission1251=Run mass imports of external data into database (data load)
  928. Permission1321=Export customer invoices, attributes and payments
  929. Permission1322=Reopen a paid bill
  930. Permission1421=Export sales orders and attributes
  931. Permission1521=Read documents
  932. Permission1522=Delete documents
  933. Permission2401=Read actions (events or tasks) linked to his user account (if owner of event or just assigned to)
  934. Permission2402=Create/modify actions (events or tasks) linked to his user account (if owner of event)
  935. Permission2403=Delete actions (events or tasks) linked to his user account (if owner of event)
  936. Permission2411=Read actions (events or tasks) of others
  937. Permission2412=Create/modify actions (events or tasks) of others
  938. Permission2413=Delete actions (events or tasks) of others
  939. Permission2414=Export actions/tasks of others
  940. Permission2501=Read/Download documents
  941. Permission2502=Download documents
  942. Permission2503=Submit or delete documents
  943. Permission2515=Setup documents directories
  944. Permission2801=Use FTP client in read mode (browse and download only)
  945. Permission2802=Use FTP client in write mode (delete or upload files)
  946. Permission3200=Read archived events and fingerprints
  947. Permission3301=Generate new modules
  948. Permission4001=See employees
  949. Permission4002=Create employees
  950. Permission4003=Delete employees
  951. Permission4004=Export employees
  952. Permission10001=Read website content
  953. Permission10002=Create/modify website content (html and javascript content)
  954. Permission10003=Create/modify website content (dynamic php code). Dangerous, must be reserved to restricted developers.
  955. Permission10005=Delete website content
  956. Permission20001=Read leave requests (your leave and those of your subordinates)
  957. Permission20002=Create/modify your leave requests (your leave and those of your subordinates)
  958. Permission20003=Delete leave requests
  959. Permission20004=Read all leave requests (even of user not subordinates)
  960. Permission20005=Create/modify leave requests for everybody (even of user not subordinates)
  961. Permission20006=Admin leave requests (setup and update balance)
  962. Permission20007=Approve leave requests
  963. Permission23001=Read Scheduled job
  964. Permission23002=Create/update Scheduled job
  965. Permission23003=Delete Scheduled job
  966. Permission23004=Execute Scheduled job
  967. Permission50101=Use Point of Sale (SimplePOS)
  968. Permission50151=Use Point of Sale (TakePOS)
  969. Permission50152=Edit sales lines
  970. Permission50153=Edit ordered sales lines
  971. Permission50201=Read transactions
  972. Permission50202=Import transactions
  973. Permission50330=Read objects of Zapier
  974. Permission50331=Create/Update objects of Zapier
  975. Permission50332=Delete objects of Zapier
  976. Permission50401=Bind products and invoices with accounting accounts
  977. Permission50411=Read operations in ledger
  978. Permission50412=Write/Edit operations in ledger
  979. Permission50414=Delete operations in ledger
  980. Permission50415=Delete all operations by year and journal in ledger
  981. Permission50418=Export operations of the ledger
  982. Permission50420=Report and export reports (turnover, balance, journals, ledger)
  983. Permission50430=Define fiscal periods. Validate transactions and close fiscal periods.
  984. Permission50440=Manage chart of accounts, setup of accountancy
  985. Permission51001=Read assets
  986. Permission51002=Create/Update assets
  987. Permission51003=Delete assets
  988. Permission51005=Setup types of asset
  989. Permission54001=Print
  990. Permission55001=Read polls
  991. Permission55002=Create/modify polls
  992. Permission59001=Read commercial margins
  993. Permission59002=Define commercial margins
  994. Permission59003=Read every user margin
  995. Permission63001=Read resources
  996. Permission63002=Create/modify resources
  997. Permission63003=Delete resources
  998. Permission63004=Link resources to agenda events
  999. Permission64001=Allow direct printing
  1000. Permission67000=Allow printing of receipts
  1001. Permission68001=Read intracomm report
  1002. Permission68002=Create/modify intracomm report
  1003. Permission68004=Delete intracomm report
  1004. Permission941601=Read receipts
  1005. Permission941602=Create and modify receipts
  1006. Permission941603=Validate receipts
  1007. Permission941604=Send receipts by email
  1008. Permission941605=Export receipts
  1009. Permission941606=Delete receipts
  1010. DictionaryCompanyType=Third-party types
  1011. DictionaryCompanyJuridicalType=Third-party legal entities
  1012. DictionaryProspectLevel=Prospect potential level for companies
  1013. DictionaryProspectContactLevel=Prospect potential level for contacts
  1014. DictionaryCanton=States/Provinces
  1015. DictionaryRegion=Regions
  1016. DictionaryCountry=Countries
  1017. DictionaryCurrency=Currencies
  1018. DictionaryCivility=Honorific titles
  1019. DictionaryActions=Types of agenda events
  1020. DictionarySocialContributions=Types of social or fiscal taxes
  1021. DictionaryVAT=VAT Rates or Sales Tax Rates
  1022. DictionaryRevenueStamp=Amount of tax stamps
  1023. DictionaryPaymentConditions=Payment Terms
  1024. DictionaryPaymentModes=Payment Modes
  1025. DictionaryTypeContact=Contact/Address types
  1026. DictionaryTypeOfContainer=Website - Type of website pages/containers
  1027. DictionaryEcotaxe=Ecotax (WEEE)
  1028. DictionaryPaperFormat=Paper formats
  1029. DictionaryFormatCards=Card formats
  1030. DictionaryFees=Expense report - Types of expense report lines
  1031. DictionarySendingMethods=Shipping methods
  1032. DictionaryStaff=Number of Employees
  1033. DictionaryAvailability=Delivery delay
  1034. DictionaryOrderMethods=Ordering methods
  1035. DictionarySource=Origin of proposals/orders
  1036. DictionaryAccountancyCategory=Personalized groups for reports
  1037. DictionaryAccountancysystem=Models for chart of accounts
  1038. DictionaryAccountancyJournal=Accounting journals
  1039. DictionaryEMailTemplates=Email Templates
  1040. DictionaryUnits=Units
  1041. DictionaryMeasuringUnits=Measuring Units
  1042. DictionarySocialNetworks=Social Networks
  1043. DictionaryProspectStatus=Prospect status for companies
  1044. DictionaryProspectContactStatus=Prospect status for contacts
  1045. DictionaryHolidayTypes=Leave - Types of leave
  1046. DictionaryOpportunityStatus=Lead status for project/lead
  1047. DictionaryExpenseTaxCat=Expense report - Transportation categories
  1048. DictionaryExpenseTaxRange=Expense report - Range by transportation category
  1049. DictionaryTransportMode=Intracomm report - Transport mode
  1050. DictionaryBatchStatus=Product lot/serial Quality Control status
  1051. TypeOfUnit=Type of unit
  1052. SetupSaved=Setup saved
  1053. SetupNotSaved=Setup not saved
  1054. BackToModuleList=Back to Module list
  1055. BackToDictionaryList=Back to Dictionaries list
  1056. TypeOfRevenueStamp=Type of tax stamp
  1057. VATManagement=Sales Tax Management
  1058. VATIsUsedDesc=By default when creating prospects, invoices, orders etc. the Sales Tax rate follows the active standard rule:<br>If the seller is not subject to Sales tax, then Sales tax defaults to 0. End of rule.<br>If the (seller's country = buyer's country), then the Sales tax by default equals the Sales tax of the product in the seller's country. End of rule.<br>If the seller and buyer are both in the European Community and goods are transport-related products (haulage, shipping, airline), the default VAT is 0. This rule is dependant on the seller's country - please consult with your accountant. The VAT should be paid by the buyer to the customs office in their country and not to the seller. End of rule.<br>If the seller and buyer are both in the European Community and the buyer is not a company (with a registered intra-Community VAT number) then the VAT defaults to the VAT rate of the seller's country. End of rule.<br>If the seller and buyer are both in the European Community and the buyer is a company (with a registered intra-Community VAT number), then the VAT is 0 by default. End of rule.<br>In any other case the proposed default is Sales tax=0. End of rule.
  1059. VATIsNotUsedDesc=By default the proposed Sales tax is 0 which can be used for cases like associations, individuals or small companies.
  1060. VATIsUsedExampleFR=In France, it means companies or organizations having a real fiscal system (Simplified real or normal real). A system in which VAT is declared.
  1061. VATIsNotUsedExampleFR=In France, it means associations that are non Sales tax declared or companies, organizations or liberal professions that have chosen the micro enterprise fiscal system (Sales tax in franchise) and paid a franchise Sales tax without any Sales tax declaration. This choice will display the reference "Non applicable Sales tax - art-293B of CGI" on invoices.
  1062. ##### Local Taxes #####
  1063. TypeOfSaleTaxes=Type of sales tax
  1064. LTRate=Rate
  1065. LocalTax1IsNotUsed=Do not use second tax
  1066. LocalTax1IsUsedDesc=Use a second type of tax (other than first one)
  1067. LocalTax1IsNotUsedDesc=Do not use other type of tax (other than first one)
  1068. LocalTax1Management=Second type of tax
  1069. LocalTax1IsUsedExample=
  1070. LocalTax1IsNotUsedExample=
  1071. LocalTax2IsNotUsed=Do not use third tax
  1072. LocalTax2IsUsedDesc=Use a third type of tax (other than first one)
  1073. LocalTax2IsNotUsedDesc=Do not use other type of tax (other than first one)
  1074. LocalTax2Management=Third type of tax
  1075. LocalTax2IsUsedExample=
  1076. LocalTax2IsNotUsedExample=
  1077. LocalTax1ManagementES=RE Management
  1078. LocalTax1IsUsedDescES=The RE rate by default when creating prospects, invoices, orders etc. follow the active standard rule:<br>If the buyer is not subjected to RE, RE by default=0. End of rule.<br>If the buyer is subjected to RE then the RE by default. End of rule.<br>
  1079. LocalTax1IsNotUsedDescES=By default the proposed RE is 0. End of rule.
  1080. LocalTax1IsUsedExampleES=In Spain they are professionals subject to some specific sections of the Spanish IAE.
  1081. LocalTax1IsNotUsedExampleES=In Spain they are professional and societies and subject to certain sections of the Spanish IAE.
  1082. LocalTax2ManagementES=IRPF Management
  1083. LocalTax2IsUsedDescES=The IRPF rate by default when creating prospects, invoices, orders etc. follow the active standard rule:<br>If the seller is not subjected to IRPF, then IRPF by default=0. End of rule.<br>If the seller is subjected to IRPF then the IRPF by default. End of rule.<br>
  1084. LocalTax2IsNotUsedDescES=By default the proposed IRPF is 0. End of rule.
  1085. LocalTax2IsUsedExampleES=In Spain, freelancers and independent professionals who provide services and companies who have chosen the tax system of modules.
  1086. LocalTax2IsNotUsedExampleES=In Spain they are businesses not subject to tax system of modules.
  1087. RevenueStampDesc=The "tax stamp" or "revenue stamp" is a fixed tax you per invoice (It does not depend on amount of invoice). It can also be a percent tax but using the second or third type of tax is better for percent taxes as tax stamps does not provide any reporting. Only few countries uses this type of tax.
  1088. UseRevenueStamp=Use a tax stamp
  1089. UseRevenueStampExample=The value of tax stamp is defined by default into the setup of dictionaries (%s - %s - %s)
  1090. CalcLocaltax=Reports on local taxes
  1091. CalcLocaltax1=Sales - Purchases
  1092. CalcLocaltax1Desc=Local Taxes reports are calculated with the difference between localtaxes sales and localtaxes purchases
  1093. CalcLocaltax2=Purchases
  1094. CalcLocaltax2Desc=Local Taxes reports are the total of localtaxes purchases
  1095. CalcLocaltax3=Sales
  1096. CalcLocaltax3Desc=Local Taxes reports are the total of localtaxes sales
  1097. NoLocalTaxXForThisCountry=According to the setup of taxes (See %s - %s - %s), your country does not need to use such type of tax
  1098. LabelUsedByDefault=Label used by default if no translation can be found for code
  1099. LabelOnDocuments=Label on documents
  1100. LabelOrTranslationKey=Label or translation key
  1101. ValueOfConstantKey=Value of a configuration constant
  1102. ConstantIsOn=Option %s is on
  1103. NbOfDays=No. of days
  1104. AtEndOfMonth=At end of month
  1105. CurrentNext=Current/Next
  1106. Offset=Offset
  1107. AlwaysActive=Always active
  1108. Upgrade=Upgrade
  1109. MenuUpgrade=Upgrade / Extend
  1110. AddExtensionThemeModuleOrOther=Deploy/install external app/module
  1111. WebServer=Web server
  1112. DocumentRootServer=Web server's root directory
  1113. DataRootServer=Data files directory
  1114. IP=IP
  1115. Port=Port
  1116. VirtualServerName=Virtual server name
  1117. OS=OS
  1118. PhpWebLink=Web-Php link
  1119. Server=Server
  1120. Database=Database
  1121. DatabaseServer=Database host
  1122. DatabaseName=Database name
  1123. DatabasePort=Database port
  1124. DatabaseUser=Database user
  1125. DatabasePassword=Database password
  1126. Tables=Tables
  1127. TableName=Table name
  1128. NbOfRecord=No. of records
  1129. Host=Server
  1130. DriverType=Driver type
  1131. SummarySystem=System information summary
  1132. SummaryConst=List of all Dolibarr setup parameters
  1133. MenuCompanySetup=Company/Organization
  1134. DefaultMenuManager= Standard menu manager
  1135. DefaultMenuSmartphoneManager=Smartphone menu manager
  1136. Skin=Skin theme
  1137. DefaultSkin=Default skin theme
  1138. MaxSizeList=Max length for list
  1139. DefaultMaxSizeList=Default max length for lists
  1140. DefaultMaxSizeShortList=Default max length for short lists (i.e. in customer card)
  1141. MessageOfDay=Message of the day
  1142. MessageLogin=Login page message
  1143. LoginPage=Login page
  1144. BackgroundImageLogin=Background image
  1145. PermanentLeftSearchForm=Permanent search form on left menu
  1146. DefaultLanguage=Default language
  1147. EnableMultilangInterface=Enable multilanguage support for customer or vendor relationships
  1148. EnableShowLogo=Show the company logo in the menu
  1149. CompanyInfo=Company/Organization
  1150. CompanyIds=Company/Organization identities
  1151. CompanyName=Name
  1152. CompanyAddress=Address
  1153. CompanyZip=Zip
  1154. CompanyTown=Town
  1155. CompanyCountry=Country
  1156. CompanyCurrency=Main currency
  1157. CompanyObject=Object of the company
  1158. IDCountry=ID country
  1159. Logo=Logo
  1160. LogoDesc=Main logo of company. Will be used into generated documents (PDF, ...)
  1161. LogoSquarred=Logo (squarred)
  1162. LogoSquarredDesc=Must be a squarred icon (width = height). This logo will be used as the favorite icon or other need like for the top menu bar (if not disabled into display setup).
  1163. DoNotSuggestPaymentMode=Do not suggest
  1164. NoActiveBankAccountDefined=No active bank account defined
  1165. OwnerOfBankAccount=Owner of bank account %s
  1166. BankModuleNotActive=Bank accounts module not enabled
  1167. ShowBugTrackLink=Define the link "<strong>%s</strong>" (empty to not display this link, 'github' for the link to the Dolibarr project or define directly an url 'https://...')
  1168. Alerts=Alerts
  1169. DelaysOfToleranceBeforeWarning=Delay before displaying a warning alert for:
  1170. DelaysOfToleranceDesc=Set the delay before an alert icon %s is shown onscreen for the late element.
  1171. Delays_MAIN_DELAY_ACTIONS_TODO=Planned events (agenda events) not completed
  1172. Delays_MAIN_DELAY_PROJECT_TO_CLOSE=Project not closed in time
  1173. Delays_MAIN_DELAY_TASKS_TODO=Planned task (project tasks) not completed
  1174. Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Order not processed
  1175. Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Purchase order not processed
  1176. Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Proposal not closed
  1177. Delays_MAIN_DELAY_PROPALS_TO_BILL=Proposal not billed
  1178. Delays_MAIN_DELAY_NOT_ACTIVATED_SERVICES=Service to activate
  1179. Delays_MAIN_DELAY_RUNNING_SERVICES=Expired service
  1180. Delays_MAIN_DELAY_SUPPLIER_BILLS_TO_PAY=Unpaid vendor invoice
  1181. Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Unpaid customer invoice
  1182. Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Pending bank reconciliation
  1183. Delays_MAIN_DELAY_MEMBERS=Delayed membership fee
  1184. Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Check deposit not done
  1185. Delays_MAIN_DELAY_EXPENSEREPORTS=Expense report to approve
  1186. Delays_MAIN_DELAY_HOLIDAYS=Leave requests to approve
  1187. SetupDescription1=Before starting to use Dolibarr some initial parameters must be defined and modules enabled/configured.
  1188. SetupDescription2=The following two sections are mandatory (the two first entries in the Setup menu):
  1189. SetupDescription3=<a href="%s">%s -> %s</a><br><br>Basic parameters used to customize the default behavior of your application (e.g for country-related features).
  1190. SetupDescription4=<a href="%s">%s -> %s</a><br><br>This software is a suite of many modules/applications. The modules related to your needs must be enabled and configured. Menu entries will appears with the activation of these modules.
  1191. SetupDescription5=Other Setup menu entries manage optional parameters.
  1192. AuditedSecurityEvents=Security events that are audited
  1193. NoSecurityEventsAreAduited=No security events are audited. You can enable them from menu %s
  1194. Audit=Security events
  1195. InfoDolibarr=About Dolibarr
  1196. InfoBrowser=About Browser
  1197. InfoOS=About OS
  1198. InfoWebServer=About Web Server
  1199. InfoDatabase=About Database
  1200. InfoPHP=About PHP
  1201. InfoPerf=About Performances
  1202. InfoSecurity=About Security
  1203. BrowserName=Browser name
  1204. BrowserOS=Browser OS
  1205. ListOfSecurityEvents=List of Dolibarr security events
  1206. SecurityEventsPurged=Security events purged
  1207. LogEventDesc=Enable logging for specific security events. Administrators the log via menu <b>%s - %s</b>. Warning, this feature can generate a large amount of data in the database.
  1208. AreaForAdminOnly=Setup parameters can be set by <b>administrator users</b> only.
  1209. SystemInfoDesc=System information is miscellaneous technical information you get in read only mode and visible for administrators only.
  1210. SystemAreaForAdminOnly=This area is available to administrator users only. Dolibarr user permissions cannot change this restriction.
  1211. CompanyFundationDesc=Edit the information of your company/organization. Click on "%s" button at the bottom of the page when done.
  1212. AccountantDesc=If you have an external accountant/bookkeeper, you can edit here its information.
  1213. AccountantFileNumber=Accountant code
  1214. DisplayDesc=Parameters affecting the look and behaviour of Dolibarr can be modified here.
  1215. AvailableModules=Available app/modules
  1216. ToActivateModule=To activate modules, go on setup Area (Home->Setup->Modules).
  1217. SessionTimeOut=Time out for session
  1218. SessionExplanation=This number guarantees that the session will never expire before this delay, if the session cleaner is done by Internal PHP session cleaner (and nothing else). Internal PHP session cleaner does not guarantee that the session will expire after this delay. It will expire, after this delay, and when the session cleaner is run, so every <b>%s/%s</b> access, but only during access made by other sessions (if value is 0, it means clearing of session is done only by an external process).<br>Note: on some servers with an external session cleaning mechanism (cron under debian, ubuntu ...), the sessions can be destroyed after a period defined by an external setup, no matter what the value entered here is.
  1219. SessionsPurgedByExternalSystem=Sessions on this server seems to be cleaned by an external mechanism (cron under debian, ubuntu ...), probably every <b>%s</b> seconds (= value of parameter <b>session.gc_maxlifetime</b>), so changing the value here has no effect. You must ask the server administrator to change session delay.
  1220. TriggersAvailable=Available triggers
  1221. TriggersDesc=Triggers are files that will modify the behavior of Dolibarr workflow once copied into the directory <b>htdocs/core/triggers</b>. They realize new actions, activated on Dolibarr events (new company creation, invoice validation, ...).
  1222. TriggerDisabledByName=Triggers in this file are disabled by the <b>-NORUN</b> suffix in their name.
  1223. TriggerDisabledAsModuleDisabled=Triggers in this file are disabled as module <b>%s</b> is disabled.
  1224. TriggerAlwaysActive=Triggers in this file are always active, whatever are the activated Dolibarr modules.
  1225. TriggerActiveAsModuleActive=Triggers in this file are active as module <b>%s</b> is enabled.
  1226. GeneratedPasswordDesc=Choose the method to be used for auto-generated passwords.
  1227. DictionaryDesc=Insert all reference data. You can add your values to the default.
  1228. ConstDesc=This page allows you to edit (override) parameters not available in other pages. These are mostly reserved parameters for developers/advanced troubleshooting only.
  1229. MiscellaneousDesc=All other security related parameters are defined here.
  1230. LimitsSetup=Limits/Precision setup
  1231. LimitsDesc=You can define limits, precisions and optimizations used by Dolibarr here
  1232. MAIN_MAX_DECIMALS_UNIT=Max. decimals for unit prices
  1233. MAIN_MAX_DECIMALS_TOT=Max. decimals for total prices
  1234. MAIN_MAX_DECIMALS_SHOWN=Max. decimals for prices <b>shown on screen</b>. Add an ellipsis <b>...</b> after this parameter (e.g. "2...") if you want to see "<b>...</b>" suffixed to the truncated price.
  1235. MAIN_ROUNDING_RULE_TOT=Step of rounding range (for countries where rounding is done on something other than base 10. For example, put 0.05 if rounding is done by 0.05 steps)
  1236. UnitPriceOfProduct=Net unit price of a product
  1237. TotalPriceAfterRounding=Total price (excl/vat/incl tax) after rounding
  1238. ParameterActiveForNextInputOnly=Parameter effective for next input only
  1239. NoEventOrNoAuditSetup=No security event has been logged. This is normal if Audit has not been enabled in the "Setup - Security - Events" page.
  1240. NoEventFoundWithCriteria=No security event has been found for this search criteria.
  1241. SeeLocalSendMailSetup=See your local sendmail setup
  1242. BackupDesc=A <b>complete</b> backup of a Dolibarr installation requires two steps.
  1243. BackupDesc2=Backup the contents of the "documents" directory (<b>%s</b>) containing all uploaded and generated files. This will also include all the dump files generated in Step 1. This operation may last several minutes.
  1244. BackupDesc3=Backup the structure and contents of your database (<b>%s</b>) into a dump file. For this, you can use the following assistant.
  1245. BackupDescX=The archived directory should be stored in a secure place.
  1246. BackupDescY=The generated dump file should be stored in a secure place.
  1247. BackupPHPWarning=Backup cannot be guaranteed with this method. Previous one recommended.
  1248. RestoreDesc=To restore a Dolibarr backup, two steps are required.
  1249. RestoreDesc2=Restore the backup file (zip file for example) of the "documents" directory to a new Dolibarr installation or into this current documents directory (<b>%s</b>).
  1250. RestoreDesc3=Restore the database structure and data from a backup dump file into the database of the new Dolibarr installation or into the database of this current installation (<b>%s</b>). Warning, once the restore is complete, you must use a login/password, that existed from the backup time/installation to connect again.<br>To restore a backup database into this current installation, you can follow this assistant.
  1251. RestoreMySQL=MySQL import
  1252. ForcedToByAModule=This rule is forced to <b>%s</b> by an activated module
  1253. ValueIsForcedBySystem=This value is forced by the system. You can't change it.
  1254. PreviousDumpFiles=Existing backup files
  1255. PreviousArchiveFiles=Existing archive files
  1256. WeekStartOnDay=First day of the week
  1257. RunningUpdateProcessMayBeRequired=Running the upgrade process seems to be required (Program version %s differs from Database version %s)
  1258. YouMustRunCommandFromCommandLineAfterLoginToUser=You must run this command from command line after login to a shell with user <b>%s</b> or you must add -W option at end of command line to provide <b>%s</b> password.
  1259. YourPHPDoesNotHaveSSLSupport=SSL functions not available in your PHP
  1260. DownloadMoreSkins=More skins to download
  1261. SimpleNumRefModelDesc=Returns the reference number in the format %syymm-nnnn where yy is the year, mm is the month and nnnn is a sequential auto-incrementing number with no reset
  1262. SimpleNumRefNoDateModelDesc=Returns the reference number in the format %s-nnnn where nnnn is a sequential auto-incrementing number with no reset
  1263. ShowProfIdInAddress=Show professional id with addresses
  1264. ShowVATIntaInAddress=Hide intra-Community VAT number with addresses
  1265. TranslationUncomplete=Partial translation
  1266. MAIN_DISABLE_METEO=Disable meteorological view
  1267. MeteoStdMod=Standard mode
  1268. MeteoStdModEnabled=Standard mode enabled
  1269. MeteoPercentageMod=Percentage mode
  1270. MeteoPercentageModEnabled=Percentage mode enabled
  1271. MeteoUseMod=Click to use %s
  1272. TestLoginToAPI=Test login to API
  1273. ProxyDesc=Some features of Dolibarr require internet access. Define here the internet connection parameters such as access through a proxy server if necessary.
  1274. ExternalAccess=External/Internet Access
  1275. MAIN_PROXY_USE=Use a proxy server (otherwise access is direct to the internet)
  1276. MAIN_PROXY_HOST=Proxy server: Name/Address
  1277. MAIN_PROXY_PORT=Proxy server: Port
  1278. MAIN_PROXY_USER=Proxy server: Login/User
  1279. MAIN_PROXY_PASS=Proxy server: Password
  1280. DefineHereComplementaryAttributes=Define any additional / custom attributes that must be added to: %s
  1281. ExtraFields=Complementary attributes
  1282. ExtraFieldsLines=Complementary attributes (lines)
  1283. ExtraFieldsLinesRec=Complementary attributes (templates invoices lines)
  1284. ExtraFieldsSupplierOrdersLines=Complementary attributes (order lines)
  1285. ExtraFieldsSupplierInvoicesLines=Complementary attributes (invoice lines)
  1286. ExtraFieldsThirdParties=Complementary attributes (third party)
  1287. ExtraFieldsContacts=Complementary attributes (contacts/address)
  1288. ExtraFieldsMember=Complementary attributes (member)
  1289. ExtraFieldsMemberType=Complementary attributes (member type)
  1290. ExtraFieldsCustomerInvoices=Complementary attributes (invoices)
  1291. ExtraFieldsCustomerInvoicesRec=Complementary attributes (templates invoices)
  1292. ExtraFieldsSupplierOrders=Complementary attributes (orders)
  1293. ExtraFieldsSupplierInvoices=Complementary attributes (invoices)
  1294. ExtraFieldsProject=Complementary attributes (projects)
  1295. ExtraFieldsProjectTask=Complementary attributes (tasks)
  1296. ExtraFieldsSalaries=Complementary attributes (salaries)
  1297. ExtraFieldHasWrongValue=Attribute %s has a wrong value.
  1298. AlphaNumOnlyLowerCharsAndNoSpace=only alphanumericals and lower case characters without space
  1299. SendmailOptionNotComplete=Warning, on some Linux systems, to send email from your email, sendmail execution setup must contains option -ba (parameter mail.force_extra_parameters into your php.ini file). If some recipients never receive emails, try to edit this PHP parameter with mail.force_extra_parameters = -ba).
  1300. PathToDocuments=Path to documents
  1301. PathDirectory=Directory
  1302. SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might not be parsed correctly by some receiving mail servers. The result is that some mails can't be read by people hosted by those bugged platforms. This is the case for some Internet providers (Ex: Orange in France). This is not a problem with Dolibarr or PHP but with the receiving mail server. You can however add an option MAIN_FIX_FOR_BUGGED_MTA to 1 in Setup - Other to modify Dolibarr to avoid this. However, you may experience problems with other servers that strictly use the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" which has no disadvantages.
  1303. TranslationSetup=Setup of translation
  1304. TranslationKeySearch=Search a translation key or string
  1305. TranslationOverwriteKey=Overwrite a translation string
  1306. TranslationDesc=How to set the display language:<br>* Default/Systemwide: menu <strong>Home -> Setup -> Display</strong><br>* Per user: Click on the username at the top of the screen and modify the <strong>User Display Setup</strong> tab on the user card.
  1307. TranslationOverwriteDesc=You can also override strings filling the following table. Choose your language from "%s" dropdown, insert the translation key string into "%s" and your new translation into "%s"
  1308. TranslationOverwriteDesc2=You can use the other tab to help you know which translation key to use
  1309. TranslationString=Translation string
  1310. CurrentTranslationString=Current translation string
  1311. WarningAtLeastKeyOrTranslationRequired=A search criteria is required at least for key or translation string
  1312. NewTranslationStringToShow=New translation string to show
  1313. OriginalValueWas=The original translation is overwritten. Original value was:<br><br>%s
  1314. TransKeyWithoutOriginalValue=You forced a new translation for the translation key '<strong>%s</strong>' that does not exist in any language files
  1315. TitleNumberOfActivatedModules=Activated modules
  1316. TotalNumberOfActivatedModules=Activated modules: <b>%s</b> / <b>%s</b>
  1317. YouMustEnableOneModule=You must at least enable 1 module
  1318. ClassNotFoundIntoPathWarning=Class %s not found in PHP path
  1319. YesInSummer=Yes in summer
  1320. OnlyFollowingModulesAreOpenedToExternalUsers=Note, only the following modules are available to external users (irrespective of the permissions of such users) and only if permissions are granted:<br>
  1321. SuhosinSessionEncrypt=Session storage encrypted by Suhosin
  1322. ConditionIsCurrently=Condition is currently %s
  1323. YouUseBestDriver=You use driver %s which is the best driver currently available.
  1324. YouDoNotUseBestDriver=You use driver %s but driver %s is recommended.
  1325. NbOfObjectIsLowerThanNoPb=You have only %s %s in the database. This does not require any particular optimization.
  1326. ComboListOptim=Combo list loading optimization
  1327. SearchOptim=Search optimization
  1328. YouHaveXObjectUseComboOptim=You have %s %s in the database. You can go into setup of module to enable loading of combo list on key pressed event.
  1329. YouHaveXObjectUseSearchOptim=You have %s %s in the database. You can add the constant %s to 1 in Home-Setup-Other.
  1330. YouHaveXObjectUseSearchOptimDesc=This limits the search to the beginning of strings which makes it possible for the database to use indexes and you should get an immediate response.
  1331. YouHaveXObjectAndSearchOptimOn=You have %s %s in the database and constant %s is set to %s in Home-Setup-Other.
  1332. BrowserIsOK=You are using the %s web browser. This browser is ok for security and performance.
  1333. BrowserIsKO=You are using the %s web browser. This browser is known to be a bad choice for security, performance and reliability. We recommend using Firefox, Chrome, Opera or Safari.
  1334. PHPModuleLoaded=PHP component %s is loaded
  1335. PreloadOPCode=Preloaded OPCode is used
  1336. AddRefInList=Display Customer/Vendor ref. info list (select list or combobox) and most of hyperlink.<br>Third Parties will appear with a name format of "CC12345 - SC45678 - The Big Company corp." instead of "The Big Company corp".
  1337. AddAdressInList=Display Customer/Vendor adress info list (select list or combobox)<br>Third Parties will appear with a name format of "The Big Company corp. - 21 jump street 123456 Big town - USA" instead of "The Big Company corp".
  1338. AddEmailPhoneTownInContactList=Display Contact email (or phones if not defined) and town info list (select list or combobox)<br>Contacts will appear with a name format of "Dupond Durand - dupond.durand@email.com - Paris" or "Dupond Durand - 06 07 59 65 66 - Paris" instead of "Dupond Durand".
  1339. AskForPreferredShippingMethod=Ask for preferred shipping method for Third Parties.
  1340. FieldEdition=Edition of field %s
  1341. FillThisOnlyIfRequired=Example: +2 (fill only if timezone offset problems are experienced)
  1342. GetBarCode=Get barcode
  1343. NumberingModules=Numbering models
  1344. DocumentModules=Document models
  1345. ##### Module password generation
  1346. PasswordGenerationStandard=Return a password generated according to internal Dolibarr algorithm: %s characters containing shared numbers and characters in lowercase.
  1347. PasswordGenerationNone=Do not suggest a generated password. Password must be typed in manually.
  1348. PasswordGenerationPerso=Return a password according to your personally defined configuration.
  1349. SetupPerso=According to your configuration
  1350. PasswordPatternDesc=Password pattern description
  1351. ##### Users setup #####
  1352. RuleForGeneratedPasswords=Rules to generate and validate passwords
  1353. DisableForgetPasswordLinkOnLogonPage=Do not show the "Password Forgotten" link on the Login page
  1354. UsersSetup=Users module setup
  1355. UserMailRequired=Email required to create a new user
  1356. UserHideInactive=Hide inactive users from all combo lists of users (Not recommended: this may means you won't be able to filter or search on old users on some pages)
  1357. UsersDocModules=Document templates for documents generated from user record
  1358. GroupsDocModules=Document templates for documents generated from a group record
  1359. ##### HRM setup #####
  1360. HRMSetup=HRM module setup
  1361. ##### Company setup #####
  1362. CompanySetup=Companies module setup
  1363. CompanyCodeChecker=Options for automatic generation of customer/vendor codes
  1364. AccountCodeManager=Options for automatic generation of customer/vendor accounting codes
  1365. NotificationsDesc=Email notifications can be sent automatically for some Dolibarr events.<br>Recipients of notifications can be defined:
  1366. NotificationsDescUser=* per user, one user at a time.
  1367. NotificationsDescContact=* per third-party contacts (customers or vendors), one contact at a time.
  1368. NotificationsDescGlobal=* or by setting global email addresses in this setup page.
  1369. ModelModules=Document Templates
  1370. DocumentModelOdt=Generate documents from OpenDocument templates (.ODT / .ODS files from LibreOffice, OpenOffice, KOffice, TextEdit,...)
  1371. WatermarkOnDraft=Watermark on draft document
  1372. JSOnPaimentBill=Activate feature to autofill payment lines on payment form
  1373. CompanyIdProfChecker=Rules for Professional IDs
  1374. MustBeUnique=Must be unique?
  1375. MustBeMandatory=Mandatory to create third parties (if VAT number or type of company defined) ?
  1376. MustBeInvoiceMandatory=Mandatory to validate invoices?
  1377. TechnicalServicesProvided=Technical services provided
  1378. #####DAV #####
  1379. WebDAVSetupDesc=This is the link to access the WebDAV directory. It contains a "public" dir open to any user knowing the URL (if public directory access allowed) and a "private" directory that needs an existing login account/password for access.
  1380. WebDavServer=Root URL of %s server: %s
  1381. ##### Webcal setup #####
  1382. WebCalUrlForVCalExport=An export link to <b>%s</b> format is available at following link: %s
  1383. ##### Invoices #####
  1384. BillsSetup=Invoices module setup
  1385. BillsNumberingModule=Invoices and credit notes numbering model
  1386. BillsPDFModules=Invoice documents models
  1387. BillsPDFModulesAccordindToInvoiceType=Invoice documents models according to invoice type
  1388. PaymentsPDFModules=Payment documents models
  1389. ForceInvoiceDate=Force invoice date to validation date
  1390. SuggestedPaymentModesIfNotDefinedInInvoice=Suggested payments mode on invoice by default if not defined on the invoice
  1391. SuggestPaymentByRIBOnAccount=Suggest payment by withdrawal on account
  1392. SuggestPaymentByChequeToAddress=Suggest payment by check to
  1393. FreeLegalTextOnInvoices=Free text on invoices
  1394. WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty)
  1395. PaymentsNumberingModule=Payments numbering model
  1396. SuppliersPayment=Vendor payments
  1397. SupplierPaymentSetup=Vendor payments setup
  1398. ##### Proposals #####
  1399. PropalSetup=Commercial proposals module setup
  1400. ProposalsNumberingModules=Commercial proposal numbering models
  1401. ProposalsPDFModules=Commercial proposal documents models
  1402. SuggestedPaymentModesIfNotDefinedInProposal=Suggested payments mode on proposal by default if not defined on the proposal
  1403. FreeLegalTextOnProposal=Free text on commercial proposals
  1404. WatermarkOnDraftProposal=Watermark on draft commercial proposals (none if empty)
  1405. BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Ask for bank account destination of proposal
  1406. ##### SupplierProposal #####
  1407. SupplierProposalSetup=Price requests suppliers module setup
  1408. SupplierProposalNumberingModules=Price requests suppliers numbering models
  1409. SupplierProposalPDFModules=Price requests suppliers documents models
  1410. FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
  1411. WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
  1412. BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
  1413. WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
  1414. ##### Suppliers Orders #####
  1415. BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER=Ask for bank account destination of purchase order
  1416. ##### Orders #####
  1417. SuggestedPaymentModesIfNotDefinedInOrder=Suggested payments mode on sale order by default if not defined on the order
  1418. OrdersSetup=Sales Orders management setup
  1419. OrdersNumberingModules=Orders numbering models
  1420. OrdersModelModule=Order documents models
  1421. FreeLegalTextOnOrders=Free text on orders
  1422. WatermarkOnDraftOrders=Watermark on draft orders (none if empty)
  1423. ShippableOrderIconInList=Add an icon in Orders list which indicate if order is shippable
  1424. BANK_ASK_PAYMENT_BANK_DURING_ORDER=Ask for bank account destination of order
  1425. ##### Interventions #####
  1426. InterventionsSetup=Interventions module setup
  1427. FreeLegalTextOnInterventions=Free text on intervention documents
  1428. FicheinterNumberingModules=Intervention numbering models
  1429. TemplatePDFInterventions=Intervention card documents models
  1430. WatermarkOnDraftInterventionCards=Watermark on intervention card documents (none if empty)
  1431. ##### Contracts #####
  1432. ContractsSetup=Contracts/Subscriptions module setup
  1433. ContractsNumberingModules=Contracts numbering modules
  1434. TemplatePDFContracts=Contracts documents models
  1435. FreeLegalTextOnContracts=Free text on contracts
  1436. WatermarkOnDraftContractCards=Watermark on draft contracts (none if empty)
  1437. ##### Members #####
  1438. MembersSetup=Members module setup
  1439. MemberMainOptions=Main options
  1440. AdherentLoginRequired= Manage a Login for each member
  1441. AdherentMailRequired=Email required to create a new member
  1442. MemberSendInformationByMailByDefault=Checkbox to send mail confirmation to members (validation or new subscription) is on by default
  1443. MemberCreateAnExternalUserForSubscriptionValidated=Create an external user login for each new member subscription validated
  1444. VisitorCanChooseItsPaymentMode=Visitor can choose from available payment modes
  1445. MEMBER_REMINDER_EMAIL=Enable automatic reminder <b>by email</b> of expired subscriptions. Note: Module <strong>%s</strong> must be enabled and correctly setup to send reminders.
  1446. MembersDocModules=Document templates for documents generated from member record
  1447. ##### LDAP setup #####
  1448. LDAPSetup=LDAP Setup
  1449. LDAPGlobalParameters=Global parameters
  1450. LDAPUsersSynchro=Users
  1451. LDAPGroupsSynchro=Groups
  1452. LDAPContactsSynchro=Contacts
  1453. LDAPMembersSynchro=Members
  1454. LDAPMembersTypesSynchro=Members types
  1455. LDAPSynchronization=LDAP synchronisation
  1456. LDAPFunctionsNotAvailableOnPHP=LDAP functions are not available on your PHP
  1457. LDAPToDolibarr=LDAP -> Dolibarr
  1458. DolibarrToLDAP=Dolibarr -> LDAP
  1459. LDAPNamingAttribute=Key in LDAP
  1460. LDAPSynchronizeUsers=Organization of users in LDAP
  1461. LDAPSynchronizeGroups=Organization of groups in LDAP
  1462. LDAPSynchronizeContacts=Organization of contacts in LDAP
  1463. LDAPSynchronizeMembers=Organization of foundation's members in LDAP
  1464. LDAPSynchronizeMembersTypes=Organization of foundation's members types in LDAP
  1465. LDAPPrimaryServer=Primary server
  1466. LDAPSecondaryServer=Secondary server
  1467. LDAPServerPort=Server port
  1468. LDAPServerPortExample=Default port: 389
  1469. LDAPServerProtocolVersion=Protocol version
  1470. LDAPServerUseTLS=Use TLS
  1471. LDAPServerUseTLSExample=Your LDAP server use TLS
  1472. LDAPServerDn=Server DN
  1473. LDAPAdminDn=Administrator DN
  1474. LDAPAdminDnExample=Complete DN (ex: cn=admin,dc=example,dc=com or cn=Administrator,cn=Users,dc=example,dc=com for active directory)
  1475. LDAPPassword=Administrator password
  1476. LDAPUserDn=Users' DN
  1477. LDAPUserDnExample=Complete DN (ex: ou=users,dc=example,dc=com)
  1478. LDAPGroupDn=Groups' DN
  1479. LDAPGroupDnExample=Complete DN (ex: ou=groups,dc=example,dc=com)
  1480. LDAPServerExample=Server address (ex: localhost, 192.168.0.2, ldaps://ldap.example.com/)
  1481. LDAPServerDnExample=Complete DN (ex: dc=example,dc=com)
  1482. LDAPDnSynchroActive=Users and groups synchronization
  1483. LDAPDnSynchroActiveExample=LDAP to Dolibarr or Dolibarr to LDAP synchronization
  1484. LDAPDnContactActive=Contacts' synchronization
  1485. LDAPDnContactActiveExample=Activated/Unactivated synchronization
  1486. LDAPDnMemberActive=Members' synchronization
  1487. LDAPDnMemberActiveExample=Activated/Unactivated synchronization
  1488. LDAPDnMemberTypeActive=Members types' synchronization
  1489. LDAPDnMemberTypeActiveExample=Activated/Unactivated synchronization
  1490. LDAPContactDn=Dolibarr contacts' DN
  1491. LDAPContactDnExample=Complete DN (ex: ou=contacts,dc=example,dc=com)
  1492. LDAPMemberDn=Dolibarr members DN
  1493. LDAPMemberDnExample=Complete DN (ex: ou=members,dc=example,dc=com)
  1494. LDAPMemberObjectClassList=List of objectClass
  1495. LDAPMemberObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory)
  1496. LDAPMemberTypeDn=Dolibarr members types DN
  1497. LDAPMemberTypepDnExample=Complete DN (ex: ou=memberstypes,dc=example,dc=com)
  1498. LDAPMemberTypeObjectClassList=List of objectClass
  1499. LDAPMemberTypeObjectClassListExample=List of objectClass defining record attributes (ex: top,groupOfUniqueNames)
  1500. LDAPUserObjectClassList=List of objectClass
  1501. LDAPUserObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory)
  1502. LDAPGroupObjectClassList=List of objectClass
  1503. LDAPGroupObjectClassListExample=List of objectClass defining record attributes (ex: top,groupOfUniqueNames)
  1504. LDAPContactObjectClassList=List of objectClass
  1505. LDAPContactObjectClassListExample=List of objectClass defining record attributes (ex: top,inetOrgPerson or top,user for active directory)
  1506. LDAPTestConnect=Test LDAP connection
  1507. LDAPTestSynchroContact=Test contacts synchronization
  1508. LDAPTestSynchroUser=Test user synchronization
  1509. LDAPTestSynchroGroup=Test group synchronization
  1510. LDAPTestSynchroMember=Test member synchronization
  1511. LDAPTestSynchroMemberType=Test member type synchronization
  1512. LDAPTestSearch= Test a LDAP search
  1513. LDAPSynchroOK=Synchronization test successful
  1514. LDAPSynchroKO=Failed synchronization test
  1515. LDAPSynchroKOMayBePermissions=Failed synchronization test. Check that the connection to the server is correctly configured and allows LDAP updates
  1516. LDAPTCPConnectOK=TCP connect to LDAP server successful (Server=%s, Port=%s)
  1517. LDAPTCPConnectKO=TCP connect to LDAP server failed (Server=%s, Port=%s)
  1518. LDAPBindOK=Connect/Authenticate to LDAP server successful (Server=%s, Port=%s, Admin=%s, Password=%s)
  1519. LDAPBindKO=Connect/Authenticate to LDAP server failed (Server=%s, Port=%s, Admin=%s, Password=%s)
  1520. LDAPSetupForVersion3=LDAP server configured for version 3
  1521. LDAPSetupForVersion2=LDAP server configured for version 2
  1522. LDAPDolibarrMapping=Dolibarr Mapping
  1523. LDAPLdapMapping=LDAP Mapping
  1524. LDAPFieldLoginUnix=Login (unix)
  1525. LDAPFieldLoginExample=Example: uid
  1526. LDAPFilterConnection=Search filter
  1527. LDAPFilterConnectionExample=Example: &(objectClass=inetOrgPerson)
  1528. LDAPGroupFilterExample=Example: &(objectClass=groupOfUsers)
  1529. LDAPFieldLoginSamba=Login (samba, activedirectory)
  1530. LDAPFieldLoginSambaExample=Example: samaccountname
  1531. LDAPFieldFullname=Full name
  1532. LDAPFieldFullnameExample=Example: cn
  1533. LDAPFieldPasswordNotCrypted=Password not encrypted
  1534. LDAPFieldPasswordCrypted=Password encrypted
  1535. LDAPFieldPasswordExample=Example: userPassword
  1536. LDAPFieldCommonNameExample=Example: cn
  1537. LDAPFieldName=Name
  1538. LDAPFieldNameExample=Example: sn
  1539. LDAPFieldFirstName=First name
  1540. LDAPFieldFirstNameExample=Example: givenName
  1541. LDAPFieldMail=Email address
  1542. LDAPFieldMailExample=Example: mail
  1543. LDAPFieldPhone=Professional phone number
  1544. LDAPFieldPhoneExample=Example: telephonenumber
  1545. LDAPFieldHomePhone=Personal phone number
  1546. LDAPFieldHomePhoneExample=Example: homephone
  1547. LDAPFieldMobile=Cellular phone
  1548. LDAPFieldMobileExample=Example: mobile
  1549. LDAPFieldFax=Fax number
  1550. LDAPFieldFaxExample=Example: facsimiletelephonenumber
  1551. LDAPFieldAddress=Street
  1552. LDAPFieldAddressExample=Example: street
  1553. LDAPFieldZip=Zip
  1554. LDAPFieldZipExample=Example: postalcode
  1555. LDAPFieldTown=Town
  1556. LDAPFieldTownExample=Example: l
  1557. LDAPFieldCountry=Country
  1558. LDAPFieldDescription=Description
  1559. LDAPFieldDescriptionExample=Example: description
  1560. LDAPFieldNotePublic=Public Note
  1561. LDAPFieldNotePublicExample=Example: publicnote
  1562. LDAPFieldGroupMembers= Group members
  1563. LDAPFieldGroupMembersExample= Example: uniqueMember
  1564. LDAPFieldBirthdate=Birthdate
  1565. LDAPFieldCompany=Company
  1566. LDAPFieldCompanyExample=Example: o
  1567. LDAPFieldSid=SID
  1568. LDAPFieldSidExample=Example: objectsid
  1569. LDAPFieldEndLastSubscription=Date of subscription end
  1570. LDAPFieldTitle=Job position
  1571. LDAPFieldTitleExample=Example: title
  1572. LDAPFieldGroupid=Group id
  1573. LDAPFieldGroupidExample=Exemple : gidnumber
  1574. LDAPFieldUserid=User id
  1575. LDAPFieldUseridExample=Exemple : uidnumber
  1576. LDAPFieldHomedirectory=Home directory
  1577. LDAPFieldHomedirectoryExample=Exemple : homedirectory
  1578. LDAPFieldHomedirectoryprefix=Home directory prefix
  1579. LDAPSetupNotComplete=LDAP setup not complete (go on others tabs)
  1580. LDAPNoUserOrPasswordProvidedAccessIsReadOnly=No administrator or password provided. LDAP access will be anonymous and in read only mode.
  1581. LDAPDescContact=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr contacts.
  1582. LDAPDescUsers=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr users.
  1583. LDAPDescGroups=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr groups.
  1584. LDAPDescMembers=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr members module.
  1585. LDAPDescMembersTypes=This page allows you to define LDAP attributes name in LDAP tree for each data found on Dolibarr members types.
  1586. LDAPDescValues=Example values are designed for <b>OpenLDAP</b> with following loaded schemas: <b>core.schema, cosine.schema, inetorgperson.schema</b>). If you use thoose values and OpenLDAP, modify your LDAP config file <b>slapd.conf</b> to have all thoose schemas loaded.
  1587. ForANonAnonymousAccess=For an authenticated access (for a write access for example)
  1588. PerfDolibarr=Performance setup/optimizing report
  1589. YouMayFindPerfAdviceHere=This page provides some checks or advice related to performance.
  1590. NotInstalled=Not installed.
  1591. NotSlowedDownByThis=Not slowed down by this.
  1592. NotRiskOfLeakWithThis=Not risk of leak with this.
  1593. ApplicativeCache=Applicative cache
  1594. MemcachedNotAvailable=No applicative cache found. You can enhance performance by installing a cache server Memcached and a module able to use this cache server.<br>More information here <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>Note that a lot of web hosting provider does not provide such cache server.
  1595. MemcachedModuleAvailableButNotSetup=Module memcached for applicative cache found but setup of module is not complete.
  1596. MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled.
  1597. OPCodeCache=OPCode cache
  1598. NoOPCodeCacheFound=No OPCode cache found. Maybe you are using an OPCode cache other than XCache or eAccelerator (good), or maybe you don't have OPCode cache (very bad).
  1599. HTTPCacheStaticResources=HTTP cache for static resources (css, img, javascript)
  1600. FilesOfTypeCached=Files of type %s are cached by HTTP server
  1601. FilesOfTypeNotCached=Files of type %s are not cached by HTTP server
  1602. FilesOfTypeCompressed=Files of type %s are compressed by HTTP server
  1603. FilesOfTypeNotCompressed=Files of type %s are not compressed by HTTP server
  1604. CacheByServer=Cache by server
  1605. CacheByServerDesc=For example using the Apache directive "ExpiresByType image/gif A2592000"
  1606. CacheByClient=Cache by browser
  1607. CompressionOfResources=Compression of HTTP responses
  1608. CompressionOfResourcesDesc=For example using the Apache directive "AddOutputFilterByType DEFLATE"
  1609. TestNotPossibleWithCurrentBrowsers=Such an automatic detection is not possible with current browsers
  1610. DefaultValuesDesc=Here you may define the default value you wish to use when creating a new record, and/or default filters or the sort order when you list records.
  1611. DefaultCreateForm=Default values (to use on forms)
  1612. DefaultSearchFilters=Default search filters
  1613. DefaultSortOrder=Default sort orders
  1614. DefaultFocus=Default focus fields
  1615. DefaultMandatory=Mandatory form fields
  1616. ##### Products #####
  1617. ProductSetup=Products module setup
  1618. ServiceSetup=Services module setup
  1619. ProductServiceSetup=Products and Services modules setup
  1620. NumberOfProductShowInSelect=Maximum number of products to show in combo select lists (0=no limit)
  1621. ViewProductDescInFormAbility=Display product descriptions in forms (otherwise shown in a tooltip popup)
  1622. DoNotAddProductDescAtAddLines=Do not add product description (from product card) on submit add lines on forms
  1623. OnProductSelectAddProductDesc=How to use the description of the products when adding a product as a line of a document
  1624. AutoFillFormFieldBeforeSubmit=Auto fill the description input field with the description of product
  1625. DoNotAutofillButAutoConcat=Do not autofill the input field with description of product. Description of the product will be concatenated to the entered description automatically.
  1626. DoNotUseDescriptionOfProdut=Description of the product will never be included into the description of lines of documents
  1627. MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
  1628. ViewProductDescInThirdpartyLanguageAbility=Display products descriptions in forms in the language of the third party (otherwise in the language of the user)
  1629. UseSearchToSelectProductTooltip=Also if you have a large number of products (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
  1630. UseSearchToSelectProduct=Wait until you press a key before loading content of product combo list (This may increase performance if you have a large number of products, but it is less convenient)
  1631. SetDefaultBarcodeTypeProducts=Default barcode type to use for products
  1632. SetDefaultBarcodeTypeThirdParties=Default barcode type to use for third parties
  1633. UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
  1634. ProductCodeChecker= Module for product code generation and checking (product or service)
  1635. ProductOtherConf= Product / Service configuration
  1636. IsNotADir=is not a directory!
  1637. ##### Syslog #####
  1638. SyslogSetup=Logs module setup
  1639. SyslogOutput=Logs outputs
  1640. SyslogFacility=Facility
  1641. SyslogLevel=Level
  1642. SyslogFilename=File name and path
  1643. YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in Dolibarr "documents" directory. You can set a different path to store this file.
  1644. ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
  1645. OnlyWindowsLOG_USER=On Windows, only the LOG_USER facility will be supported
  1646. CompressSyslogs=Compression and backup of debug log files (generated by module Log for debug)
  1647. SyslogFileNumberOfSaves=Number of backup logs to keep
  1648. ConfigureCleaningCronjobToSetFrequencyOfSaves=Configure cleaning scheduled job to set log backup frequency
  1649. ##### Donations #####
  1650. DonationsSetup=Donation module setup
  1651. DonationsReceiptModel=Template of donation receipt
  1652. ##### Barcode #####
  1653. BarcodeSetup=Barcode setup
  1654. PaperFormatModule=Print format module
  1655. BarcodeEncodeModule=Barcode encoding type
  1656. CodeBarGenerator=Barcode generator
  1657. ChooseABarCode=No generator defined
  1658. FormatNotSupportedByGenerator=Format not supported by this generator
  1659. BarcodeDescEAN8=Barcode of type EAN8
  1660. BarcodeDescEAN13=Barcode of type EAN13
  1661. BarcodeDescUPC=Barcode of type UPC
  1662. BarcodeDescISBN=Barcode of type ISBN
  1663. BarcodeDescC39=Barcode of type C39
  1664. BarcodeDescC128=Barcode of type C128
  1665. BarcodeDescDATAMATRIX=Barcode of type Datamatrix
  1666. BarcodeDescQRCODE=Barcode of type QR code
  1667. GenbarcodeLocation=Bar code generation command line tool (used by internal engine for some bar code types). Must be compatible with "genbarcode".<br>For example: /usr/local/bin/genbarcode
  1668. BarcodeInternalEngine=Internal engine
  1669. BarCodeNumberManager=Manager to auto define barcode numbers
  1670. ##### Prelevements #####
  1671. WithdrawalsSetup=Setup of module Direct Debit payments
  1672. ##### ExternalRSS #####
  1673. ExternalRSSSetup=External RSS imports setup
  1674. NewRSS=New RSS Feed
  1675. RSSUrl=RSS URL
  1676. RSSUrlExample=An interesting RSS feed
  1677. ##### Mailing #####
  1678. MailingSetup=EMailing module setup
  1679. MailingEMailFrom=Sender email (From) for emails sent by emailing module
  1680. MailingEMailError=Return Email (Errors-to) for emails with errors
  1681. MailingDelay=Seconds to wait after sending next message
  1682. ##### Notification #####
  1683. NotificationSetup=Email Notification module setup
  1684. NotificationEMailFrom=Sender email (From) for emails sent by the Notifications module
  1685. FixedEmailTarget=Recipient
  1686. ##### Sendings #####
  1687. SendingsSetup=Shipping module setup
  1688. SendingsReceiptModel=Sending receipt model
  1689. SendingsNumberingModules=Sendings numbering modules
  1690. SendingsAbility=Support shipping sheets for customer deliveries
  1691. NoNeedForDeliveryReceipts=In most cases, shipping sheets are used both as sheets for customer deliveries (list of products to send) and sheets that are received and signed by customer. Hence the product deliveries receipt is a duplicated feature and is rarely activated.
  1692. FreeLegalTextOnShippings=Free text on shipments
  1693. ##### Deliveries #####
  1694. DeliveryOrderNumberingModules=Products deliveries receipt numbering module
  1695. DeliveryOrderModel=Products deliveries receipt model
  1696. DeliveriesOrderAbility=Support products deliveries receipts
  1697. FreeLegalTextOnDeliveryReceipts=Free text on delivery receipts
  1698. ##### FCKeditor #####
  1699. AdvancedEditor=Advanced editor
  1700. ActivateFCKeditor=Activate advanced editor for:
  1701. FCKeditorForCompany=WYSIWIG creation/edition of elements description and note (except products/services)
  1702. FCKeditorForProduct=WYSIWIG creation/edition of products/services description and note
  1703. FCKeditorForProductDetails=WYSIWIG creation/edition of products details lines for all entities (proposals, orders, invoices, etc...). <span class="warning">Warning: Using this option for this case is seriously not recommended as it can create problems with special characters and page formatting when building PDF files.</span>
  1704. FCKeditorForMailing= WYSIWIG creation/edition for mass eMailings (Tools->eMailing)
  1705. FCKeditorForUserSignature=WYSIWIG creation/edition of user signature
  1706. FCKeditorForMail=WYSIWIG creation/edition for all mail (except Tools->eMailing)
  1707. FCKeditorForTicket=WYSIWIG creation/edition for tickets
  1708. ##### Stock #####
  1709. StockSetup=Stock module setup
  1710. IfYouUsePointOfSaleCheckModule=If you use the Point of Sale module (POS) provided by default or an external module, this setup may be ignored by your POS module. Most POS modules are designed by default to create an invoice immediately and decrease stock irrespective of the options here. So if you need or not to have a stock decrease when registering a sale from your POS, check also your POS module setup.
  1711. ##### Menu #####
  1712. MenuDeleted=Menu deleted
  1713. Menu=Menu
  1714. Menus=Menus
  1715. TreeMenuPersonalized=Personalized menus
  1716. NotTopTreeMenuPersonalized=Personalized menus not linked to a top menu entry
  1717. NewMenu=New menu
  1718. MenuHandler=Menu handler
  1719. MenuModule=Source module
  1720. HideUnauthorizedMenu=Hide unauthorized menus also for internal users (just greyed otherwise)
  1721. DetailId=Id menu
  1722. DetailMenuHandler=Menu handler where to show new menu
  1723. DetailMenuModule=Module name if menu entry come from a module
  1724. DetailType=Type of menu (top or left)
  1725. DetailTitre=Menu label or label code for translation
  1726. DetailUrl=URL where menu send you (Absolute URL link or external link with http://)
  1727. DetailEnabled=Condition to show or not entry
  1728. DetailRight=Condition to display unauthorized grey menus
  1729. DetailLangs=Lang file name for label code translation
  1730. DetailUser=Intern / Extern / All
  1731. Target=Target
  1732. DetailTarget=Target for links (_blank top opens a new window)
  1733. DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu)
  1734. ModifMenu=Menu change
  1735. DeleteMenu=Delete menu entry
  1736. ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b>?
  1737. FailedToInitializeMenu=Failed to initialize menu
  1738. ##### Tax #####
  1739. TaxSetup=Taxes, social or fiscal taxes and dividends module setup
  1740. OptionVatMode=VAT due
  1741. OptionVATDefault=Standard basis
  1742. OptionVATDebitOption=Accrual basis
  1743. OptionVatDefaultDesc=VAT is due:<br>- on delivery of goods (based on invoice date)<br>- on payments for services
  1744. OptionVatDebitOptionDesc=VAT is due:<br>- on delivery of goods (based on invoice date)<br>- on invoice (debit) for services
  1745. OptionPaymentForProductAndServices=Cash basis for products and services
  1746. OptionPaymentForProductAndServicesDesc=VAT is due:<br>- on payment for goods<br>- on payments for services
  1747. SummaryOfVatExigibilityUsedByDefault=Time of VAT eligibility by default according to chosen option:
  1748. OnDelivery=On delivery
  1749. OnPayment=On payment
  1750. OnInvoice=On invoice
  1751. SupposedToBePaymentDate=Payment date used
  1752. SupposedToBeInvoiceDate=Invoice date used
  1753. Buy=Buy
  1754. Sell=Sell
  1755. InvoiceDateUsed=Invoice date used
  1756. YourCompanyDoesNotUseVAT=Your company has been defined to not use VAT (Home - Setup - Company/Organization), so there is no VAT options to setup.
  1757. AccountancyCode=Accounting Code
  1758. AccountancyCodeSell=Sale account. code
  1759. AccountancyCodeBuy=Purchase account. code
  1760. CREATE_NEW_VAT_WITHOUT_AUTO_PAYMENT=Keep the checkbox “Automatically create the payment” empty by default when creating a new tax
  1761. ##### Agenda #####
  1762. AgendaSetup=Events and agenda module setup
  1763. PasswordTogetVCalExport=Key to authorize export link
  1764. SecurityKey = Security Key
  1765. PastDelayVCalExport=Do not export event older than
  1766. AGENDA_USE_EVENT_TYPE=Use events types (managed in menu Setup -> Dictionaries -> Type of agenda events)
  1767. AGENDA_USE_EVENT_TYPE_DEFAULT=Automatically set this default value for type of event in event create form
  1768. AGENDA_DEFAULT_FILTER_TYPE=Automatically set this type of event in search filter of agenda view
  1769. AGENDA_DEFAULT_FILTER_STATUS=Automatically set this status for events in search filter of agenda view
  1770. AGENDA_DEFAULT_VIEW=Which view do you want to open by default when selecting menu Agenda
  1771. AGENDA_REMINDER_BROWSER=Enable event reminder <b>on user's browser</b> (When remind date is reached, a popup is shown by the browser. Each user can disable such notifications from its browser notification setup).
  1772. AGENDA_REMINDER_BROWSER_SOUND=Enable sound notification
  1773. AGENDA_REMINDER_EMAIL=Enable event reminder <b>by emails</b> (remind option/delay can be defined on each event).
  1774. AGENDA_REMINDER_EMAIL_NOTE=Note: The frequency of the scheduled job %s must be enough to be sure that the remind are sent at the correct moment.
  1775. AGENDA_SHOW_LINKED_OBJECT=Show linked object into agenda view
  1776. ##### Clicktodial #####
  1777. ClickToDialSetup=Click To Dial module setup
  1778. ClickToDialUrlDesc=Url called when a click on phone picto is done. In URL, you can use tags<br><b>__PHONETO__</b> that will be replaced with the phone number of person to call<br><b>__PHONEFROM__</b> that will be replaced with phone number of calling person (yours)<br><b>__LOGIN__</b> that will be replaced with clicktodial login (defined on user card)<br><b>__PASS__</b> that will be replaced with clicktodial password (defined on user card).
  1779. ClickToDialDesc=This module change phone numbers, when using a desktop computer, into clickable links. A click will call the number. This can be used to start the phone call when using a soft phone on your desktop or when using a CTI system based on SIP protocol for example. Note: When using a smartphone, phone numbers are always clickable.
  1780. ClickToDialUseTelLink=Use just a link "tel:" on phone numbers
  1781. ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface, installed on the same computer as the browser, and called when you click on a link starting with "tel:" in your browser. If you need link that start with "sip:" or a full server solution (no need of local software installation), you must set this to "No" and fill next field.
  1782. ##### Point Of Sale (CashDesk) #####
  1783. CashDesk=Point of Sale
  1784. CashDeskSetup=Point of Sales module setup
  1785. CashDeskThirdPartyForSell=Default generic third party to use for sales
  1786. CashDeskBankAccountForSell=Default account to use to receive cash payments
  1787. CashDeskBankAccountForCheque=Default account to use to receive payments by check
  1788. CashDeskBankAccountForCB=Default account to use to receive payments by credit cards
  1789. CashDeskBankAccountForSumup=Default bank account to use to receive payments by SumUp
  1790. CashDeskDoNotDecreaseStock=Disable stock decrease when a sale is done from Point of Sale (if "no", stock decrease is done for each sale done from POS, irrespective of the option set in module Stock).
  1791. CashDeskIdWareHouse=Force and restrict warehouse to use for stock decrease
  1792. StockDecreaseForPointOfSaleDisabled=Stock decrease from Point of Sale disabled
  1793. StockDecreaseForPointOfSaleDisabledbyBatch=Stock decrease in POS is not compatible with module Serial/Lot management (currently active) so stock decrease is disabled.
  1794. CashDeskYouDidNotDisableStockDecease=You did not disable stock decrease when making a sale from Point of Sale. Hence a warehouse is required.
  1795. CashDeskForceDecreaseStockLabel=Stock decrease for batch products was forced.
  1796. CashDeskForceDecreaseStockDesc=Decrease first by the oldest eatby and sellby dates.
  1797. CashDeskReaderKeyCodeForEnter=Key code for "Enter" defined in barcode reader (Example: 13)
  1798. ##### Bookmark #####
  1799. BookmarkSetup=Bookmark module setup
  1800. BookmarkDesc=This module allows you to manage bookmarks. You can also add shortcuts to any Dolibarr pages or external web sites on your left menu.
  1801. NbOfBoomarkToShow=Maximum number of bookmarks to show in left menu
  1802. ##### WebServices #####
  1803. WebServicesSetup=Webservices module setup
  1804. WebServicesDesc=By enabling this module, Dolibarr become a web service server to provide miscellaneous web services.
  1805. WSDLCanBeDownloadedHere=WSDL descriptor files of provided services can be download here
  1806. EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint available at URL
  1807. ##### API ####
  1808. ApiSetup=API module setup
  1809. ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
  1810. ApiProductionMode=Enable production mode (this will activate use of a cache for services management)
  1811. ApiExporerIs=You can explore and test the APIs at URL
  1812. OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed
  1813. ApiKey=Key for API
  1814. WarningAPIExplorerDisabled=The API explorer has been disabled. API explorer is not required to provide API services. It is a tool for developer to find/test REST APIs. If you need this tool, go into setup of module API REST to activate it.
  1815. ##### Bank #####
  1816. BankSetupModule=Bank module setup
  1817. FreeLegalTextOnChequeReceipts=Free text on check receipts
  1818. BankOrderShow=Display order of bank accounts for countries using "detailed bank number"
  1819. BankOrderGlobal=General
  1820. BankOrderGlobalDesc=General display order
  1821. BankOrderES=Spanish
  1822. BankOrderESDesc=Spanish display order
  1823. ChequeReceiptsNumberingModule=Check Receipts Numbering Module
  1824. ##### Multicompany #####
  1825. MultiCompanySetup=Multi-company module setup
  1826. ##### Suppliers #####
  1827. SuppliersSetup=Vendor module setup
  1828. SuppliersCommandModel=Complete template of Purchase Order
  1829. SuppliersCommandModelMuscadet=Complete template of Purchase Order (old implementation of cornas template)
  1830. SuppliersInvoiceModel=Complete template of Vendor Invoice
  1831. SuppliersInvoiceNumberingModel=Vendor invoices numbering models
  1832. IfSetToYesDontForgetPermission=If set to a non null value, don't forget to provide permissions to groups or users allowed for the second approval
  1833. ##### GeoIPMaxmind #####
  1834. GeoIPMaxmindSetup=GeoIP Maxmind module setup
  1835. PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoLite2-Country.mmdb
  1836. NoteOnPathLocation=Note that your ip to country data file must be inside a directory your PHP can read (Check your PHP open_basedir setup and filesystem permissions).
  1837. YouCanDownloadFreeDatFileTo=You can download a <b>free demo version</b> of the Maxmind GeoIP country file at %s.
  1838. YouCanDownloadAdvancedDatFileTo=You can also download a more <b>complete version, with updates,</b> of the Maxmind GeoIP country file at %s.
  1839. TestGeoIPResult=Test of a conversion IP -> country
  1840. ##### Projects #####
  1841. ProjectsNumberingModules=Projects numbering module
  1842. ProjectsSetup=Project module setup
  1843. ProjectsModelModule=Project reports document model
  1844. TasksNumberingModules=Tasks numbering module
  1845. TaskModelModule=Tasks reports document model
  1846. UseSearchToSelectProject=Wait until a key is pressed before loading content of Project combo list.<br>This may improve performance if you have a large number of projects, but it is less convenient.
  1847. ##### ECM (GED) #####
  1848. ##### Fiscal Year #####
  1849. AccountingPeriods=Accounting periods
  1850. AccountingPeriodCard=Accounting period
  1851. NewFiscalYear=New accounting period
  1852. OpenFiscalYear=Open accounting period
  1853. CloseFiscalYear=Close accounting period
  1854. DeleteFiscalYear=Delete accounting period
  1855. ConfirmDeleteFiscalYear=Are you sure to delete this accounting period?
  1856. ShowFiscalYear=Show accounting period
  1857. AlwaysEditable=Can always be edited
  1858. MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
  1859. NbMajMin=Minimum number of uppercase characters
  1860. NbNumMin=Minimum number of numeric characters
  1861. NbSpeMin=Minimum number of special characters
  1862. NbIteConsecutive=Maximum number of repeating same characters
  1863. NoAmbiCaracAutoGeneration=Do not use ambiguous characters ("1","l","i","|","0","O") for automatic generation
  1864. SalariesSetup=Setup of module salaries
  1865. SortOrder=Sort order
  1866. Format=Format
  1867. TypePaymentDesc=0:Customer payment type, 1:Vendor payment type, 2:Both customers and suppliers payment type
  1868. IncludePath=Include path (defined into variable %s)
  1869. ExpenseReportsSetup=Setup of module Expense Reports
  1870. TemplatePDFExpenseReports=Document templates to generate expense report document
  1871. ExpenseReportsRulesSetup=Setup of module Expense Reports - Rules
  1872. ExpenseReportNumberingModules=Expense reports numbering module
  1873. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
  1874. YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for email notifications by enabling and configuring the module "Notification".
  1875. ListOfNotificationsPerUser=List of automatic notifications per user*
  1876. ListOfNotificationsPerUserOrContact=List of possible automatic notifications (on business event) available per user* or per contact**
  1877. ListOfFixedNotifications=List of automatic fixed notifications
  1878. GoOntoUserCardToAddMore=Go to the tab "Notifications" of a user to add or remove notifications for users
  1879. GoOntoContactCardToAddMore=Go to the tab "Notifications" of a third party to add or remove notifications for contacts/addresses
  1880. Threshold=Threshold
  1881. BackupDumpWizard=Wizard to build the database dump file
  1882. BackupZipWizard=Wizard to build the archive of documents directory
  1883. SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
  1884. SomethingMakeInstallFromWebNotPossible2=For this reason, process to upgrade described here is a manual process only a privileged user may perform.
  1885. InstallModuleFromWebHasBeenDisabledByFile=Install of external module from application has been disabled by your administrator. You must ask him to remove the file <strong>%s</strong> to allow this feature.
  1886. ConfFileMustContainCustom=Installing or building an external module from application need to save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to add the 2 directive lines:<br><strong>$dolibarr_main_url_root_alt='/custom';</strong><br><strong>$dolibarr_main_document_root_alt='%s/custom';</strong>
  1887. HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
  1888. HighlightLinesColor=Highlight color of the line when the mouse passes over (use 'ffffff' for no highlight)
  1889. HighlightLinesChecked=Highlight color of the line when it is checked (use 'ffffff' for no highlight)
  1890. TextTitleColor=Text color of Page title
  1891. LinkColor=Color of links
  1892. PressF5AfterChangingThis=Press CTRL+F5 on keyboard or clear your browser cache after changing this value to have it effective
  1893. NotSupportedByAllThemes=Will works with core themes, may not be supported by external themes
  1894. BackgroundColor=Background color
  1895. TopMenuBackgroundColor=Background color for Top menu
  1896. TopMenuDisableImages=Hide images in Top menu
  1897. LeftMenuBackgroundColor=Background color for Left menu
  1898. BackgroundTableTitleColor=Background color for Table title line
  1899. BackgroundTableTitleTextColor=Text color for Table title line
  1900. BackgroundTableTitleTextlinkColor=Text color for Table title link line
  1901. BackgroundTableLineOddColor=Background color for odd table lines
  1902. BackgroundTableLineEvenColor=Background color for even table lines
  1903. MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay)
  1904. NbAddedAutomatically=Number of days added to counters of users (automatically) each month
  1905. EnterAnyCode=This field contains a reference to identify the line. Enter any value of your choice, but without special characters.
  1906. Enter0or1=Enter 0 or 1
  1907. UnicodeCurrency=Enter here between braces, list of byte number that represent the currency symbol. For example: for $, enter [36] - for brazil real R$ [82,36] - for €, enter [8364]
  1908. ColorFormat=The RGB color is in HEX format, eg: FF0000
  1909. PictoHelp=Icon name in dolibarr format ('image.png' if into the current theme directory, 'image.png@nom_du_module' if into the directory /img/ of a module)
  1910. PositionIntoComboList=Position of line into combo lists
  1911. SellTaxRate=Sale tax rate
  1912. RecuperableOnly=Yes for VAT "Not Perceived but Recoverable" dedicated for some state in France. Keep value to "No" in all other cases.
  1913. UrlTrackingDesc=If the provider or transport service offers a page or web site to check the status of your shipments, you may enter it here. You can use the key {TRACKID} in the URL parameters so the system will replace it with the tracking number the user entered into the shipment card.
  1914. OpportunityPercent=When you create a lead, you will define an estimated amount of project/lead. According to status of the lead, this amount may be multiplied by this rate to evaluate a total amount all your leads may generate. Value is a percentage (between 0 and 100).
  1915. TemplateForElement=This template record is dedicated to which element
  1916. TypeOfTemplate=Type of template
  1917. TemplateIsVisibleByOwnerOnly=Template is visible to owner only
  1918. VisibleEverywhere=Visible everywhere
  1919. VisibleNowhere=Visible nowhere
  1920. FixTZ=TimeZone fix
  1921. FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced)
  1922. ExpectedChecksum=Expected Checksum
  1923. CurrentChecksum=Current Checksum
  1924. ExpectedSize=Expected size
  1925. CurrentSize=Current size
  1926. ForcedConstants=Required constant values
  1927. MailToSendProposal=Customer proposals
  1928. MailToSendOrder=Sales orders
  1929. MailToSendInvoice=Customer invoices
  1930. MailToSendShipment=Shipments
  1931. MailToSendIntervention=Interventions
  1932. MailToSendSupplierRequestForQuotation=Quotation request
  1933. MailToSendSupplierOrder=Purchase orders
  1934. MailToSendSupplierInvoice=Vendor invoices
  1935. MailToSendContract=Contracts
  1936. MailToSendReception=Receptions
  1937. MailToThirdparty=Third parties
  1938. MailToMember=Members
  1939. MailToUser=Users
  1940. MailToProject=Projects
  1941. MailToTicket=Tickets
  1942. ByDefaultInList=Show by default on list view
  1943. YouUseLastStableVersion=You use the latest stable version
  1944. TitleExampleForMajorRelease=Example of message you can use to announce this major release (feel free to use it on your web sites)
  1945. TitleExampleForMaintenanceRelease=Example of message you can use to announce this maintenance release (feel free to use it on your web sites)
  1946. ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s is available. Version %s is a major release with a lot of new features for both users and developers. You can download it from the download area of https://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
  1947. ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s is available. Version %s is a maintenance version, so contains only bug fixes. We recommend all users to upgrade to this version. A maintenance release does not introduce new features or changes to the database. You may download it from the download area of https://www.dolibarr.org portal (subdirectory Stable versions). You can read the <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
  1948. MultiPriceRuleDesc=When option "Several levels of prices per product/service" is enabled, you can define different prices (one per price level) for each product. To save you time, here you may enter a rule to autocalculate a price for each level based on the price of the first level, so you will have to only enter a price for the first level for each product. This page is designed to save you time but is useful only if your prices for each level are relative to first level. You can ignore this page in most cases.
  1949. ModelModulesProduct=Templates for product documents
  1950. WarehouseModelModules=Templates for documents of warehouses
  1951. ToGenerateCodeDefineAutomaticRuleFirst=To be able to generate codes automatically, you must first define a manager to auto-define the barcode number.
  1952. SeeSubstitutionVars=See * note for list of possible substitution variables
  1953. SeeChangeLog=See ChangeLog file (english only)
  1954. AllPublishers=All publishers
  1955. UnknownPublishers=Unknown publishers
  1956. AddRemoveTabs=Add or remove tabs
  1957. AddDataTables=Add object tables
  1958. AddDictionaries=Add dictionaries tables
  1959. AddData=Add objects or dictionaries data
  1960. AddBoxes=Add widgets
  1961. AddSheduledJobs=Add scheduled jobs
  1962. AddHooks=Add hooks
  1963. AddTriggers=Add triggers
  1964. AddMenus=Add menus
  1965. AddPermissions=Add permissions
  1966. AddExportProfiles=Add export profiles
  1967. AddImportProfiles=Add import profiles
  1968. AddOtherPagesOrServices=Add other pages or services
  1969. AddModels=Add document or numbering templates
  1970. AddSubstitutions=Add keys substitutions
  1971. DetectionNotPossible=Detection not possible
  1972. UrlToGetKeyToUseAPIs=Url to get token to use API (once token has been received it is saved in database user table and must be provided on each API call)
  1973. ListOfAvailableAPIs=List of available APIs
  1974. activateModuleDependNotSatisfied=Module "%s" depends on module "%s", that is missing, so module "%1$s" may not work correctly. Please install module "%2$s" or disable module "%1$s" if you want to be safe from any surprise
  1975. CommandIsNotInsideAllowedCommands=The command you are trying to run is not in the list of allowed commands defined in parameter <strong>$dolibarr_main_restrict_os_commands</strong> in the <strong>conf.php</strong> file.
  1976. LandingPage=Landing page
  1977. SamePriceAlsoForSharedCompanies=If you use a multicompany module, with the choice "Single price", the price will also be the same for all companies if products are shared between environments
  1978. ModuleEnabledAdminMustCheckRights=Module has been activated. Permissions for activated module(s) were given to admin users only. You may need to grant permissions to other users or groups manually if necessary.
  1979. UserHasNoPermissions=This user has no permissions defined
  1980. TypeCdr=Use "None" if the date of payment term is date of invoice plus a delta in days (delta is field "%s")<br>Use "At end of month", if, after delta, the date must be increased to reach the end of month (+ an optional "%s" in days)<br>Use "Current/Next" to have payment term date being the first Nth of the month after delta (delta is field "%s", N is stored into field "%s")
  1981. BaseCurrency=Reference currency of the company (go into setup of company to change this)
  1982. WarningNoteModuleInvoiceForFrenchLaw=This module %s is compliant with French laws (Loi Finance 2016).
  1983. WarningNoteModulePOSForFrenchLaw=This module %s is compliant with French laws (Loi Finance 2016) because module Non Reversible Logs is automatically activated.
  1984. WarningInstallationMayBecomeNotCompliantWithLaw=You are trying to install module %s that is an external module. Activating an external module means you trust the publisher of that module and that you are sure that this module does not adversely impact the behavior of your application, and is compliant with laws of your country (%s). If the module introduces an illegal feature, you become responsible for the use of illegal software.
  1985. MAIN_PDF_MARGIN_LEFT=Left margin on PDF
  1986. MAIN_PDF_MARGIN_RIGHT=Right margin on PDF
  1987. MAIN_PDF_MARGIN_TOP=Top margin on PDF
  1988. MAIN_PDF_MARGIN_BOTTOM=Bottom margin on PDF
  1989. MAIN_DOCUMENTS_LOGO_HEIGHT=Height for logo on PDF
  1990. MAIN_GENERATE_PROPOSALS_WITH_PICTURE=Add picture on proposal line
  1991. MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING=Add electronic sign in PDF
  1992. NothingToSetup=There is no specific setup required for this module.
  1993. SetToYesIfGroupIsComputationOfOtherGroups=Set this to yes if this group is a computation of other groups
  1994. EnterCalculationRuleIfPreviousFieldIsYes=Enter calculation rule if previous field was set to Yes.<br>For example:<br>CODEGRP1+CODEGRP2
  1995. SeveralLangugeVariatFound=Several language variants found
  1996. RemoveSpecialChars=Remove special characters
  1997. COMPANY_AQUARIUM_CLEAN_REGEX=Regex filter to clean value (COMPANY_AQUARIUM_CLEAN_REGEX)
  1998. COMPANY_DIGITARIA_CLEAN_REGEX=Regex filter to clean value (COMPANY_DIGITARIA_CLEAN_REGEX)
  1999. COMPANY_DIGITARIA_UNIQUE_CODE=Duplicate not allowed
  2000. GDPRContact=Data Protection Officer (DPO, Data Privacy or GDPR contact)
  2001. GDPRContactDesc=If you store data about European companies/citizens, you can name the contact who is responsible for the General Data Protection Regulation here
  2002. HelpOnTooltip=Help text to show on tooltip
  2003. HelpOnTooltipDesc=Put text or a translation key here for the text to show in a tooltip when this field appears in a form
  2004. YouCanDeleteFileOnServerWith=You can delete this file on the server with Command Line:<br>%s
  2005. ChartLoaded=Chart of account loaded
  2006. SocialNetworkSetup=Setup of module Social Networks
  2007. EnableFeatureFor=Enable features for <strong>%s</strong>
  2008. VATIsUsedIsOff=Note: The option to use Sales Tax or VAT has been set to <strong>Off</strong> in the menu %s - %s, so Sales tax or Vat used will always be 0 for sales.
  2009. SwapSenderAndRecipientOnPDF=Swap sender and recipient address position on PDF documents
  2010. FeatureSupportedOnTextFieldsOnly=Warning, feature supported on text fields and combo lists only. Also an URL parameter action=create or action=edit must be set OR page name must end with 'new.php' to trigger this feature.
  2011. EmailCollector=Email collector
  2012. EmailCollectorDescription=Add a scheduled job and a setup page to scan regularly email boxes (using IMAP protocol) and record emails received into your application, at the right place and/or create some records automatically (like leads).
  2013. NewEmailCollector=New Email Collector
  2014. EMailHost=Host of email IMAP server
  2015. MailboxSourceDirectory=Mailbox source directory
  2016. MailboxTargetDirectory=Mailbox target directory
  2017. EmailcollectorOperations=Operations to do by collector
  2018. EmailcollectorOperationsDesc=Operations are executed from top to bottom order
  2019. MaxEmailCollectPerCollect=Max number of emails collected per collect
  2020. CollectNow=Collect now
  2021. ConfirmCloneEmailCollector=Are you sure you want to clone the Email collector %s ?
  2022. DateLastCollectResult=Date of latest collect try
  2023. DateLastcollectResultOk=Date of latest collect success
  2024. LastResult=Latest result
  2025. EmailCollectorConfirmCollectTitle=Email collect confirmation
  2026. EmailCollectorConfirmCollect=Do you want to run the collection for this collector now ?
  2027. NoNewEmailToProcess=No new email (matching filters) to process
  2028. NothingProcessed=Nothing done
  2029. XEmailsDoneYActionsDone=%s emails qualified, %s emails successfully processed (for %s record/actions done)
  2030. RecordEvent=Record email event
  2031. CreateLeadAndThirdParty=Create lead (and third party if necessary)
  2032. CreateTicketAndThirdParty=Create ticket (and link to third party if it was loaded by a previous operation)
  2033. CodeLastResult=Latest result code
  2034. NbOfEmailsInInbox=Number of emails in source directory
  2035. LoadThirdPartyFromName=Load third party searching on %s (load only)
  2036. LoadThirdPartyFromNameOrCreate=Load third party searching on %s (create if not found)
  2037. WithDolTrackingID=Message from a conversation initiated by a first email sent from Dolibarr
  2038. WithoutDolTrackingID=Message from a conversation initiated by a first email NOT sent from Dolibarr
  2039. WithDolTrackingIDInMsgId=Message sent from Dolibarr
  2040. WithoutDolTrackingIDInMsgId=Message NOT sent from Dolibarr
  2041. CreateCandidature=Create job application
  2042. FormatZip=Zip
  2043. MainMenuCode=Menu entry code (mainmenu)
  2044. ECMAutoTree=Show automatic ECM tree
  2045. OperationParamDesc=Define the values to use for the object of the action, or how to extract values. For example:<br>objproperty1=SET:the value to set<br>objproperty2=SET:a value with replacement of __objproperty1__<br>objproperty3=SETIFEMPTY:value used if objproperty3 is not already defined<br>objproperty4=EXTRACT:HEADER:X-Myheaderkey:\s*([^\s]*)<br>options_myextrafield1=EXTRACT:SUBJECT:([^&#92;n]*)<br>object.objproperty5=EXTRACT:BODY:My company name is\s([^\s]*)<br><br>Use a ; char as separator to extract or set several properties.
  2046. OpeningHours=Opening hours
  2047. OpeningHoursDesc=Enter here the regular opening hours of your company.
  2048. ResourceSetup=Configuration of Resource module
  2049. UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list).
  2050. DisabledResourceLinkUser=Disable feature to link a resource to users
  2051. DisabledResourceLinkContact=Disable feature to link a resource to contacts
  2052. EnableResourceUsedInEventCheck=Enable feature to check if a resource is in use in an event
  2053. ConfirmUnactivation=Confirm module reset
  2054. OnMobileOnly=On small screen (smartphone) only
  2055. DisableProspectCustomerType=Disable the "Prospect + Customer" third party type (so third party must be "Prospect" or "Customer", but can't be both)
  2056. MAIN_OPTIMIZEFORTEXTBROWSER=Simplify interface for blind person
  2057. MAIN_OPTIMIZEFORTEXTBROWSERDesc=Enable this option if you are a blind person, or if you use the application from a text browser like Lynx or Links.
  2058. MAIN_OPTIMIZEFORCOLORBLIND=Change interface's color for color blind person
  2059. MAIN_OPTIMIZEFORCOLORBLINDDesc=Enable this option if you are a color blind person, in some case interface will change color setup to increase contrast.
  2060. Protanopia=Protanopia
  2061. Deuteranopes=Deuteranopes
  2062. Tritanopes=Tritanopes
  2063. ThisValueCanOverwrittenOnUserLevel=This value can be overwritten by each user from its user page - tab '%s'
  2064. DefaultCustomerType=Default thirdparty type for "New customer" creation form
  2065. ABankAccountMustBeDefinedOnPaymentModeSetup=Note: The bank account must be defined on the module of each payment mode (Paypal, Stripe, ...) to have this feature working.
  2066. RootCategoryForProductsToSell=Root category of products to sell
  2067. RootCategoryForProductsToSellDesc=If defined, only products inside this category or childs of this category will be available in the Point Of Sale
  2068. DebugBar=Debug Bar
  2069. DebugBarDesc=Toolbar that comes with a plenty of tools to simplify debugging
  2070. DebugBarSetup=DebugBar Setup
  2071. GeneralOptions=General Options
  2072. LogsLinesNumber=Number of lines to show on logs tab
  2073. UseDebugBar=Use the debug bar
  2074. DEBUGBAR_LOGS_LINES_NUMBER=Number of last log lines to keep in console
  2075. WarningValueHigherSlowsDramaticalyOutput=Warning, higher values slows dramaticaly output
  2076. ModuleActivated=Module %s is activated and slows the interface
  2077. ModuleActivatedWithTooHighLogLevel=Module %s is activated with a too high logging level (try to use a lower level for better performances and security)
  2078. ModuleSyslogActivatedButLevelNotTooVerbose=Module %s is activated and log level (%s) is correct (not too verbose)
  2079. IfYouAreOnAProductionSetThis=If you are on a production environment, you should set this property to %s.
  2080. AntivirusEnabledOnUpload=Antivirus enabled on uploaded files
  2081. SomeFilesOrDirInRootAreWritable=Some files or directories are not in a read-only mode
  2082. EXPORTS_SHARE_MODELS=Export models are share with everybody
  2083. ExportSetup=Setup of module Export
  2084. ImportSetup=Setup of module Import
  2085. InstanceUniqueID=Unique ID of the instance
  2086. SmallerThan=Smaller than
  2087. LargerThan=Larger than
  2088. IfTrackingIDFoundEventWillBeLinked=Note that If a tracking ID of an object is found into email, or if the email is an answer of an email aready collected and linked to an object, the created event will be automatically linked to the known related object.
  2089. WithGMailYouCanCreateADedicatedPassword=With a GMail account, if you enabled the 2 steps validation, it is recommanded to create a dedicated second password for the application instead of using your own account passsword from https://myaccount.google.com/.
  2090. EmailCollectorTargetDir=It may be a desired behaviour to move the email into another tag/directory when it was processed successfully. Just set name of directory here to use this feature (Do NOT use special characters in name). Note that you must also use a read/write login account.
  2091. EmailCollectorLoadThirdPartyHelp=You can use this action to use the email content to find and load an existing thirdparty in your database. The found (or created) thirdparty will be used for following actions that need it. In the parameter field you can use for example 'EXTRACT:BODY:Name:\s([^\s]*)' if you want to extract the name of the thirdparty from a string 'Name: name to find' found into the body.
  2092. EndPointFor=End point for %s : %s
  2093. DeleteEmailCollector=Delete email collector
  2094. ConfirmDeleteEmailCollector=Are you sure you want to delete this email collector?
  2095. RecipientEmailsWillBeReplacedWithThisValue=Recipient emails will be always replaced with this value
  2096. AtLeastOneDefaultBankAccountMandatory=At least 1 default bank account must be defined
  2097. RESTRICT_ON_IP=Allow access to some host IP only (wildcard not allowed, use space between values). Empty means every hosts can access.
  2098. IPListExample=127.0.0.1 192.168.0.2 [::1]
  2099. BaseOnSabeDavVersion=Based on the library SabreDAV version
  2100. NotAPublicIp=Not a public IP
  2101. MakeAnonymousPing=Make an anonymous Ping '+1' to the Dolibarr foundation server (done 1 time only after installation) to allow the foundation to count the number of Dolibarr installation.
  2102. FeatureNotAvailableWithReceptionModule=Feature not available when module Reception is enabled
  2103. EmailTemplate=Template for email
  2104. EMailsWillHaveMessageID=Emails will have a tag 'References' matching this syntax
  2105. PDF_SHOW_PROJECT=Show project on document
  2106. ShowProjectLabel=Project Label
  2107. PDF_USE_ALSO_LANGUAGE_CODE=If you want to have some texts in your PDF duplicated in 2 different languages in the same generated PDF, you must set here this second language so generated PDF will contains 2 different languages in same page, the one chosen when generating PDF and this one (only few PDF templates support this). Keep empty for 1 language per PDF.
  2108. FafaIconSocialNetworksDesc=Enter here the code of a FontAwesome icon. If you don't know what is FontAwesome, you can use the generic value fa-address-book.
  2109. RssNote=Note: Each RSS feed definition provides a widget that you must enable to have it available in dashboard
  2110. JumpToBoxes=Jump to Setup -> Widgets
  2111. MeasuringUnitTypeDesc=Use here a value like "size", "surface", "volume", "weight", "time"
  2112. MeasuringScaleDesc=The scale is the number of places you have to move the decimal part to match the default reference unit. For "time" unit type, it is the number of seconds. Values between 80 and 99 are reserved values.
  2113. TemplateAdded=Template added
  2114. TemplateUpdated=Template updated
  2115. TemplateDeleted=Template deleted
  2116. MailToSendEventPush=Event reminder email
  2117. SwitchThisForABetterSecurity=Switching this value to %s is recommended for more security
  2118. DictionaryProductNature= Nature of product
  2119. CountryIfSpecificToOneCountry=Country (if specific to a given country)
  2120. YouMayFindSecurityAdviceHere=You may find security advisory here
  2121. ModuleActivatedMayExposeInformation=This PHP extension may expose sensitive data. If you don't need it, disable it.
  2122. ModuleActivatedDoNotUseInProduction=A module designed for the development has been enabled. Do not enable it on a production environment.
  2123. CombinationsSeparator=Separator character for product combinations
  2124. SeeLinkToOnlineDocumentation=See link to online documention on top menu for examples
  2125. SHOW_SUBPRODUCT_REF_IN_PDF=If the feature "%s" of module <b>%s</b> is used, show details of subproducts of a kit on PDF.
  2126. AskThisIDToYourBank=Contact your bank to get this ID
  2127. AdvancedModeOnly=Permision available in Advanced permission mode only
  2128. ConfFileIsReadableOrWritableByAnyUsers=The conf file is readable or writable by any users. Give permission to web server user and group only.
  2129. MailToSendEventOrganization=Event Organization
  2130. AGENDA_EVENT_DEFAULT_STATUS=Default event status when creating a event from the form
  2131. YouShouldDisablePHPFunctions=You should disable PHP functions
  2132. IfCLINotRequiredYouShouldDisablePHPFunctions=Except if you need to run system commands in custom code, you shoud disable PHP functions
  2133. PHPFunctionsRequiredForCLI=For shell purpose (like scheduled job backup or running an anitivurs program), you must keep PHP functions
  2134. NoWritableFilesFoundIntoRootDir=No writable files or directories of the common programs were found into your root directory (Good)
  2135. RecommendedValueIs=Recommended: %s
  2136. NotRecommended=Not recommanded
  2137. ARestrictedPath=A restricted path
  2138. CheckForModuleUpdate=Check for external modules updates
  2139. CheckForModuleUpdateHelp=This action will connect to editors of external modules to check if a new version is available.
  2140. ModuleUpdateAvailable=An update is available
  2141. NoExternalModuleWithUpdate=No updates found for external modules
  2142. SwaggerDescriptionFile=Swagger API description file (for use with redoc for example)
  2143. YouEnableDeprecatedWSAPIsUseRESTAPIsInstead=You enabled deprecated WS API. You should use REST API instead.
  2144. RandomlySelectedIfSeveral=Randomly selected if several pictures are available
  2145. DatabasePasswordObfuscated=Database password is obfuscated in conf file
  2146. DatabasePasswordNotObfuscated=Database password is NOT obfuscated in conf file
  2147. APIsAreNotEnabled=APIs modules are not enabled
  2148. YouShouldSetThisToOff=You should set this to 0 or off