r3918 - in trunk/lima-swing/src/main: java/org/chorem/lima/ui/financialstatementchart resources/i18n resources/icons
Author: sbavencoff Date: 2014-09-12 17:33:20 +0200 (Fri, 12 Sep 2014) New Revision: 3918 Url: http://forge.chorem.org/projects/lima/repository/revisions/3918 Log: refs #875 #1043 : Financial statement Added: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.css trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.css trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.css trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.css trunk/lima-swing/src/main/resources/icons/action-financialStatement-add-header.png trunk/lima-swing/src/main/resources/icons/action-financialStatement-add-movement.png trunk/lima-swing/src/main/resources/icons/action-financialStatement-check.png trunk/lima-swing/src/main/resources/icons/action-financialStatement-edit.png trunk/lima-swing/src/main/resources/icons/action-financialStatement-import.png trunk/lima-swing/src/main/resources/icons/action-financialStatement-remove.png Removed: trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-header.png trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-movement.png trunk/lima-swing/src/main/resources/icons/action-financialstatement-check.png trunk/lima-swing/src/main/resources/icons/action-financialstatement-edit.png trunk/lima-swing/src/main/resources/icons/action-financialstatement-import.png trunk/lima-swing/src/main/resources/icons/action-financialstatement-remove.png Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.jaxx trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.jaxx trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.jaxx trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.jaxx trunk/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties trunk/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java 2014-09-12 15:33:20 UTC (rev 3918) @@ -217,7 +217,7 @@ errorHelper.showErrorMessage(t("lima.importExport.import.alreadyExistFinancialStatement", alreadyExistFinancialStatement.getFinancialStatementLabel(), alreadyExistFinancialStatement.getMasterLabel())); } catch (NotAllowedLabelException notAllowedLabel) { - errorHelper.showErrorMessage(t("lima.financialstatement.notAllowedLabel", + errorHelper.showErrorMessage(t("lima.financialStatement.notAllowedLabel", notAllowedLabel.getLabel())); } modelSupport.fireTreeStructureChanged(path); Added: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.css =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.css (rev 0) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.css 2014-09-12 15:33:20 UTC (rev 3918) @@ -0,0 +1,41 @@ +#toolBar { + floatable : false; +} + +#addFinancialStatementHeader { + toolTipText : "lima.financialStatement.header.add"; + actionIcon : "financialStatement-add-header"; +} + +#addFinancialStatementMovement { + toolTipText : "lima.financialStatement.movement.add"; + actionIcon : "financialStatement-add-movement"; + enabled : "{isSelectedRow()}"; +} + +#updateButton { + toolTipText : "lima.update.shortcut"; + actionIcon : "financialStatement-edit"; + enabled : "{isSelectedRow()}"; +} + +#removeButton { + toolTipText : "lima.remove.shortcut"; + actionIcon : "financialStatement-remove"; + enabled : "{isSelectedRow()}"; +} + +#importButton { + toolTipText : "lima.importExport.import"; + actionIcon : "financialStatement-import"; +} + +#checkButton { + toolTipText : "lima.financialStatement.check"; + actionIcon : "financialStatement-check"; +} + +#treeTable { + selectionMode : "{ListSelectionModel.SINGLE_SELECTION}"; + highlighters : "{HighlighterFactory.createSimpleStriping(new java.awt.Color(222,222,222))}"; +} \ No newline at end of file Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.jaxx =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.jaxx 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartView.jaxx 2014-09-12 15:33:20 UTC (rev 3918) @@ -23,7 +23,7 @@ #L% --> -<Table> +<JPanel layout="{new BorderLayout()}"> <import> javax.swing.ListSelectionModel @@ -35,61 +35,37 @@ javaBean="new FinancialStatementChartViewHandler(this)"/> <Boolean id="selectedRow" javaBean="false"/> - <row> - <cell fill="horizontal"> - <JToolBar floatable="false"> - <JButton id="addFinancialStatementHeader" - toolTipText="{ t("lima.financialstatement.header.add") + " (Ctrl+Maj+N)"}" - actionIcon='financialstatement-add-header' - onActionPerformed="handler.addFinancialStatementHeader()"/> + <JToolBar id="toolBar" + constraints="BorderLayout.PAGE_START"> - <JButton id="addFinancialStatementMovement" - toolTipText="{ t("lima.financialstatement.movement.add") + " (Ctrl+N)"}" - actionIcon='financialstatement-add-movement' - onActionPerformed="handler.addFinancialStatementMovement()" - enabled="{isSelectedRow()}"/> + <JButton id="addFinancialStatementHeader" + onActionPerformed="handler.addFinancialStatementHeader()"/> - <JButton id="updateButton" - toolTipText="{ t("lima.update") + " (Ctrl+M)"}" - actionIcon='financialstatement-edit' - onActionPerformed="handler.updateFinancialStatement()" - enabled="{isSelectedRow()}"/> + <JButton id="addFinancialStatementMovement" + onActionPerformed="handler.addFinancialStatementMovement()"/> - <JButton id="removeButton" - toolTipText="{ t("lima.remove") + " (Del)"}" - actionIcon='financialstatement-remove' - onActionPerformed="handler.removeFinancialStatement()" - enabled="{isSelectedRow()}"/> + <JButton id="updateButton" + onActionPerformed="handler.updateFinancialStatement()"/> - <JButton id="importButton" - toolTipText="{ t("lima.importExport.import") + " (Ctrl+I)"}" - actionIcon='financialstatement-import' - onActionPerformed="handler.importFinancialStatementChart()"/> + <JButton id="removeButton" + onActionPerformed="handler.removeFinancialStatement()"/> - <JToolBar.Separator/> + <JButton id="importButton" + onActionPerformed="handler.importFinancialStatementChart()"/> - <JButton id="checkButton" - toolTipText="{ t("lima.financialstatement.check") + " (Ctrl+F)"}" - actionIcon='financialstatement-check' - onActionPerformed="handler.financialStatementChartCheck()"/> + <JToolBar.Separator/> - </JToolBar> - </cell> - </row> + <JButton id="checkButton" + onActionPerformed="handler.financialStatementChartCheck()"/> - <row> - <cell fill="both" weightx="1" weighty="1"> - <JScrollPane> - <FinancialStatementChartTreeTable id="treeTable" - constructorParams="getHandler()" - selectionMode="{ListSelectionModel.SINGLE_SELECTION}" - treeTableModel="{new FinancialStatementChartTreeTableModel()}" - highlighters="{HighlighterFactory.createSimpleStriping(new java.awt.Color(222,222,222))}"/> - <ListSelectionModel - javaBean="getTreeTable().getSelectionModel()" - onValueChanged="setSelectedRow(treeTable.getSelectedRow() != -1)"/> - </JScrollPane> - </cell> - </row> -</Table> \ No newline at end of file + </JToolBar> + + <JScrollPane> + <FinancialStatementChartTreeTable id="treeTable" + constructorParams="getHandler()" + treeTableModel="{new FinancialStatementChartTreeTableModel()}"/> + <ListSelectionModel javaBean="getTreeTable().getSelectionModel()" + onValueChanged="setSelectedRow(treeTable.getSelectedRow() != -1)"/> + </JScrollPane> +</JPanel> \ No newline at end of file Added: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.css =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.css (rev 0) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.css 2014-09-12 15:33:20 UTC (rev 3918) @@ -0,0 +1,33 @@ +#financialStatementHeaderForm { + title : "lima.financialStatement.header.form"; +} + +#descriptionLabel { + text : "lima.financialStatement.label"; +} + +#descriptionTextField { + text : "{getFinancialStatement().getLabel()}"; +} + +#subAmountCheckBox { + text : "lima.financialStatement.subAmount"; + selected : "{getFinancialStatement().getSubAmount()}"; +} + +#headerAmountCheckBox { + text : "lima.financialStatement.headerAmount"; + selected : "{getFinancialStatement().getHeaderAmount()}"; +} + +#wayEnumEditor { + selectedItem : "{getFinancialStatement().getWay()}"; +} + +#cancel { + text : "lima.cancel"; +} + +#ok { + text : "lima.ok"; +} Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.jaxx =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.jaxx 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementHeaderForm.jaxx 2014-09-12 15:33:20 UTC (rev 3918) @@ -23,7 +23,7 @@ #L% --> -<JDialog modal="true" +<JDialog id="financialStatementHeaderForm" modal="true" defaultCloseOperation="{JDialog.DO_NOTHING_ON_CLOSE}" onWindowClosing="performCancel();"> @@ -61,46 +61,42 @@ <Table> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.label"/> + <JLabel id="descriptionLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="descriptionTextField" - text="{getFinancialStatement().getLabel()}"/> + <JTextField id="descriptionTextField"/> <Document javaBean="getDescriptionTextField().getDocument()" - onInsertUpdate='getFinancialStatement().setLabel(getDescriptionTextField().getText())' - onRemoveUpdate='getFinancialStatement().setLabel(getDescriptionTextField().getText())'/> + onInsertUpdate="getFinancialStatement().setLabel(getDescriptionTextField().getText())" + onRemoveUpdate="getFinancialStatement().setLabel(getDescriptionTextField().getText())"/> </cell> </row> <row> <cell> - <JCheckBox id='subAmountCheckBox' - text='lima.financialstatement.subamount' - selected="{getFinancialStatement().getSubAmount()}" + <JCheckBox id="subAmountCheckBox" onActionPerformed="getFinancialStatement().setSubAmount(subAmountCheckBox.isSelected())"/> </cell> </row> <row> <cell> - <JCheckBox id='headerAmountCheckBox' - text='lima.financialstatement.headeramount' - selected="{getFinancialStatement().getHeaderAmount()}" + <JCheckBox id="headerAmountCheckBox" onActionPerformed="getFinancialStatement().setHeaderAmount(headerAmountCheckBox.isSelected())"/> </cell> </row> <row> <cell> <EnumEditor id='wayEnumEditor' - selectedItem="{getFinancialStatement().getWay()}" constructorParams='org.chorem.lima.FinancialStatementWayEnum.class' onActionPerformed="getFinancialStatementWayValue()"/> </cell> </row> <row> <cell fill="none"> - <JButton text="lima.cancel" onActionPerformed="performCancel()"/> + <JButton id="cancel" + onActionPerformed="performCancel()"/> </cell> <cell fill="none"> - <JButton id="ok" text="lima.ok" onActionPerformed="dispose()"/> + <JButton id="ok" + onActionPerformed="dispose()"/> </cell> </row> </Table> Added: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.css =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.css (rev 0) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.css 2014-09-12 15:33:20 UTC (rev 3918) @@ -0,0 +1,46 @@ +#financialStatementImportForm { + title : "lima.financialStatement.import.form"; +} + +#nothing { + text : "lima.charts.financialStatement.nothing"; +} + +#shortened { + text : "lima.charts.financialStatement.shortened"; + value : "{FinancialStatementsChartEnum.SHORTENED}"; + buttonGroup : "{getRadioButtons()}"; + selected : "true"; +} + +#statementBase { + text : "lima.charts.financialStatement.base"; + value : "{FinancialStatementsChartEnum.BASE}"; + buttonGroup : "{getRadioButtons()}"; +} + +#developed { + text : "lima.charts.financialStatement.developed"; + value : "{FinancialStatementsChartEnum.DEVELOPED}"; + buttonGroup : "{getRadioButtons()}"; +} + +#statementImport { + text : "lima.importExport.import"; + value : "{FinancialStatementsChartEnum.IMPORT}"; + buttonGroup : "{getRadioButtons()}"; +} + +#deleteFinancialStatementChart { + text : "lima.financialStatement.delete"; + selected : false; + +} + +#cancel { + text : "lima.cancel"; +} + +#ok { + text : "lima.ok"; +} \ No newline at end of file Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.jaxx =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.jaxx 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementImportForm.jaxx 2014-09-12 15:33:20 UTC (rev 3918) @@ -23,7 +23,8 @@ #L% --> -<JDialog modal="true" +<JDialog id="financialStatementImportForm" + modal="true" defaultCloseOperation="{JDialog.DO_NOTHING_ON_CLOSE}" onWindowClosing="performCancel();"> @@ -49,45 +50,32 @@ <Table> <row> <cell> - <JLabel text='lima.charts.financialstatement.nothing'/> + <JLabel id="nothing"/> </cell> </row> <row> <cell> - <JRadioButton text='lima.charts.financialstatement.shortened' - value='{FinancialStatementsChartEnum.SHORTENED}' - buttonGroup="{getRadioButtons()}" - selected='true'/> + <JRadioButton id="shortened" /> </cell> </row> <row> <cell> - <JRadioButton text='lima.charts.financialstatement.base' - value='{FinancialStatementsChartEnum.BASE}' - buttonGroup="{getRadioButtons()}" - selected='true'/> + <JRadioButton id="statementBase"/> </cell> </row> <row> <cell> - <JRadioButton text='lima.charts.financialstatement.developed' - value='{FinancialStatementsChartEnum.DEVELOPED}' - buttonGroup="{getRadioButtons()}" - selected='true'/> + <JRadioButton id="developed"/> </cell> </row> <row> <cell> - <JRadioButton text='lima.importExport.import' - value='{FinancialStatementsChartEnum.IMPORT}' - buttonGroup="{getRadioButtons()}" - selected='true'/> + <JRadioButton id="statementImport"/> </cell> </row> <row> <cell> - <JCheckBox id='deleteFinancialStatementChart' - text='lima.financialstatement.delete' selected='false'/> + <JCheckBox id="deleteFinancialStatementChart"/> </cell> </row> <row> @@ -95,11 +83,11 @@ <Table> <row> <cell fill="none"> - <JButton text="lima.cancel" + <JButton id="cancel" onActionPerformed="performCancel()"/> </cell> <cell fill="none"> - <JButton id="ok" text="lima.ok" + <JButton id="ok" onActionPerformed="dispose()"/> </cell> </row> Added: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.css =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.css (rev 0) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.css 2014-09-12 15:33:20 UTC (rev 3918) @@ -0,0 +1,51 @@ +#financialStatementMovementForm { + title : "lima.financialStatement.movement.form"; +} + +#descriptionLabel { + text : "lima.financialStatement.label"; +} + +#descriptionTextField { + text : "{getFinancialStatement().getLabel()}"; +} + +#accountsLabel { + text : "lima.financialStatement.accounts"; +} + +#accountsTextField { + text : "{getFinancialStatement().getAccounts()}"; +} + +#debitAccountsLabel { + text : "lima.financialStatement.debitAccounts"; +} + +#debitAccountsTextField { + text : "{getFinancialStatement().getDebitAccounts()}"; +} + +#creditAccountsLabel { + text : "lima.financialStatement.creditAccounts"; +} + +#creditAccountsTextField { + text : "{getFinancialStatement().getCreditAccounts()}"; +} + +#provisionDeprecationAccountsLabel { + text : "lima.financialStatement.provisionDeprecationAccounts"; +} + +#provisionDeprecationAccountsTextField { + text : "{getFinancialStatement().getProvisionDeprecationAccounts()}"; +} + +#cancel { + text : "lima.cancel"; +} + +#ok { + text : "lima.ok"; +} \ No newline at end of file Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.jaxx =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.jaxx 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementMovementForm.jaxx 2014-09-12 15:33:20 UTC (rev 3918) @@ -23,7 +23,8 @@ #L% --> -<JDialog modal="true" +<JDialog id="financialStatementMovementForm" + modal="true" defaultCloseOperation="{JDialog.DO_NOTHING_ON_CLOSE}" onWindowClosing="performCancel();"> @@ -49,11 +50,10 @@ <Table> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.label"/> + <JLabel id="descriptionLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="descriptionTextField" - text="{getFinancialStatement().getLabel()}"/> + <JTextField id="descriptionTextField"/> <Document javaBean="getDescriptionTextField().getDocument()" onInsertUpdate='getFinancialStatement().setLabel(getDescriptionTextField().getText())' onRemoveUpdate='getFinancialStatement().setLabel(getDescriptionTextField().getText())'/> @@ -61,11 +61,10 @@ </row> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.accounts"/> + <JLabel id="accountsLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="accountsTextField" - text="{getFinancialStatement().getAccounts()}"/> + <JTextField id="accountsTextField"/> <Document javaBean="getAccountsTextField().getDocument()" onInsertUpdate='getFinancialStatement().setAccounts(getAccountsTextField().getText())' onRemoveUpdate='getFinancialStatement().setAccounts(getAccountsTextField().getText())'/> @@ -73,11 +72,10 @@ </row> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.debitaccounts"/> + <JLabel id="debitAccountsLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="debitAccountsTextField" - text="{getFinancialStatement().getDebitAccounts()}"/> + <JTextField id="debitAccountsTextField"/> <Document javaBean="getDebitAccountsTextField().getDocument()" onInsertUpdate='getFinancialStatement().setDebitAccounts(getDebitAccountsTextField().getText())' onRemoveUpdate='getFinancialStatement().setDebitAccounts(getDebitAccountsTextField().getText())'/> @@ -85,11 +83,10 @@ </row> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.creditaccounts"/> + <JLabel id="creditAccountsLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="creditAccountsTextField" - text="{getFinancialStatement().getCreditAccounts()}"/> + <JTextField id="creditAccountsTextField"/> <Document javaBean="getCreditAccountsTextField().getDocument()" onInsertUpdate='getFinancialStatement().setCreditAccounts(getCreditAccountsTextField().getText())' onRemoveUpdate='getFinancialStatement().setCreditAccounts(getCreditAccountsTextField().getText())'/> @@ -97,23 +94,23 @@ </row> <row> <cell fill="horizontal"> - <JLabel text="lima.financialstatement.provisiondeprecationaccounts"/> + <JLabel id="provisionDeprecationAccountsLabel"/> </cell> <cell fill="horizontal"> - <JTextField id="provisionDeprecationAccountsTextField" - text="{getFinancialStatement().getProvisionDeprecationAccounts()}"/> - <Document - javaBean="getProvisionDeprecationAccountsTextField().getDocument()" - onInsertUpdate='getFinancialStatement().setProvisionDeprecationAccounts(getProvisionDeprecationAccountsTextField().getText())' - onRemoveUpdate='getFinancialStatement().setProvisionDeprecationAccounts(getProvisionDeprecationAccountsTextField().getText())'/> + <JTextField id="provisionDeprecationAccountsTextField"/> + <Document javaBean="getProvisionDeprecationAccountsTextField().getDocument()" + onInsertUpdate='getFinancialStatement().setProvisionDeprecationAccounts(getProvisionDeprecationAccountsTextField().getText())' + onRemoveUpdate='getFinancialStatement().setProvisionDeprecationAccounts(getProvisionDeprecationAccountsTextField().getText())'/> </cell> </row> <row> <cell fill="none"> - <JButton text="lima.cancel" onActionPerformed="performCancel()"/> + <JButton id="cancel" + onActionPerformed="performCancel()"/> </cell> <cell fill="none"> - <JButton id="ok" text="lima.ok" onActionPerformed="dispose()"/> + <JButton id="ok" + onActionPerformed="dispose()"/> </cell> </row> </Table> Modified: trunk/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties =================================================================== --- trunk/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties 2014-09-12 15:33:20 UTC (rev 3918) @@ -56,6 +56,10 @@ lima.charts.account.number=Account Number lima.charts.account.question.remove=Do you really remove this account ? lima.charts.account.shortened=Shorthened accountchart +lima.charts.financialStatement.base= +lima.charts.financialStatement.developed= +lima.charts.financialStatement.nothing= +lima.charts.financialStatement.shortened= lima.charts.financialperiod=Financial Periods lima.charts.financialstatement=Financialstatement chart lima.charts.financialstatement.base=Base financialstatement chart @@ -308,7 +312,27 @@ lima.financialPeriod.period= lima.financialPeriod.status= lima.financialPeriods= +lima.financialStatement.accounts=Account list on debit and on credit +lima.financialStatement.addfinancialStatementHeadererror=Can't add financialStatementHeader lima.financialStatement.alreadyExistFinancialStatement=FAILED \: The financial statement %s already exists \! +lima.financialStatement.check=Check accounts passing to movement +lima.financialStatement.creditAccounts= +lima.financialStatement.creditaccounts=Account credit list +lima.financialStatement.debitAccounts= +lima.financialStatement.debitaccounts=Account debit list +lima.financialStatement.delete=Delete actual financialstatement chart before import new +lima.financialStatement.header.add=Add category +lima.financialStatement.header.form= +lima.financialStatement.headerAmount=Calculate amount on header +lima.financialStatement.import.form= +lima.financialStatement.label=Label +lima.financialStatement.movement.add=Add movement +lima.financialStatement.movement.form= +lima.financialStatement.notAllowedLabel=Not allowed label\: %s +lima.financialStatement.provisionDeprecationAccounts= +lima.financialStatement.provisiondeprecationaccounts=Provisions and deprecations accounts list +lima.financialStatement.subAmount=Calculate a subamount +lima.financialStatementreport.listerror=Can't get entries list lima.financialStatements= lima.financialStatements.check= lima.financialStatements.check.nothing= @@ -329,20 +353,6 @@ lima.financialTransaction.update.error.beforeFirstFiscalPeriod= lima.financialTransaction.update.error.lockedEntryBook= lima.financialTransaction.update.error.lockedFinancialPeriod= -lima.financialstatement.accounts=Account list on debit and on credit -lima.financialstatement.addfinancialStatementHeadererror=Can't add financialStatementHeader -lima.financialstatement.check=Check accounts passing to movement -lima.financialstatement.creditaccounts=Account credit list -lima.financialstatement.debitaccounts=Account debit list -lima.financialstatement.delete=Delete actual financialstatement chart before import new -lima.financialstatement.header.add=Add category -lima.financialstatement.headeramount=Calculate amount on header -lima.financialstatement.label=Label -lima.financialstatement.movement.add=Add movement -lima.financialstatement.notAllowedLabel=Not allowed label\: %s -lima.financialstatement.provisiondeprecationaccounts=Provisions and deprecations accounts list -lima.financialstatement.subamount=Calculate a subamount -lima.financialstatementreport.listerror=Can't get entries list lima.financialtransaction.account= lima.financialtransaction.balance= lima.financialtransaction.buttonback= @@ -668,5 +678,6 @@ lima.vatstatement.movement.add=Add movement lima.wait= lima.warning.nimbus.landf=Could not find Numbus Look&Feel +limaFinancialStatement.movement.form= limma.config.thousandseparator.description= limma.config.thousandseparator.label= Modified: trunk/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties =================================================================== --- trunk/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties 2014-09-12 13:43:26 UTC (rev 3917) +++ trunk/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties 2014-09-12 15:33:20 UTC (rev 3918) @@ -45,12 +45,12 @@ lima.charts.account.number=Numéro de compte lima.charts.account.question.remove=Voulez-vous supprimer ce compte? lima.charts.account.shortened=Plan comptable abrégé +lima.charts.financialStatement=Plan BCR +lima.charts.financialStatement.base=Plan BCR de base +lima.charts.financialStatement.developed=Plan BCR développé +lima.charts.financialStatement.nothing=<html><center>Aucun plan BCR chargé<br/>Veuillez sélectionner un plan par défaut, <br/>importer un plan personnalisé<br/> ou annuler pour créer votre propre plan.</center></html> +lima.charts.financialStatement.shortened=Plan BCR abrégé lima.charts.financialperiod=Périodes comptables -lima.charts.financialstatement=Plan BCR -lima.charts.financialstatement.base=Plan BCR de base -lima.charts.financialstatement.developed=Plan BCR développé -lima.charts.financialstatement.nothing=<html><center>Aucun plan BCR chargé<br/>Veuillez sélectionner un plan par défaut, <br/>importer un plan personnalisé<br/> ou annuler pour créer votre propre plan.</center></html> -lima.charts.financialstatement.shortened=Plan BCR abrégé lima.charts.financialtransaction.question.removeentry=Voulez-vous supprimer cette ligne de transaction? lima.charts.financialtransaction.question.removetransaction=Voulez-vous supprimer cette transaction? lima.charts.fiscalperiod.create= @@ -281,7 +281,24 @@ lima.financialPeriod.period=Période lima.financialPeriod.status=Statut lima.financialPeriods=Périodes comptables +lima.financialStatement.accounts=Liste de comptes au crédit et au débit +lima.financialStatement.addfinancialStatementHeadererror=Erreur lors de l'ajout de l'entête sur la déclaration financière lima.financialStatement.alreadyExistFinancialStatement=u00C9chec \: Le mouvement %s exist déjà \! +lima.financialStatement.check=Vérification des comptes (Ctrl+F) +lima.financialStatement.creditAccounts=Liste de comptes au crédit +lima.financialStatement.debitAccounts=Liste de comptes au débit +lima.financialStatement.delete=Supprimer le plan BCR actuel avant d'importer +lima.financialStatement.header.add=Ajouter une catégorie (Ctrl+Maj+N) +lima.financialStatement.header.form=Catégorie +lima.financialStatement.headerAmount=Calculer le total en en-tete +lima.financialStatement.import.form=Importer +lima.financialStatement.label=Libellé +lima.financialStatement.movement.add=Ajouter un regrouprement (Ctrl+N) +lima.financialStatement.movement.form=Regroupement +lima.financialStatement.notAllowedLabel=Label non authorisé\: %s +lima.financialStatement.provisionDeprecationAccounts=Liste de comptes d'amortissement et provisions +lima.financialStatement.subAmount=Calculer un sous-total +lima.financialStatementreport.listerror=Erreur lors de la récupération des données de la liste lima.financialStatements=Plan BCR lima.financialStatements.check=Vérification des comptes aux postes lima.financialStatements.check.nothing=Introuvable \: %s - %s \n @@ -302,20 +319,6 @@ lima.financialTransaction.update.error.beforeFirstFiscalPeriod=Impossible de déplacer une transaction avant le %1$te %1$tB %1$tY début du premier exercice. lima.financialTransaction.update.error.lockedEntryBook=Impossible de déplacer une transaction car le jounal %2$s (%1$s) est cloturé pour la période du %3$te %3$tB %3$tY au %4$te %4$tB %4$tY. lima.financialTransaction.update.error.lockedFinancialPeriod=Impossible de deplacer une transaction car la période fiscale du %3$te %3$tB %3$tY au %4$te %4$tB %4$tY est cloturée. -lima.financialstatement.accounts=Liste de comptes au crédit et au débit -lima.financialstatement.addfinancialStatementHeadererror=Erreur lors de l'ajout de l'entête sur la déclaration financière -lima.financialstatement.check= -lima.financialstatement.creditaccounts=Liste de comptes au crédit -lima.financialstatement.debitaccounts=Liste de comptes au débit -lima.financialstatement.delete=Supprimer le plan BCR actuel avant d'importer -lima.financialstatement.header.add=Ajouter une catégorie -lima.financialstatement.headeramount=Calculer le total en en-tete -lima.financialstatement.label=Libellé -lima.financialstatement.movement.add=Ajouter un regrouprement -lima.financialstatement.notAllowedLabel=Label non authorisé\: %s -lima.financialstatement.provisiondeprecationaccounts=Liste de comptes d'amortissement et provisions -lima.financialstatement.subamount=Calculer un sous-total -lima.financialstatementreport.listerror=Erreur lors de la récupération des données de la liste lima.financialtransaction.account=Compte lima.financialtransaction.balance=Balance lima.financialtransaction.buttonback=← Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-add-header.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-header.png) =================================================================== (Binary files differ) Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-add-movement.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-movement.png) =================================================================== (Binary files differ) Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-check.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-check.png) =================================================================== (Binary files differ) Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-edit.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-edit.png) =================================================================== (Binary files differ) Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-import.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-import.png) =================================================================== (Binary files differ) Copied: trunk/lima-swing/src/main/resources/icons/action-financialStatement-remove.png (from rev 3917, trunk/lima-swing/src/main/resources/icons/action-financialstatement-remove.png) =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-header.png =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-add-movement.png =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-check.png =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-edit.png =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-import.png =================================================================== (Binary files differ) Deleted: trunk/lima-swing/src/main/resources/icons/action-financialstatement-remove.png =================================================================== (Binary files differ)
participants (1)
-
sbavencoff@users.chorem.org