admin.lang 138 KB

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