# Dolibarr language file - Source file is en_US - website Shortname=Kodea WebsiteName=Name of the website WebsiteSetupDesc=Create here the websites you wish to use. Then go into menu Websites to edit them. DeleteWebsite=Delete website ConfirmDeleteWebsite=Are you sure you want to delete this web site? All its pages and content will also be removed. The files uploaded (like into the medias directory, the ECM module, ...) will remain. WEBSITE_TYPE_CONTAINER=Type of page/container WEBSITE_PAGE_EXAMPLE=Web page to use as example WEBSITE_PAGENAME=Page name/alias WEBSITE_ALIASALT=Alternative page names/aliases WEBSITE_ALIASALTDesc=Use here list of other name/aliases so the page can also be accessed using this other names/aliases (for example the old name after renaming the alias to keep backlink on old link/name working). Syntax is:
alternativename1, alternativename2, ... WEBSITE_CSS_URL=URL of external CSS file WEBSITE_CSS_INLINE=CSS file content (common to all pages) WEBSITE_JS_INLINE=JavaScript file content (common to all pages) WEBSITE_HTML_HEADER=Addition at bottom of HTML Header (common to all pages) WEBSITE_ROBOT=Robot file (robots.txt) WEBSITE_HTACCESS=Website .htaccess file WEBSITE_MANIFEST_JSON=Website manifest.json file WEBSITE_KEYWORDSDesc=Use a comma to separate values EnterHereReadmeInformation=Enter here a description of the website. If you distribute your website as a template, the file will be included into the temptate package. EnterHereLicenseInformation=Enter here the LICENSE of the code of the website. If you distribute your website as a template, the file will be included into the temptate package. HtmlHeaderPage=HTML header (specific to this page only) PageNameAliasHelp=Name or alias of the page.
This alias is also used to forge a SEO URL when website is ran from a Virtual host of a Web server (like Apacke, Nginx, ...). Use the button "%s" to edit this alias. EditTheWebSiteForACommonHeader=Note: If you want to define a personalized header for all pages, edit the header on the site level instead of on the page/container. MediaFiles=Media library EditCss=Edit website properties EditMenu=Edit menu EditMedias=Edit media EditPageMeta=Edit page/container properties EditInLine=Edit inline AddWebsite=Add website WebsitePage=Website page Webpage=Web page/container AddPage=Add page/container PageContainer=Page PreviewOfSiteNotYetAvailable=The preview of your website %s is not yet available. You must first 'Import a full website template' or just 'Add a page/container'. RequestedPageHasNoContentYet=Requested page with id %s has no content yet, or cache file .tpl.php was removed. Edit content of the page to solve this. SiteDeleted=Web site '%s' deleted PageContent=Page/Contenair PageDeleted=Page/Contenair '%s' of website %s deleted PageAdded=Page/Contenair '%s' added ViewSiteInNewTab=View site in new tab ViewPageInNewTab=View page in new tab SetAsHomePage=Set as Home page RealURL=Real URL ViewWebsiteInProduction=View web site using home URLs Virtualhost=Virtual host or domain name VirtualhostDesc=The name of the Virtual host or domain (For example: www.mywebsite.com, mybigcompany.net, ...) ToDeployYourWebsiteOnLiveYouHave3Solutions=To deploy this website live, you have 3 solutions... SetHereVirtualHost=Use with Apache/NGinx/...
Create on your web server (Apache, Nginx, ...) a dedicated Virtual Host with PHP enabled and a Root directory on
%s ExampleToUseInApacheVirtualHostConfig=Example to use in Apache virtual host setup: YouCanAlsoTestWithPHPS=Use with PHP embedded server
On develop environment, you may prefer to test the site with the PHP embedded web server by running YouCanAlsoDeployToAnotherWHP=Run your web site inside a Dolibarr web Hosting provider
If you don't have a web server like Apache or NGinx available on internet, you can export and import your web site onto another Dolibarr instance provided by another Dolibarr hosting provider that provide full integration with the Website module. You can find a list of some Dolibarr hosting providers on https://saas.dolibarr.org CheckVirtualHostPerms=Check also that the virtual host user (for example www-data) has %s permissions on files into
%s ReadPerm=Read WritePerm=Write TestDeployOnWeb=Test/deploy on web PreviewSiteServedByWebServer=Preview %s in a new tab.

The %s will be served by an external web server (like Apache, Nginx, IIS). You must install and setup this server before to point to directory:
%s
URL served by external server:
%s PreviewSiteServedByDolibarr=Preview %s in a new tab.

The %s will be served by Dolibarr server so it does not need any extra web server (like Apache, Nginx, IIS) to be installed.
The inconvenient is that the URLs of pages are not user friendly and start with the path of your Dolibarr.
URL served by Dolibarr:
%s

To use your own external web server to serve this web site, create a virtual host on your web server that points on directory
%s
then enter the name of this virtual server in the properties of this website and click on the link "Test/Deploy on the web". VirtualHostUrlNotDefined=URL of the virtual host served by external web server not defined NoPageYet=No pages yet YouCanCreatePageOrImportTemplate=You can create a new page or import a full website template SyntaxHelp=Help on specific syntax tips YouCanEditHtmlSourceckeditor=You can edit HTML source code using the "Source" button in editor. YouCanEditHtmlSource=
You can include PHP code into this source using tags <?php ?>. The following global variables are available: $conf, $db, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs.

You can also include content of another Page/Container with the following syntax:
<?php includeContainer('alias_of_container_to_include'); ?>

You can make a redirect to another Page/Container with the following syntax (Note: do not output any content before a redirect):
<?php redirectToContainer('alias_of_container_to_redirect_to'); ?>
You can also make a redirection with GET parameters:
<?php redirectToContainer('alias_of_container_to_redirect_to', '', 0, 0, $array_of_get_params); ?>

To add a link to another page, use the syntax:
<a href="alias_of_page_to_link_to.php">mylink<a>

To include a link to download a file stored into the documents directory, use the document.php wrapper:
Example, for a file into documents/ecm (need to be logged), syntax is:
<a href="/document.php?modulepart=ecm&file=[relative_dir/]filename.ext">
For a file into documents/medias (open directory for public access), syntax is:
<a href="/document.php?modulepart=medias&file=[relative_dir/]filename.ext">
For a file shared with a share link (open access using the sharing hash key of file), syntax is:
<a href="/document.php?hashp=publicsharekeyoffile">
YouCanEditHtmlSource1=
To include an image stored into the documents directory, use the viewimage.php wrapper.
Example, for an image into documents/medias (open directory for public access), syntax is:
<img src="/viewimage.php?modulepart=medias&file=[relative_dir/]filename.ext">
YouCanEditHtmlSource2=For an image shared with a share link (open access using the sharing hash key of file), syntax is:
<img src="/viewimage.php?hashp=12345679012...">
YouCanEditHtmlSource3=To get the URL of the image of a PHP object, use
<img src="<?php print getImagePublicURLOfObject($object, 1, "_small") ?>">
YouCanEditHtmlSourceMore=
More examples of HTML or dynamic code available on the wiki documentation.
ClonePage=Clone page/container CloneSite=Clone site SiteAdded=Website added ConfirmClonePage=Please enter code/alias of new page and if it is a translation of the cloned page. PageIsANewTranslation=The new page is a translation of the current page ? LanguageMustNotBeSameThanClonedPage=You clone a page as a translation. The language of the new page must be different than language of source page. ParentPageId=Parent page ID WebsiteId=Website ID CreateByFetchingExternalPage=Create page/container by fetching page from external URL... OrEnterPageInfoManually=Or create page from scratch or from a page template... FetchAndCreate=Fetch and Create ExportSite=Export website ImportSite=Import website template IDOfPage=Id of page Banner=Banner BlogPost=Blog post WebsiteAccount=Website account WebsiteAccounts=Website accounts AddWebsiteAccount=Create web site account BackToListForThirdParty=Back to list for the third parties DisableSiteFirst=Disable website first MyContainerTitle=My web site title AnotherContainer=This is how to include content of another page/container (you may have an error here if you enable dynamic code because the embedded subcontainer may not exists) SorryWebsiteIsCurrentlyOffLine=Sorry, this website is currently off line. Please comme back later... WEBSITE_USE_WEBSITE_ACCOUNTS=Enable the web site account table WEBSITE_USE_WEBSITE_ACCOUNTSTooltip=Enable the table to store web site accounts (login/pass) for each website / third party YouMustDefineTheHomePage=You must first define the default Home page OnlyEditionOfSourceForGrabbedContentFuture=Warning: Creating a web page by importing an external web page is reserved for experienced users. Depending on the complexity of source page, the result of importation may differ from the original. Also if the source page uses common CSS styles or conflicting JavaScript, it may break the look or features of the Website editor when working on this page. This method is a quicker way to create a page but it is recommended to create your new page from scratch or from a suggested page template.
Note also that the inline editor may not works correctty when used on a grabbed external page. OnlyEditionOfSourceForGrabbedContent=Only edition of HTML source is possible when content was grabbed from an external site GrabImagesInto=Grab also images found into css and page. ImagesShouldBeSavedInto=Images should be saved into directory WebsiteRootOfImages=Root directory for website images SubdirOfPage=Sub-directory dedicated to page AliasPageAlreadyExists=Alias page %s already exists CorporateHomePage=Corporate Home page EmptyPage=Empty page ExternalURLMustStartWithHttp=External URL must start with http:// or https:// ZipOfWebsitePackageToImport=Upload the Zip file of the website template package ZipOfWebsitePackageToLoad=or Choose an available embedded website template package ShowSubcontainers=Show dynamic content InternalURLOfPage=Internal URL of page ThisPageIsTranslationOf=This page/container is a translation of ThisPageHasTranslationPages=This page/container has translation NoWebSiteCreateOneFirst=No website has been created yet. Create one first. GoTo=Go to DynamicPHPCodeContainsAForbiddenInstruction=You add dynamic PHP code that contains the PHP instruction '%s' that is forbidden by default as dynamic content (see hidden options WEBSITE_PHP_ALLOW_xxx to increase list of allowed commands). NotAllowedToAddDynamicContent=You don't have permission to add or edit PHP dynamic content in websites. Ask permission or just keep code into php tags unmodified. ReplaceWebsiteContent=Search or Replace website content DeleteAlsoJs=Delete also all JavaScript files specific to this website? DeleteAlsoMedias=Delete also all media files specific to this website? MyWebsitePages=My website pages SearchReplaceInto=Search | Replace into ReplaceString=New string CSSContentTooltipHelp=Enter here CSS content. To avoid any conflict with the CSS of the application, be sure to prepend all declaration with the .bodywebsite class. For example:

#mycssselector, input.myclass:hover { ... }
must be
.bodywebsite #mycssselector, .bodywebsite input.myclass:hover { ... }

Note: If you have a large file without this prefix, you can use 'lessc' to convert it to append the .bodywebsite prefix everywhere. LinkAndScriptsHereAreNotLoadedInEditor=Warning: This content is output only when site is accessed from a server. It is not used in Edit mode so if you need to load JavaScript files also in edit mode, just add your tag 'script src=...' into the page. Dynamiccontent=Sample of a page with dynamic content EditInLineOnOff=Mode 'Edit inline' is %s ShowSubContainersOnOff=Mode to execute 'dynamic content' is %s GlobalCSSorJS=Global CSS/JS/Header file of web site BackToHomePage=Back to home page... TranslationLinks=Translation links YouTryToAccessToAFileThatIsNotAWebsitePage=You try to access to a page that is not available.
(ref=%s, type=%s, status=%s) UseTextBetween5And70Chars=For good SEO practices, use a text between 5 and 70 characters MainLanguage=Main language OtherLanguages=Other languages UseManifest=Provide a manifest.json file PublicAuthorAlias=Public author alias AvailableLanguagesAreDefinedIntoWebsiteProperties=Available languages are defined into website properties ReplacementDoneInXPages=Replacement done in %s pages or containers RSSFeed=RSS kanala RSSFeedDesc=You can get a RSS feed of latest articles with type 'blogpost' using this URL PagesRegenerated=%s page(s)/container(s) regenerated RegenerateWebsiteContent=Regenerate web site cache files AllowedInFrames=Allowed in Frames DefineListOfAltLanguagesInWebsiteProperties=Define list of all available languages into web site properties. GenerateSitemaps=Generate website sitemap.xml file ConfirmGenerateSitemaps=If you confirm, you will erase the existing sitemap file... ConfirmSitemapsCreation=Confirm sitemap generation SitemapGenerated=Sitemap file %s generated ImportFavicon=Favicon ErrorFaviconType=Favicon must be png ErrorFaviconSize=Favicon must be sized 16x16, 32x32 or 64x64 FaviconTooltip=Upload an image which needs to be a png (16x16, 32x32 or 64x64) NextContainer=Next page/container PreviousContainer=Previous page/container WebsiteMustBeDisabled=The website must have the status "%s" WebpageMustBeDisabled=The web page must have the status "%s" SetWebsiteOnlineBefore=When website is offline, all pages are offline. Change status of website first. Booking=Booking Reservation=Reservation PagesViewedPreviousMonth=Pages viewed (previous month) PagesViewedTotal=Pages viewed (total) Everyone=Everyone AssignedContacts=Assigned contacts WebsiteTypeLabel=Type of Web site WebsiteTypeDolibarrWebsite=Web site (Module WebSites CMS) WebsiteTypeDolibarrPortal=Native and ready to use web portal (Module Web Portal) WebPortalURL=Web portal URL NewWebsiteAccount=New accounts for websites ModuleWebPortalName=Web portal ModuleWebPortalDesc=A ready to use native web portal for customers, suppliers, partners or members WebPortalDescription=Public web portal module for membership and partnership WebPortalSetup=WebPortal setup WebPortalCSS=Web portal CSS WebPortalSetupPage=WebPortal setup page WEBPORTAL_TITLE=Brand name on header of public page UserAccountForWebPortalAreInThirdPartyTabHelp=Users accounts for WebPortal can be set on each third party card in Website accounts tab WebPortalAccessHidden=Hidden WebPortalAccessVisible=Visible WebPortalAccessEdit=Editable WEBPORTAL_MEMBER_CARD_ACCESS=Enable access to the membership record WebPortalMemberCardAccessHelp=Enable access to the membership record (Hidden / Visible or Editable) WEBPORTAL_PARTNERSHIP_CARD_ACCESS=Enable access to the partnership record WebPortalPartnerShipCardAccessHelp=Enable access to the partnership record (Hidden / Visible or Editable) WEBPORTAL_PROPAL_LIST_ACCESS=Enable access to the proposals WEBPORTAL_ORDER_LIST_ACCESS=Enable access to the orders WEBPORTAL_INVOICE_LIST_ACCESS=Enable access to the invoices WEBPORTAL_USER_LOGGED=Select an anonymous user WebPortalUserLoggedHelp=This user is used to update cards WebPortalHomeTitle=Welcome WebPortalHomeDesc=Welcome to the public interface WebPortalPropalListMenu=Proposamenak WebPortalPropalListTitle=Proposamenak WebPortalPropalListDesc=You will find here all your proposals WebPortalPropalListNothing=Proposals not found WebPortalOrderListMenu=Sales Orders WebPortalOrderListTitle=Sales orders WebPortalOrderListDesc=You will find here all your sales orders WebPortalOrderListNothing=Orders not found WebPortalInvoiceListMenu=Fakturak WebPortalInvoiceListTitle=Fakturak WebPortalInvoiceListDesc=You will find here all your invoices WebPortalInvoiceListNothing=Invoices not found WebPortalMemberCardMenu=Member WebPortalMemberCardTitle=Member card WebPortalMemberCardDesc=This is information related to your membership WebPortalPartnershipCardMenu=Partnership WebPortalPartnershipCardTitle=Partnership card WebPortalPartnershipCardDesc=Partnership card loginWebportalUserName=User name / email RemoveSearchFilters=Remove search filters WEBPORTAL_PRIMARY_COLOR=Primary color WEBPORTAL_SECONDARY_COLOR=Secondary color WEBPORTAL_LOGIN_LOGO_URL=Login logo image URL WEBPORTAL_MENU_LOGO_URL=Menu logo image URL WEBPORTAL_MENU_LOGO_URLTooltip=Leave empty to use login logo WEBPORTAL_LOGIN_BACKGROUND=Background login image URL WEBPORTAL_BANNER_BACKGROUND=Background for banner WEBPORTAL_BANNER_BACKGROUND_IS_DARK=Use dark theme for banner AriaPrevPage=Previous page AriaNextPage=Next page AriaPageX=Page %s WebPortalError404=Page not found WebPortalErrorPageNotExist=Page not exist WebPortalErrorFetchThirdPartyAccountFromLogin=Error when loading third-party account (login : %s) WebPortalErrorAuthentication=Authentication error WebPortalErrorFetchLoggedThirdPartyAccount=Error when loading third-party account (login : %s) WebPortalErrorFetchLoggedUser=Error when loading user (Id : %s) WebPortalErrorFetchLoggedThirdParty=Error when loading third-party (Id : %s) WebPortalErrorFetchLoggedMember=Error when loading member (Id : %s) WebPortalErrorFetchLoggedPartnership=Error when loading partnership (Third-party Id : %s, Member Id : %s) DownloadZip=Download the zip ExportIntoGIT=Export into server directory WebPortalMember=Membership WebPortalOrder=Sale Order WebPortalPartnership=Partnership WebPortalPropal=Proposal WebPortalGroupMenuAdmin=Administration WebPortalGroupMenuTechnical=Sistema PreviewPageContent=Page content Cart=Cart ExportSiteLabel=Click here to export the website by downloading a zip file ExportSiteGitLabel=Click here to export the website into a local directory of the server ExportPath=Path to export file SourceFiles=* If the path is absolute, it must start with a /
* If not it will be within install/doctemplates/websites/ followed by the entered path. CompletePage=Complete page PortionOfPage=Part of page ServiceComponent=Service (ajax, api, ...) MyContainerTitle2=Title level 2 WEBPAGE_CONTENT=This is a content of the page variableNotDefined=No %s defined. Please complete your setup. noPaymentModuleIsActivated=No payment module is activated. viewMyCustomerAccount=View my customer account logOut=Log out logInToYourCustomerAccount=Log in to your customer account logOutFromYourCustomerAccount=Log out from your customer account filteredByVersion=Filtered by version removeFilter=Remove filter viewMyCart=View my shopping cart freeShipping=Free shipping! noProducts=No products nbrItemsInCart=There are 0 items in your cart. pricesMayVaryDependingOnYourCountry=Prices may vary depending on your country. checkOut=Check out productAddedToCart=Product successfully added to your shopping cart thereIsItemInYourCart=There is 1 item in your cart. continueShopping=Continue shopping proceedToCheckout=Proceed to checkout totalProductsTaxIncl=Total products (tax incl.) totalShippingTaxIncl=Total shipping (tax incl.) totalTaxIncl=Total (tax incl.) clickToClose=Click to close sidebarCategories=Categories noSubCat=NoSubCat specialPromo=Specials promotions newProducts=New products allNewProducts= All new products view=View: grid=Grid sortBy=Sort by priceLowestFirst=Price: Lowest first priceHighestFirst=Price: Highest first productNameAToZ=Product Name: A to Z productNameZToA=Product Name: Z to A referenceLowestFirst=Reference: Lowest first referenceHighestFirst=Reference: Highest first perPage=per page showAll=Show all showing= Showing nbrOfProducts= There are %s products. noResultsHaveBeenFound=0 results have been found. noResultsWereFound= No results were found. addToCart=Add to cart backHome=Return to Home priceDrop=Price drop condition=Condition otherViews=Other views moduleVersion= Module version compatibility=Compatibility releaseDate=Release date lastUpdate=Last update contactSupport=How to contact support noProductToDisplay=Error, No product to display yourCompanyInformation=Your company information emailAlreadyRegistered=This email is already registered. firstnameContainsLettersOnly=Firstname must contain letters and spaces only lastnameContainsLettersOnly=Lastname must contain letters and spaces only passwordCriteria=Password must meet the following criteria:
- 12 characters
- 1 uppercase letter
- 1 digit
- No special characters
- Avoid repeating characters more than 3 times
errorOccurred=An error has occurred. accountCreation=Create an account errorsOccurred=There are %s error%s taxIdentificationNumber=Tax identification number register=Register requiredField=Required field alreadyRegistered=Already registered? noValidAccount=No valid account found for this email. invalidPassword=Invalid password. forgotPassword=Forgot your password? recoverPass=Recover your forgotten password signIn=Sign in myAccount=My account welcomeToYourAccount=Welcome to your account. Here you can manage all of your personal information and orders. orderHistoryDetails=Order history and details orderHistory=Order history orderDetails=Order details personalInfo=My personal information currentPasswd=Current Password newPasswd=New Password newPasswordCriteria=New password must meet the following criteria:
- 12 characters
- 1 uppercase letter
- 1 digit
- No special characters
- Avoid repeating characters more than 3 times
currentPasswordIncorrect=Current password is incorrect. bothCurrentNewPassRequired=Both the current password and the new password are required. yourPersonalInfo=Your personal information beSureToUpdateProfil=Please be sure to update your personal information if it has changed. backToYourAccount=Back to Your Account noOrderFounded=No order founded. orderRef=Order Ref totalPrice=Total Price paymentMethod=Payment Method details=Details invoicePdf=Invoice PDF anIssueCheckTheUrl=It seems there's an issue. Please check the URL and try again. anIssueNoOrderFounded=It seems there's an issue. No order founded. orderReference=Order Reference placedOn=placed on paymentAccepted=Payment accepted downloadInvoicePDF=Download your invoice as a PDF file. invoiceAddress=Invoice address totalTaxExcl=Total (tax excl.) unitPrice=Unit price closeWindow=Close Window nbrItemsInCartAjax=There are %s items in your cart. yourShoppingCart=Your shopping cart cartSummary=Shopping-cart summary yourCartContains=Your shopping cart contains cartIsEmpty=Your shopping cart is empty. subtract=Subtract LoginCheckout=Login & Proceed to checkout paymentSuccessProcessed=Your payment has been successfully processed. youWillBeRedirectedToOrderPage=You will be redirected to the order details page shortly.