

# MyApplication-labels_en.properties # Application title and description Invoicing=Invoicing Invoicing[description]=Manage invoices and orders # Modules titles and descriptions Invoice.module=Invoices Invoice.module[description]=Create and manage invoices Order.module=Orders Order.module[description]=Create and manage orders, also generate invoices from ordersWith the above entries OpenXava knows how to display the name and description of Invoice and Order module in English.


showApplicationName=false
startInLastVisitedModule=falseIf you want that the first page on entering will not be First steps but your own module, add initialModule property (new in v6.3.2) to naviox.properties:
initialModule=MyInitialModuleIf you use a version previous to 6.3.2 edit firstSteps.jsp, located in web/naviox, remove all the content and place a redirection on it, thus:
<script>window.location="MyInitialModule"</script>
Even if you use a recent OpenXava version you can edit firstSteps.jsp
instead of using initialModule in naviox.properties, if
you want to add some logic to select the initial module, in this way:<%@include file="../xava/imports.jsp"%>
<% String module = isStartWithInvoice()?"Invoice":"Order";%>
<script <xava:nonce/>>window.location="<%=module%>"</script>
Note: The <xava:nonce/> attribute is required from OpenXava 7.1 onwards.
# Until v5.9.1, since v6.6The rememberVisitedModules was not available between v6.0 and v6.5.3.
rememberVisitedModules=false
showModulesMenuWhenNotLogged=falseThe modules menu will not be shown even if there are modules available for not logged users.
fixModulesOnTopMenu=Invoice, OrderJust the list of modules separated by commas. The modules will be always on the top bar, unless the user has no rights to access them.