1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
$self{texts} = {
'Beginning date' => 'Begin datum',
'Continue' => 'Verder',
'Date missing' => 'Datum ontbreekt',
'Delete Open Invoices' => 'Verwijder open facturen',
'Deleting Invoices ... ' => 'Facturen worden verwijderd...',
'From' => 'Van',
'Repost Invoices' => 'Facturen opnieuw boeken',
'To' => 'Tot',
'done' => 'gebeurd',
'please wait' => 'even geduld',
};
$self{subs} = {
'continue' => 'continue',
'delete_invoices' => 'delete_invoices',
'do_delete_invoices' => 'do_delete_invoices',
'do_repost_invoices' => 'do_repost_invoices',
'repost_invoices' => 'repost_invoices',
};
1;
|