branch feature/1381-fix-shortcut created (now 3386aa1)
This is an automated email from the git hooks/post-receive script. New change to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git at 3386aa1 refs #1381 ajout de clefs de traduction This branch includes the following new commits: new 36969fb refs #1381 ajout du racourci clavier pour les imports new 1874916 refs #1381 correction des toolkits new 44782ad refs #1381 ajout de clefs de traduction new 60b9593 refs #1381 ajout de clefs de traduction new 3386aa1 refs #1381 ajout de clefs de traduction The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 3386aa19d06a4b49019c85df764e520d378b41aa Author: David Cossé <cosse@codelutin.com> Date: Sun Jan 22 21:17:01 2017 +0100 refs #1381 ajout de clefs de traduction commit 60b9593dba23fc1bddf4cb52024df594924f12ad Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 12:08:37 2017 +0100 refs #1381 ajout de clefs de traduction commit 44782ad93f897b23d0f9929e9c49aceaa43dd6c9 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:17:28 2017 +0100 refs #1381 ajout de clefs de traduction commit 18749165e878cfc7596455613607709267526839 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:04:35 2017 +0100 refs #1381 correction des toolkits commit 36969fbc547bf7705d2076e2588d6a04fe687314 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:02:39 2017 +0100 refs #1381 ajout du racourci clavier pour les imports -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 36969fbc547bf7705d2076e2588d6a04fe687314 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:02:39 2017 +0100 refs #1381 ajout du racourci clavier pour les imports --- .../java/org/chorem/lima/ui/account/AccountViewHandler.java | 12 ++++++++++++ .../org/chorem/lima/ui/entrybook/EntryBookViewHandler.java | 12 ++++++++++++ .../org/chorem/lima/ui/vatchart/VatChartViewHandler.java | 12 ++++++++++++ 3 files changed, 36 insertions(+) diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java b/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java index 0b3d79d..06f7101 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java @@ -172,6 +172,18 @@ public class AccountViewHandler implements ServiceListener { } }); + // add action on Ctrl + I + binding = "import-account"; + inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_I, KeyEvent.CTRL_DOWN_MASK), binding); + actionMap.put(binding, new AbstractAction() { + private static final long serialVersionUID = -8953401784332356894L; + + @Override + public void actionPerformed(ActionEvent e) { + importAccountsChart(); + } + }); + table.addMouseListener(new MouseAdapter() { @Override public void mousePressed(MouseEvent e) { diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java b/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java index dc6a452..f91dad8 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java @@ -120,6 +120,18 @@ public class EntryBookViewHandler implements ServiceListener { } }); + // add action on Ctrl + I + binding = "import-entryBook"; + inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_I, KeyEvent.CTRL_DOWN_MASK), binding); + actionMap.put(binding, new AbstractAction() { + private static final long serialVersionUID = -8953401784332356894L; + + @Override + public void actionPerformed(ActionEvent e) { + importEntryBooks(); + } + }); + EntryBookTable table = view.getEntryBooksTable(); table.addMouseListener(new MouseAdapter() { diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java b/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java index 3e7e817..753c563 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java @@ -159,6 +159,18 @@ public class VatChartViewHandler implements ServiceListener { updateVatStatement(); } }); + + // add action on Ctrl + I + binding = "import-importVatStatementChart"; + inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_I, KeyEvent.CTRL_DOWN_MASK), binding); + actionMap.put(binding, new AbstractAction() { + private static final long serialVersionUID = -8953401784332356894L; + + @Override + public void actionPerformed(ActionEvent e) { + importVatStatementChart(); + } + }); } protected void addDoubleClickEvent() { -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 18749165e878cfc7596455613607709267526839 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:04:35 2017 +0100 refs #1381 correction des toolkits --- .../main/resources/i18n/lima-swing_en_GB.properties | 18 +++++++++--------- .../main/resources/i18n/lima-swing_fr_FR.properties | 20 ++++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties index ae85c0b..6d93ca9 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties @@ -1,6 +1,6 @@ lima-business.document.subTotalForMonthText=Sub total for %s lima.account=Account -lima.account.add=Add account (Ctrl+A) +lima.account.add=Add account (Ctrl+N) lima.account.add.error.InvalidAccountNumber=Invalid account number\:%1$s lima.account.add.error.alreadyExist=Account %1$s already exist lima.account.add.form=Add account @@ -164,12 +164,12 @@ lima.entries.paste.transaction.error.afterLastFiscalPeriod=Past financial transa lima.entries.paste.transaction.error.beforeFirstFiscalPeriod=Past financial transaction failed, financial transaction date is before first fiscal period date lima.entries.paste.transaction.error.lockedEntryBook=Past financial transaction failed, entry book closed lima.entries.paste.transaction.error.lockedFinancialPeriod=Past financial transaction failed, financial period closed -lima.entries.remove.entry=Delete entry +lima.entries.remove.entry=Delete entry (Ctrl+Del) lima.entries.remove.entry.confirm=Do you really want to remove this entry ? lima.entries.remove.entry.error.lockedEntryBook=Delete entry failed, entry book is closed lima.entries.remove.entry.error.lockedFinancialPeriod=Delete entry failed, financial period is closed lima.entries.remove.entry.title=Delete -lima.entries.remove.transaction=Delete transaction (Ctrl+Del) +lima.entries.remove.transaction=Delete transaction (Ctrl+Shift+Del) lima.entries.remove.transaction.confirm=Do you really want to remove this transaction ? lima.entries.remove.transaction.error.lockedEntryBook=Delete financial transaction failed, entry book is closed lima.entries.remove.transaction.error.lockedFinancialPeriod=Delete financial transaction failed, financial period is closed @@ -186,7 +186,7 @@ lima.entry.remove.confirm=Do you really want to remove this financial transactio lima.entry.update.error.closedEntryBook= lima.entry.update.error.lockedFinancialPeriod= lima.entryBook=EntryBook -lima.entryBook.add=Add entry book (Ctrl+A) +lima.entryBook.add=Add entry book (Ctrl+N) lima.entryBook.alreadyExistEntryBook=Already existing entry book lima.entryBook.code=Code lima.entryBook.default=Default entry book @@ -256,7 +256,7 @@ lima.financialStatement.accounts=Account list on debit and on credit lima.financialStatement.accountsSelection= lima.financialStatement.accountsSelection.tilte= lima.financialStatement.base=Base financial statement chart -lima.financialStatement.check=Check accounts passing to movement +lima.financialStatement.check=Check accounts passing to movement (Ctrl+K) lima.financialStatement.creditAccounts=Account credit list lima.financialStatement.debitAccounts=Account debit list lima.financialStatement.developed=Developed financial statement chart @@ -315,14 +315,14 @@ lima.fiscalControlExport.sirenMissing= lima.fiscalControlExport.success= lima.fiscalControlExport.success.title= lima.fiscalPeriod=Fiscal period -lima.fiscalPeriod.add=Add fiscal period +lima.fiscalPeriod.add=Add fiscal period (Ctrl+N) lima.fiscalPeriod.add.confirm.moreThan12=Fiscal period is not 12 month long, do you really want to continue ? lima.fiscalPeriod.add.error.beginAfterEndFiscalPeriod=Ending date (%2$te/%2$tm/%2$tY) must be gretter that begin one (%1$te/%1$tm/%1$tY) lima.fiscalPeriod.add.error.moreOneUnlockFiscalPeriod=%1s fiscal periods already exist lima.fiscalPeriod.add.error.notBeginNextDayOfLastFiscalPeriod=Fiscal period dete must follows the last one %1$te/%1$tm/%1$tY lima.fiscalPeriod.add.form=Add new fiscal period lima.fiscalPeriod.begin=From -lima.fiscalPeriod.block=Close (Ctrl+c) +lima.fiscalPeriod.block=Close (Ctrl+B) lima.fiscalPeriod.block.addRetainedEarnings=Do you want to push to new fiscal period ? lima.fiscalPeriod.block.cantBalanceIfNextPeriodNotExist=Failed to create new fiscal period, no next fiscal period \! lima.fiscalPeriod.block.cantBalanceNotBook=Failed to create new fiscal period, entry book is required \! @@ -431,7 +431,7 @@ lima.importExport.financialStatement=Financial transactions import completed. lima.importExport.financialTransaction=financial transaction completed. lima.importExport.fiscalPeriod=Fiscal periods import completed. lima.importExport.identity=Identity import completed. -lima.importExport.import=Import +lima.importExport.import=Import (Ctrl+I) lima.importExport.vatStatement=VTA transactions import completed. lima.importExport.wait=Job in progress… lima.info=Information @@ -482,7 +482,7 @@ lima.quit=Exit lima.refresh=Refresh lima.refresh.shortcut=Refresh (F5) lima.remove=Remove -lima.remove.shortcut=Edit (Ctrl+M) +lima.remove.shortcut=Delete (Del) lima.restart=Please restart the interface lima.retainedEarnings.wait= lima.search=Search diff --git a/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties b/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties index 6cf01e0..e388c58 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties @@ -1,5 +1,5 @@ lima.account=Compte -lima.account.add=Nouveau compte (Ctrl+A) +lima.account.add=Nouveau compte (Ctrl+N) lima.account.add.error.InvalidAccountNumber=Le numéro du compt %1$s n'est pas valide lima.account.add.error.alreadyExist=Le compt %1$s existe déjà lima.account.add.form=Ajout d'un compte @@ -166,12 +166,12 @@ lima.entries.paste.transaction.error.afterLastFiscalPeriod=Impossible de copier lima.entries.paste.transaction.error.beforeFirstFiscalPeriod=Impossible de copier une transaction avant le %1$te %1$tB %1$tY début du premier exercice. lima.entries.paste.transaction.error.lockedEntryBook=Impossible de copier 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.entries.paste.transaction.error.lockedFinancialPeriod=Impossible de copier 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.entries.remove.entry=Supprimer l'entrée (Suppr) +lima.entries.remove.entry=Supprimer l'entrée (Ctrl+Suppr) lima.entries.remove.entry.confirm=Voulez-vous supprimer cette écriture ? lima.entries.remove.entry.error.lockedEntryBook=Impossible de supprimer une écriture 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.entries.remove.entry.error.lockedFinancialPeriod=Impossible de supprimer une écriture car la période fiscale du %3$te %3$tB %3$tY au %4$te %4$tB %4$tY est cloturée. lima.entries.remove.entry.title=Suppression -lima.entries.remove.transaction=Supprimer la transaction (Ctrl+Suppr) +lima.entries.remove.transaction=Supprimer la transaction (Ctrl+Maj+Suppr) lima.entries.remove.transaction.confirm=Voulez-vous supprimer cette transaction? lima.entries.remove.transaction.error.lockedEntryBook=Impossible de supprimer 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.entries.remove.transaction.error.lockedFinancialPeriod=Impossible de supprimer une transaction car la période fiscale du %3$te %3$tB %3$tY au %4$te %4$tB %4$tY est cloturée. @@ -188,7 +188,7 @@ lima.entry.remove.confirm=Voulez-vous supprimer cette ligne de transaction? lima.entry.update.error.closedEntryBook=Impossible de modifier cette écriture 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.entry.update.error.lockedFinancialPeriod=Impossilbe de modifier cette écriture car la période fiscale du %3$te %3$tB %3$tY au %4$te %4$tB %4$tY est cloturée. lima.entryBook=Journal -lima.entryBook.add=Ajout de journal (Ctrl+A) +lima.entryBook.add=Ajout de journal (Ctrl+N) lima.entryBook.alreadyExistEntryBook=Un journal avec comme code %s existe déjà. lima.entryBook.code=Code lima.entryBook.default=Journaux par défault @@ -235,7 +235,7 @@ lima.filter.letter=Ajouter un filtre sur les lettres lima.filter.voucher=Ajouter un filtre sur les pièces comptables lima.financialPeriod=Périodes Financières lima.financialPeriod.begin=Début -lima.financialPeriod.block=Cloturer une période (Ctrl+C) +lima.financialPeriod.block=Cloturer une période (Ctrl+B) lima.financialPeriod.block.confirm=Êtes vous sûre de vouloir clôturer cette période ? Cette action est irréversible \! lima.financialPeriod.block.error.noLockedPreviousEntryBook.main=Impossible de clôturer cette période car les périodes précedentes ne sont pas clôturer \: lima.financialPeriod.block.error.noLockedPreviousEntryBook.previousEntryBook=période du %1$te %1$tB %1$tY au %2$te %2$tB %2$tY @@ -261,7 +261,7 @@ lima.financialStatement.accounts=Au crédit et au débit lima.financialStatement.accountsSelection=<html><ul><li><strong>AAA, BBB, CCC</strong> \: La sommes des montants pour les comptes AAA, BBB et CCC ;</li><li><strong>AAA, BBB - CCC ; DDD</strong> \: Les montants des comptes AAA et BBB moins les montants des comptes CCC et DDD ;</li><li><strong>AAA .. BBB</strong> \: Le montant de touts les comptes entre AAA et BBB (inclus).</li></ul></html> lima.financialStatement.accountsSelection.tilte=<html><h3>Sélection des comptes</h3></html> lima.financialStatement.base=Standard -lima.financialStatement.check=Vérification des comptes (Ctrl+F) +lima.financialStatement.check=Vérification des comptes (Ctrl+K) lima.financialStatement.creditAccounts=Au crédit lima.financialStatement.debitAccounts=Au débit lima.financialStatement.developed=Développé @@ -320,14 +320,14 @@ lima.fiscalControlExport.sirenMissing=Attention \: Votre numéro de Siret n'est lima.fiscalControlExport.success=Export réalisé avec success lima.fiscalControlExport.success.title=Export FEC lima.fiscalPeriod=Exercices -lima.fiscalPeriod.add=Nouvel exercice (Ctrl+A) +lima.fiscalPeriod.add=Nouvel exercice (Ctrl+N) lima.fiscalPeriod.add.confirm.moreThan12=La période sélectionnée n'est pas de 12 mois, voulez-vous continuer ? lima.fiscalPeriod.add.error.beginAfterEndFiscalPeriod=Le date de fin de l'exercice (%2$te/%2$tm/%2$tY) doit être postérieur à la date de début (%1$te/%1$tm/%1$tY) lima.fiscalPeriod.add.error.moreOneUnlockFiscalPeriod=Il existe déjà %1s exercices non clôturés. lima.fiscalPeriod.add.error.notBeginNextDayOfLastFiscalPeriod=La date de début de l'exercice doit suivre la date de fin de l'exercice précédent le %1$te/%1$tm/%1$tY lima.fiscalPeriod.add.form=Nouvel exercice lima.fiscalPeriod.begin=Début -lima.fiscalPeriod.block=Cloturer un exercice (Ctrl+C) +lima.fiscalPeriod.block=Cloturer un exercice (Ctrl+B) lima.fiscalPeriod.block.addRetainedEarnings=Reporter à nouveau? lima.fiscalPeriod.block.cantBalanceIfNextPeriodNotExist=Impossible de créer le report à nouveaux. L'exercice fiscal suivant n'existe pas lima.fiscalPeriod.block.cantBalanceNotBook=Impossible de créer le report à nouveaux. aucun journal n'est selectioné. @@ -437,7 +437,7 @@ lima.importExport.financialStatement=des déclaration financière terminé. lima.importExport.financialTransaction=des transaction financière terminé. lima.importExport.fiscalPeriod=des periodes fiscales terminé. lima.importExport.identity=de l'identité terminé. -lima.importExport.import=Importer +lima.importExport.import=Importer (Ctrl+I) lima.importExport.import.action=Import lima.importExport.vatStatement=des transactions de tva terminé. lima.importExport.wait=Traitement en cours… @@ -487,7 +487,7 @@ lima.preferences=Préférences lima.quit=Quitter lima.refresh=Actualiser lima.refresh.shortcut=Actualiser (F5) -lima.remove.shortcut= +lima.remove.shortcut=Supprimer (Suppr) lima.restart=Veuillez redémarrer l'interface lima.retainedEarnings.wait=Report à nouveau en cours lima.structure=Structure -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 44782ad93f897b23d0f9929e9c49aceaa43dd6c9 Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 11:17:28 2017 +0100 refs #1381 ajout de clefs de traduction --- lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties index 6d93ca9..c00158d 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties @@ -231,7 +231,7 @@ lima.filter.letter=Add filter on letter lima.filter.voucher=Add filter on voucher lima.financialPeriod=Financial period lima.financialPeriod.begin=Begin -lima.financialPeriod.block=Close fiscal period (Ctrl+C) +lima.financialPeriod.block=Close fiscal period (Ctrl+B) lima.financialPeriod.block.confirm=Do you relly want to close this fiscal period ? this action can not be reverted \! lima.financialPeriod.block.error.noLockedPreviousEntryBook.main=Failed to close this fiscal period. Previous fiscal period must be closed\! lima.financialPeriod.block.error.noLockedPreviousEntryBook.previousEntryBook=period from %1$te %1$tB %1$tY to %2$te %2$tB %2$tY @@ -520,12 +520,12 @@ lima.validate=Validate lima.vatStatement=VAT statement chart lima.vatStatement.accounts=List of accounts lima.vatStatement.boxName=PDF BoxName -lima.vatStatement.default= +lima.vatStatement.default=Default lima.vatStatement.delete.parent=Remove parent lima.vatStatement.error.alreadyExistVatStatement= lima.vatStatement.import=Import CSV -lima.vatStatement.import.delete= -lima.vatStatement.import.description= +lima.vatStatement.import.delete=Delete current VAT first +lima.vatStatement.import.description=Choose your VAT statement lima.vatStatement.label=Label lima.vatStatement.master=Master VAT statement lima.vatStatement.movement=Movement -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 60b9593dba23fc1bddf4cb52024df594924f12ad Author: David Cossé <cosse@codelutin.com> Date: Fri Jan 20 12:08:37 2017 +0100 refs #1381 ajout de clefs de traduction --- .../resources/i18n/lima-swing_en_GB.properties | 60 +++++++++++----------- .../resources/i18n/lima-swing_fr_FR.properties | 6 +-- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties index c00158d..38a39db 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties @@ -231,7 +231,7 @@ lima.filter.letter=Add filter on letter lima.filter.voucher=Add filter on voucher lima.financialPeriod=Financial period lima.financialPeriod.begin=Begin -lima.financialPeriod.block=Close fiscal period (Ctrl+B) +lima.financialPeriod.block=Close financial period (Ctrl+B) lima.financialPeriod.block.confirm=Do you relly want to close this fiscal period ? this action can not be reverted \! lima.financialPeriod.block.error.noLockedPreviousEntryBook.main=Failed to close this fiscal period. Previous fiscal period must be closed\! lima.financialPeriod.block.error.noLockedPreviousEntryBook.previousEntryBook=period from %1$te %1$tB %1$tY to %2$te %2$tB %2$tY @@ -298,22 +298,22 @@ lima.financialTransaction.update.error.lockedEntryBook=Update financial transact lima.financialTransaction.update.error.lockedFinancialPeriod=Update financial transaction failed, locked financial period. lima.financialTransaction.voucher=Voucher lima.fiscalControlExport=FEC(fr) export -lima.fiscalControlExport.entryBookAtNew= -lima.fiscalControlExport.entryBookAtNew.toolTip= -lima.fiscalControlExport.export= -lima.fiscalControlExport.file.nonConformanceName= -lima.fiscalControlExport.file.nonConformanceName.cancel= -lima.fiscalControlExport.file.nonConformanceName.continue= -lima.fiscalControlExport.file.nonConformanceName.title= -lima.fiscalControlExport.file.overwrite= -lima.fiscalControlExport.file.overwrite.cancel= -lima.fiscalControlExport.file.overwrite.continue= -lima.fiscalControlExport.file.overwrite.title= -lima.fiscalControlExport.fiscalPeriod= -lima.fiscalControlExport.form= -lima.fiscalControlExport.sirenMissing= -lima.fiscalControlExport.success= -lima.fiscalControlExport.success.title= +lima.fiscalControlExport.entryBookAtNew=Push to new entrybook +lima.fiscalControlExport.entryBookAtNew.toolTip=Select the entrybook to report entries from previous exercice. +lima.fiscalControlExport.export=Export +lima.fiscalControlExport.file.nonConformanceName=The name of the file "%1$s" is not in accordance with that waited by the administration.\n Do you want to continue ? +lima.fiscalControlExport.file.nonConformanceName.cancel=Cancel +lima.fiscalControlExport.file.nonConformanceName.continue=Next +lima.fiscalControlExport.file.nonConformanceName.title=Not valid name of file +lima.fiscalControlExport.file.overwrite=Already existing file "%s". Replace it ? +lima.fiscalControlExport.file.overwrite.cancel=Cancel +lima.fiscalControlExport.file.overwrite.continue=Next +lima.fiscalControlExport.file.overwrite.title=Already existing file +lima.fiscalControlExport.fiscalPeriod=Closed fiscal period +lima.fiscalControlExport.form=Export for entries +lima.fiscalControlExport.sirenMissing=Missing siren number +lima.fiscalControlExport.success=Export done +lima.fiscalControlExport.success.title=FEC export lima.fiscalPeriod=Fiscal period lima.fiscalPeriod.add=Add fiscal period (Ctrl+N) lima.fiscalPeriod.add.confirm.moreThan12=Fiscal period is not 12 month long, do you really want to continue ? @@ -330,15 +330,15 @@ lima.fiscalPeriod.block.cantBlockNotBalance=Faild, unbalanced fiscal period. lima.fiscalPeriod.block.confirmation=Do you really want to close this fiscal period ? This action can no be reverted \! lima.fiscalPeriod.block.error.AlreadyLockedFiscalPeriod=Fiscal period already closed lima.fiscalPeriod.block.error.lastUnlockedFiscalPeriod=Previous fiscal period must be closed -lima.fiscalPeriod.block.error.unbalanced.main= -lima.fiscalPeriod.block.error.unbalanced.transaction= -lima.fiscalPeriod.block.error.unfilled.entry= -lima.fiscalPeriod.block.error.unfilled.main= -lima.fiscalPeriod.block.error.unfilled.noAccount= -lima.fiscalPeriod.block.error.unfilled.noDescription= -lima.fiscalPeriod.block.error.unfilled.noVoucher= -lima.fiscalPeriod.block.error.withoutEntryBook.main= -lima.fiscalPeriod.block.error.withoutEntryBook.transaction= +lima.fiscalPeriod.block.error.unbalanced.main=Impossible to close this exercise because it contains unbalanced transactions \: +lima.fiscalPeriod.block.error.unbalanced.transaction=transaction from %1$tY/%1$tm/%1$te, debit %2$s credit %3$s +lima.fiscalPeriod.block.error.unfilled.entry=entry from %1$te/%1$tm/%1$tY for %2$s \: +lima.fiscalPeriod.block.error.unfilled.main=Impossible to enclose this exercise because some entries need to be completed \: +lima.fiscalPeriod.block.error.unfilled.noAccount=add account +lima.fiscalPeriod.block.error.unfilled.noDescription=add description +lima.fiscalPeriod.block.error.unfilled.noVoucher=add voucher +lima.fiscalPeriod.block.error.withoutEntryBook.main=This exercise can not be close because has it contains transactions without entrybook +lima.fiscalPeriod.block.error.withoutEntryBook.transaction=transaction %1$te/%1$tm/%1$tY for %2$s, lima.fiscalPeriod.block.newYear=Do you want to create new fiscal year lima.fiscalPeriod.block.retainedEarnings=Push next lima.fiscalPeriod.block.title=Close fiscal period @@ -349,10 +349,10 @@ lima.fiscalPeriod.delete.error.noEmptyFiscalPeriod=Failed to remove fiscal perio lima.fiscalPeriod.delete.title=Remove fiscal period lima.fiscalPeriod.end=End lima.fiscalPeriod.entryBooks.create=Create an entry book -lima.fiscalPeriod.error.beginAfterEndFiscalPeriod= -lima.fiscalPeriod.error.lockedFinancialPeriod= -lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod= -lima.fiscalPeriod.error.notBeginNextDayOfLastFiscalPeriod= +lima.fiscalPeriod.error.beginAfterEndFiscalPeriod=The beginning date has to be before the date of the end, beginning\: %1$tY/%1$tm/%1$te fin\: %1$tY/%1$tm/%1$te. +lima.fiscalPeriod.error.lockedFinancialPeriod=The financial period is blocked. +lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod=The maximal number of open exercises is already reached: fiscal period concerned from %1$tY/%1$tm/%1$te to %1$tY/%1$tm/%1$te. +lima.fiscalPeriod.error.notBeginNextDayOfLastFiscalPeriod=The new fiscal period has to follow the previous one. Targeted fiscal period from %1$tY/%1$tm/%1$te to%1$tY/%1$tm/%1$te. lima.fiscalPeriod.form=Fiscal period lima.fiscalPeriod.open=Open lima.fiscalPeriod.status=Status diff --git a/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties b/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties index e388c58..c9d35ec 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_fr_FR.properties @@ -306,7 +306,7 @@ lima.fiscalControlExport=Export FEC lima.fiscalControlExport.entryBookAtNew=Journal des reports à-nouveaux lima.fiscalControlExport.entryBookAtNew.toolTip=Indiquez le journal correspondent aux écritures de reprise des soldes de l'exercice antérieur. lima.fiscalControlExport.export=Exporter -lima.fiscalControlExport.file.nonConformanceName=Le non du fichier "%1$s" n'est pas conforme à celui attendu par l'administration "%2$S". \n Voulez-vous continuer l'export ? +lima.fiscalControlExport.file.nonConformanceName=Le nom du fichier "%1$s" n'est pas conforme à celui attendu par l'administration "%2$S". \n Voulez-vous continuer l'export ? lima.fiscalControlExport.file.nonConformanceName.cancel=Annuler lima.fiscalControlExport.file.nonConformanceName.continue=Exporter lima.fiscalControlExport.file.nonConformanceName.title=Nom de fichier non conforme @@ -335,7 +335,7 @@ lima.fiscalPeriod.block.cantBlockNotBalance=Impossible de clôturer un exercice lima.fiscalPeriod.block.confirmation=Ètes vous sûre de vouloir clôturer cette période ? Cette action est irréversible \! lima.fiscalPeriod.block.error.AlreadyLockedFiscalPeriod=L'exercice est déjà clôturés lima.fiscalPeriod.block.error.lastUnlockedFiscalPeriod=L'exercice prédent doit être clôturé -lima.fiscalPeriod.block.error.unbalanced.main=Impossible de clôturer cet exercicie car il contient des transactions non équilibrées \: +lima.fiscalPeriod.block.error.unbalanced.main=Impossible de clôturer cet exercice car il contient des transactions non équilibrées \: lima.fiscalPeriod.block.error.unbalanced.transaction=transaction du %1$te/%1$tm/%1$tY d'un débit de %2$s et d'un crédit de %3$s lima.fiscalPeriod.block.error.unfilled.entry=entré du %1$te/%1$tm/%1$tY pour un montant de %2$s \: lima.fiscalPeriod.block.error.unfilled.main=Impossible de clôturer cet exercice car il contient des entrés incomplétes \: @@ -357,7 +357,7 @@ lima.fiscalPeriod.end=Fin lima.fiscalPeriod.entryBooks.create=Création d'un nouveau journal lima.fiscalPeriod.error.beginAfterEndFiscalPeriod=La date de début doit être avant la date de fin, debut\: %1$te/%1$tm/%1$tY fin\: %1$te/%1$tm/%1$tY. lima.fiscalPeriod.error.lockedFinancialPeriod=La période financière est bloquée. -lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod=Le nombre maximal d'exercices ouverts est déjà ateint\: periode fiscale concernée du %1$te/%1$tm/%1$tY au %1$te/%1$tm/%1$tY. +lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod=Le nombre maximal d'exercices ouverts est déjà atteint\: période fiscale concernée du %1$te/%1$tm/%1$tY au %1$te/%1$tm/%1$tY. lima.fiscalPeriod.error.notBeginNextDayOfLastFiscalPeriod=La nouvelle période fiscale doit suivre la précédente\: periode fiscale concernée du %1$te/%1$tm/%1$tY au %1$te/%1$tm/%1$tY. lima.fiscalPeriod.form=Exercice lima.fiscalPeriod.open=Ouvert -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1381-fix-shortcut in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 3386aa19d06a4b49019c85df764e520d378b41aa Author: David Cossé <cosse@codelutin.com> Date: Sun Jan 22 21:17:01 2017 +0100 refs #1381 ajout de clefs de traduction --- .../src/main/resources/i18n/lima-swing_en_GB.properties | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties index 38a39db..0c36142 100644 --- a/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties +++ b/lima-swing/src/main/resources/i18n/lima-swing_en_GB.properties @@ -287,11 +287,11 @@ lima.financialTransaction.previousFinancialPeriod=Previous financial period lima.financialTransaction.remove.confirm=Do you really want to remove this financial transaction? lima.financialTransaction.statusTextDebitCredit=<html>Debit\: <b>%s</b> - Credit\: <b>%s</b> - Balance\: <b>%s</b> lima.financialTransaction.statusTextDebitCreditError=<html>Debit\: <b>%s</b> - Credit\: <b>%s</b> - Balance\: <b><font color\=\#ff4000>%s</font></b> -lima.financialTransaction.statusTextPeriod= -lima.financialTransaction.statusTextPeriod.close=<html>For period from <b>%1$td %1$tB %1$tY</b> to <b>%2$td %2$tB %2$tY</b> - <b><FONT COLOR\="red">ENTRY BOOK %3$s IS CLOSE FOR THIS PERIOD</FONT></b> -</html> -lima.financialTransaction.statusTextPeriod.noEntryBookFound= -lima.financialTransaction.statusTextPeriod.noFiscalPeriodFound= -lima.financialTransaction.statusTextPeriod.open=<html>For period from <b>%1$td %1$tB %1$tY</b> to <b>%2$td %2$tB %2$tY</b></html> +lima.financialTransaction.statusTextPeriod=<html>%s</html> +lima.financialTransaction.statusTextPeriod.close=<b><FONT COLOR\="red">ENTRY BOOK %3$s IS CLOSE FOR THIS PERIOD</FONT></b> +lima.financialTransaction.statusTextPeriod.noEntryBookFound=<b><FONT COLOR\="red"> NO ENTRY BOOK FOUND </FONT></b> +lima.financialTransaction.statusTextPeriod.noFiscalPeriodFound=<b><FONT COLOR\="red"> NO PERIOD FISCAL CREATED </FONT></b> +lima.financialTransaction.statusTextPeriod.open=Period from <b>%1$td %1$tB %1$tY</b> to <b>%2$td %2$tB %2$tY</b> lima.financialTransaction.update.error.afterLastFiscalPeriod=Update financial transaction failed, financial transaction date is after last fiscal period date lima.financialTransaction.update.error.beforeFirstFiscalPeriod=Update financial transaction failed, financial transaction date is before first fiscal period date lima.financialTransaction.update.error.lockedEntryBook=Update financial transaction failed, locked entry book. @@ -351,7 +351,7 @@ lima.fiscalPeriod.end=End lima.fiscalPeriod.entryBooks.create=Create an entry book lima.fiscalPeriod.error.beginAfterEndFiscalPeriod=The beginning date has to be before the date of the end, beginning\: %1$tY/%1$tm/%1$te fin\: %1$tY/%1$tm/%1$te. lima.fiscalPeriod.error.lockedFinancialPeriod=The financial period is blocked. -lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod=The maximal number of open exercises is already reached: fiscal period concerned from %1$tY/%1$tm/%1$te to %1$tY/%1$tm/%1$te. +lima.fiscalPeriod.error.moreOneUnlockFiscalPeriod=The maximal number of open exercises is already reached\: fiscal period concerned from %1$tY/%1$tm/%1$te to %1$tY/%1$tm/%1$te. lima.fiscalPeriod.error.notBeginNextDayOfLastFiscalPeriod=The new fiscal period has to follow the previous one. Targeted fiscal period from %1$tY/%1$tm/%1$te to%1$tY/%1$tm/%1$te. lima.fiscalPeriod.form=Fiscal period lima.fiscalPeriod.open=Open -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm