admin.lang 170 KB

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