/* * Copyright (c) 2025 Aldrik Ramaekers * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "locales.hpp" locale_entry en_locales[] = { // General UI strings. {"ui.unsavedProject", "[unsaved project]"}, {"ui.workingOn", "Working on"}, {"ui.invoiceRequirementP1", "Company info ↗"}, {"ui.invoiceRequirementP2", "needs to be completed before adding invoices."}, {"ui.next", "Next >>"}, {"ui.prev", "<< Prev"}, {"ui.tooltip.invalidInvoice", "Invoice has missing information."}, {"ui.tooltip.invalidProject", "Project has missing information."}, {"ui.tooltip.invalidContact", "Contact has missing information."}, // Status strings. {"status.saved", "[Saved to disk]"}, {"status.saveFailed", "[Save failed]"}, // General form buttons. {"form.create", "+ Create"}, {"form.back", "Back"}, {"form.save", "Save"}, {"form.yes", "Yes"}, {"form.no", "No"}, {"form.change", "Change"}, {"form.view", "View"}, {"form.delete", "Delete"}, {"form.cancel", "Cancel"}, {"form.confirmDelete", "Are you sure you want to delete this item?"}, {"form.confirmCancelProject", "Are you sure you want to cancel this Project?"}, {"form.required", "required"}, // Default cost centers {"costcenter.general_expenses", "General Expenses"}, {"costcenter.administration_general_management", "Administration & General Management"}, {"costcenter.finance_accounting", "Finance & Accounting"}, {"costcenter.information_technology", "Information Technology (IT)"}, {"costcenter.sales_marketing", "Sales & Marketing"}, {"costcenter.operations_production", "Operations / Production"}, {"costcenter.supply_chain_logistics", "Supply Chain & Logistics"}, {"costcenter.research_development", "Research & Development"}, {"costcenter.facilities_maintenance", "Facilities & Maintenance"}, {"costcenter.customer_service_support", "Customer Service & Support"}, {"costcenter.other_specialized", "Other / Specialized"}, // Countries { "country.AT", "Austria" }, { "country.BE", "Belgium" }, { "country.BG", "Bulgaria" }, { "country.HR", "Croatia" }, { "country.CY", "Cyprus" }, { "country.CZ", "Czech Republic" }, { "country.DK", "Denmark" }, { "country.EE", "Estonia" }, { "country.FI", "Finland" }, { "country.FR", "France" }, { "country.DE", "Germany" }, { "country.GR", "Greece" }, { "country.HU", "Hungary" }, { "country.IE", "Ireland" }, { "country.IT", "Italy" }, { "country.LV", "Latvia" }, { "country.LT", "Lithuania" }, { "country.LU", "Luxembourg" }, { "country.MT", "Malta" }, { "country.NL", "Netherlands" }, { "country.PL", "Poland" }, { "country.PT", "Portugal" }, { "country.RO", "Romania" }, { "country.SK", "Slovakia" }, { "country.SI", "Slovenia" }, { "country.ES", "Spain" }, { "country.SE", "Sweden" }, // Navigation. {"nav.invoices", "Invoices"}, {"nav.expenses", "Expenses"}, {"nav.contacts", "Contacts"}, {"nav.reports", "Reports"}, {"nav.reports.results", "Earnings"}, {"nav.reports.tax", "Tax return"}, {"nav.projects", "Projects"}, {"nav.settings", "Settings"}, // Contact strings. {"contact.form.identifier", "Identifier"}, {"contact.form.fullname", "Full name / name of business"}, {"contact.form.address1", "Street name + house number, appt. number, etc."}, {"contact.form.address2", "Address line 2"}, {"contact.form.country", "Country"}, {"contact.form.type", "Customer type"}, {"contact.form.type.business", "Business"}, {"contact.form.type.consumer", "Consumer"}, {"contact.form.taxnumber", "Tax number"}, {"contact.form.businessnumber", "Business number"}, {"contact.form.email", "Email address"}, {"contact.form.phonenumber", "Phone number"}, {"contact.form.bankaccount", "Bank account"}, {"contact.form.city", "City"}, {"contact.form.postal", "Postal"}, {"contact.form.region", "Region"}, {"contact.table.identifier", "Identifier"}, {"contact.table.name", "Name"}, {"contact.table.address", "Address"}, {"contact.table.filter.search", "Search..."}, // Project strings. {"project.form.identifier", "Identifier"}, {"project.form.description", "Description"}, {"project.table.identifier", "Identifier"}, {"project.table.status", "Status"}, {"project.table.description", "Description"}, {"project.state.running", "Running"}, {"project.state.cancelled", "Cancelled"}, {"project.state.paused", "Paused"}, // Settings strings. {"settings.table.company", "Company"}, {"settings.table.vatrates", "VAT Rates"}, {"settings.table.costcenters", "Cost Centers"}, {"settings.table.services", "Services"}, {"settings.vat.table.outgoing", "Sales invoice"}, {"settings.vat.table.incomming", "Purchase invoice"}, {"settings.vat.table.rates", "Rate"}, {"settings.vat.table.section", "Tax-report"}, {"settings.costcenters.table.code", "Code"}, {"settings.costcenters.table.description", "Description"}, {"settings.services.ai_service", "AI Service"}, {"settings.services.ai_service.provider", "Provider"}, {"settings.services.ai_service.model", "Model"}, {"settings.services.ai_service.privkey", "Public key"}, {"settings.services.ai_service.pubkey", "Private key"}, // Invoice/expense strings. {"invoice.form.costcenter", "Cost center"}, {"invoice.form.project", "Project"}, {"invoice.form.invoicenumber", "Invoice number"}, {"invoice.form.supplier", "Supplier"}, {"invoice.form.issuedat", "Invoice issued at"}, {"invoice.form.expiresat", "Invoice expires at"}, {"invoice.form.deliveredat", "Product/service delivered at"}, {"invoice.form.billinginformation", "Billing information"}, {"invoice.form.billedTo", "Billed to"}, {"invoice.form.triangulation", "Shipping information differs from billing information (triangulation)"}, {"invoice.form.shippinginformation", "Shipping information"}, {"invoice.form.add", "+ Billing item"}, {"invoice.form.currency", "Currency"}, {"invoice.form.finalSettlement", "Final settlement in"}, {"invoice.table.invoicenumber", "Invoice number"}, {"invoice.table.amount", "Amount"}, {"invoice.table.description", "Description"}, {"invoice.table.price", "Price"}, {"invoice.table.discount", "Discount"}, {"invoice.table.net", "Net"}, {"invoice.table.tax%", "Tax %"}, {"invoice.table.tax", "Tax"}, {"invoice.table.total", "Total"}, {"invoice.table.customer", "Customer"}, {"invoice.table.addressee", "Addressee"}, {"invoice.table.issuedat", "Issued At"}, {"invoice.table.status", "Status"}, {"invoice.table.sender", "Sender"}, {"invoice.status.concept", "Concept"}, {"invoice.status.sent", "Sent"}, {"invoice.status.reminded", "Reminded"}, {"invoice.status.paid", "Paid"}, {"invoice.status.expired", "Expired"}, {"invoice.status.cancelled", "Cancelled"}, {"invoice.status.refunded", "Refunded"}, {"invoice.status.corrected", "Corrected"}, {"invoice.status.received", "Received"}, // Income statement strings. {"statement.uncategorized", "Uncategorized"}, {"statement.revenue", "Revenue"}, {"statement.tax", "Tax"}, {"statement.expenses", "Expenses"}, {"statement.profit", "Profit"}, // Import service. {"import.status.starting","Starting import"}, {"import.status.uploading_file","Uploading file"}, {"import.status.querying","Querying AI provider"}, {"import.status.waiting_for_result","Waiting for result"}, {"import.status.done","Import completed"}, {"import.error.upload","Failure: Upload failed"}, {"import.error.query","Failure: Querying service failed"}, {"import.error.import","Failure: Service returned unparseable response. Try using another model."}, // Tax rate strings. {"taxrate.code.NL/21","21% VAT"}, {"taxrate.code.NL/9","9% VAT"}, {"taxrate.code.NL/0","0% VAT"}, {"taxrate.code.NL/BTV","VAT exempt"}, {"taxrate.code.NL/BVB","Domestic reverse charge VAT"}, {"taxrate.code.NL/PBEU","Product outside EU (reverse charge)"}, {"taxrate.code.NL/PIEU","Product within EU (reverse charge)"}, {"taxrate.code.NL/DIEU","Service within EU (reverse charge)"}, {"taxrate.code.NL/NBTW","No VAT"}, {"taxrate.code.NL/MT/18/D","Malta 18% (Union Scheme) Service"}, {"taxrate.code.NL/MT/5/D","Malta 5% (Union Scheme) Service"}, {"taxrate.code.NL/MT/7/D","Malta 7% (Union Scheme) Service"}, {"taxrate.code.NL/BE/21/D","Belgium 21% (Union Scheme) Service"}, {"taxrate.code.NL/BE/6/D","Belgium 6% (Union Scheme) Service"}, {"taxrate.code.NL/BE/12/D","Belgium 12% (Union Scheme) Service"}, {"taxrate.code.NL/BG/20/D","Bulgaria 20% (Union Scheme) Service"}, {"taxrate.code.NL/BG/9/D","Bulgaria 9% (Union Scheme) Service"}, {"taxrate.code.NL/CY/19/D","Cyprus 19% (Union Scheme) Service"}, {"taxrate.code.NL/CY/5/D","Cyprus 5% (Union Scheme) Service"}, {"taxrate.code.NL/CY/9/D","Cyprus 9% (Union Scheme) Service"}, {"taxrate.code.NL/DK/25/D","Denmark 25% (Union Scheme) Service"}, {"taxrate.code.NL/DE/19/D","Germany 19% (Union Scheme) Service"}, {"taxrate.code.NL/DE/7/D","Germany 7% (Union Scheme) Service"}, {"taxrate.code.NL/EE/24/D","Estonia 24% (Union Scheme) Service"}, {"taxrate.code.NL/EE/9/D","Estonia 9% (Union Scheme) Service"}, {"taxrate.code.NL/FI/25.5/D","Finland 25.5% (Union Scheme) Service"}, {"taxrate.code.NL/FI/10/D","Finland 10% (Union Scheme) Service"}, {"taxrate.code.NL/FI/14/D","Finland 14% (Union Scheme) Service"}, {"taxrate.code.NL/FR/20/D","France 20% (Union Scheme) Service"}, {"taxrate.code.NL/FR/5.5/D","France 5.5% (Union Scheme) Service"}, {"taxrate.code.NL/FR/10/D","France 10% (Union Scheme) Service"}, {"taxrate.code.NL/FR/2.1/D","France 2.1% (Union Scheme) Service"}, {"taxrate.code.NL/GR/24/D","Greece 24% (Union Scheme) Service"}, {"taxrate.code.NL/GR/6/D","Greece 6% (Union Scheme) Service"}, {"taxrate.code.NL/GR/13/D","Greece 13% (Union Scheme) Service"}, {"taxrate.code.NL/HU/27/D","Hungary 27% (Union Scheme) Service"}, {"taxrate.code.NL/HU/5/D","Hungary 5% (Union Scheme) Service"}, {"taxrate.code.NL/HU/18/D","Hungary 18% (Union Scheme) Service"}, {"taxrate.code.NL/IE/23/D","Ireland 23% (Union Scheme) Service"}, {"taxrate.code.NL/IE/9/D","Ireland 9% (Union Scheme) Service"}, {"taxrate.code.NL/IE/13.5/D","Ireland 13.5% (Union Scheme) Service"}, {"taxrate.code.NL/IE/4.8/D","Ireland 4.8% (Union Scheme) Service"}, {"taxrate.code.NL/IT/22/D","Italy 22% (Union Scheme) Service"}, {"taxrate.code.NL/IT/5/D","Italy 5% (Union Scheme) Service"}, {"taxrate.code.NL/IT/10/D","Italy 10% (Union Scheme) Service"}, {"taxrate.code.NL/IT/4/D","Italy 4% (Union Scheme) Service"}, {"taxrate.code.NL/HR/25/D","Croatia 25% (Union Scheme) Service"}, {"taxrate.code.NL/HR/5/D","Croatia 5% (Union Scheme) Service"}, {"taxrate.code.NL/HR/13/D","Croatia 13% (Union Scheme) Service"}, {"taxrate.code.NL/LV/21/D","Latvia 21% (Union Scheme) Service"}, {"taxrate.code.NL/LV/5/D","Latvia 5% (Union Scheme) Service"}, {"taxrate.code.NL/LV/12/D","Latvia 12% (Union Scheme) Service"}, {"taxrate.code.NL/LT/21/D","Lithuania 21% (Union Scheme) Service"}, {"taxrate.code.NL/LT/5/D","Lithuania 5% (Union Scheme) Service"}, {"taxrate.code.NL/LT/9/D","Lithuania 9% (Union Scheme) Service"}, {"taxrate.code.NL/LU/17/D","Luxembourg 17% (Union Scheme) Service"}, {"taxrate.code.NL/LU/8/D","Luxembourg 8% (Union Scheme) Service"}, {"taxrate.code.NL/LU/3/D","Luxembourg 3% (Union Scheme) Service"}, {"taxrate.code.NL/LU/14/D","Luxembourg 14% (Union Scheme) Service"}, {"taxrate.code.NL/GB-NI/20/D","Northern Ireland 20% (Union Scheme) Service"}, {"taxrate.code.NL/GB-NI/5/D","Northern Ireland 5% (Union Scheme) Service"}, {"taxrate.code.NL/AT/20/D","Austria 20% (Union Scheme) Service"}, {"taxrate.code.NL/AT/10/D","Austria 10% (Union Scheme) Service"}, {"taxrate.code.NL/AT/13/D","Austria 13% (Union Scheme) Service"}, {"taxrate.code.NL/PL/23/D","Poland 23% (Union Scheme) Service"}, {"taxrate.code.NL/PL/5/D","Poland 5% (Union Scheme) Service"}, {"taxrate.code.NL/PL/8/D","Poland 8% (Union Scheme) Service"}, {"taxrate.code.NL/PT/23/D","Portugal 23% (Union Scheme) Service"}, {"taxrate.code.NL/PT/6/D","Portugal 6% (Union Scheme) Service"}, {"taxrate.code.NL/PT/13/D","Portugal 13% (Union Scheme) Service"}, {"taxrate.code.NL/RO/21/D","Romania 21% (Union Scheme) Service"}, {"taxrate.code.NL/RO/11/D","Romania 11% (Union Scheme) Service"}, {"taxrate.code.NL/SI/22/D","Slovenia 22% (Union Scheme) Service"}, {"taxrate.code.NL/SI/5/D","Slovenia 5% (Union Scheme) Service"}, {"taxrate.code.NL/SI/9.5/D","Slovenia 9.5% (Union Scheme) Service"}, {"taxrate.code.NL/SK/23/D","Slovakia 23% (Union Scheme) Service"}, {"taxrate.code.NL/SK/19/D","Slovakia 19% (Union Scheme) Service"}, {"taxrate.code.NL/ES/21/D","Spain 21% (Union Scheme) Service"}, {"taxrate.code.NL/ES/10/D","Spain 10% (Union Scheme) Service"}, {"taxrate.code.NL/ES/4/D","Spain 4% (Union Scheme) Service"}, {"taxrate.code.NL/CZ/21/D","Czech Republic 21% (Union Scheme) Service"}, {"taxrate.code.NL/CZ/12/D","Czech Republic 12% (Union Scheme) Service"}, {"taxrate.code.NL/SE/25/D","Sweden 25% (Union Scheme) Service"}, {"taxrate.code.NL/SE/6/D","Sweden 6% (Union Scheme) Service"}, {"taxrate.code.NL/SE/12/D","Sweden 12% (Union Scheme) Service"}, {"taxrate.code.NL/BE/21/3C","Belgium 21% (NL/3c)"}, {"taxrate.code.NL/BE/6/3C","Belgium 6% (NL/3c)"}, {"taxrate.code.NL/BE/12/3C","Belgium 12% (NL/3c)"}, {"taxrate.code.NL/BG/20/3C","Bulgaria 20% (NL/3c)"}, {"taxrate.code.NL/BG/9/3C","Bulgaria 9% (NL/3c)"}, {"taxrate.code.NL/CY/19/3C","Cyprus 19% (NL/3c)"}, {"taxrate.code.NL/CY/5/3C","Cyprus 5% (NL/3c)"}, {"taxrate.code.NL/CY/9/3C","Cyprus 9% (NL/3c)"}, {"taxrate.code.NL/DK/25/3C","Denmark 25% (NL/3c)"}, {"taxrate.code.NL/DE/19/3C","Germany 19% (NL/3c)"}, {"taxrate.code.NL/DE/7/3C","Germany 7% (NL/3c)"}, {"taxrate.code.NL/EE/24/3C","Estonia 24% (NL/3c)"}, {"taxrate.code.NL/EE/9/3C","Estonia 9% (NL/3c)"}, {"taxrate.code.NL/FI/25.5/3C","Finland 25.5% (NL/3c)"}, {"taxrate.code.NL/FI/10/3C","Finland 10% (NL/3c)"}, {"taxrate.code.NL/FI/14/3C","Finland 14% (NL/3c)"}, {"taxrate.code.NL/FR/20/3C","France 20% (NL/3c)"}, {"taxrate.code.NL/FR/5.5/3C","France 5.5% (NL/3c)"}, {"taxrate.code.NL/FR/10/3C","France 10% (NL/3c)"}, {"taxrate.code.NL/FR/2.1/3C","France 2.1% (NL/3c)"}, {"taxrate.code.NL/GR/24/3C","Greece 24% (NL/3c)"}, {"taxrate.code.NL/GR/6/3C","Greece 6% (NL/3c)"}, {"taxrate.code.NL/GR/13/3C","Greece 13% (NL/3c)"}, {"taxrate.code.NL/HU/27/3C","Hungary 27% (NL/3c)"}, {"taxrate.code.NL/HU/5/3C","Hungary 5% (NL/3c)"}, {"taxrate.code.NL/HU/18/3C","Hungary 18% (NL/3c)"}, {"taxrate.code.NL/IE/23/3C","Ireland 23% (NL/3c)"}, {"taxrate.code.NL/IE/9/3C","Ireland 9% (NL/3c)"}, {"taxrate.code.NL/IE/13.5/3C","Ireland 13.5% (NL/3c)"}, {"taxrate.code.NL/IE/4.8/3C","Ireland 4.8% (NL/3c)"}, {"taxrate.code.NL/IT/22/3C","Italy 22% (NL/3c)"}, {"taxrate.code.NL/IT/5/3C","Italy 5% (NL/3c)"}, {"taxrate.code.NL/IT/10/3C","Italy 10% (NL/3c)"}, {"taxrate.code.NL/IT/4/3C","Italy 4% (NL/3c)"}, {"taxrate.code.NL/HR/25/3C","Croatia 25% (NL/3c)"}, {"taxrate.code.NL/HR/5/3C","Croatia 5% (NL/3c)"}, {"taxrate.code.NL/HR/13/3C","Croatia 13% (NL/3c)"}, {"taxrate.code.NL/LV/21/3C","Latvia 21% (NL/3c)"}, {"taxrate.code.NL/LV/5/3C","Latvia 5% (NL/3c)"}, {"taxrate.code.NL/LV/12/3C","Latvia 12% (NL/3c)"}, {"taxrate.code.NL/LT/21/3C","Lithuania 21% (NL/3c)"}, {"taxrate.code.NL/LT/5/3C","Lithuania 5% (NL/3c)"}, {"taxrate.code.NL/LT/9/3C","Lithuania 9% (NL/3c)"}, {"taxrate.code.NL/LU/17/3C","Luxembourg 17% (NL/3c)"}, {"taxrate.code.NL/LU/8/3C","Luxembourg 8% (NL/3c)"}, {"taxrate.code.NL/LU/3/3C","Luxembourg 3% (NL/3c)"}, {"taxrate.code.NL/LU/14/3C","Luxembourg 14% (NL/3c)"}, {"taxrate.code.NL/MT/18/3C","Malta 18% (NL/3c)"}, {"taxrate.code.NL/MT/5/3C","Malta 5% (NL/3c)"}, {"taxrate.code.NL/MT/7/3C","Malta 7% (NL/3c)"}, {"taxrate.code.NL/GB-NI/20/3C","Northern Ireland 20% (NL/3c)"}, {"taxrate.code.NL/GB-NI/5/3C","Northern Ireland 5% (NL/3c)"}, {"taxrate.code.NL/AT/20/3C","Austria 20% (NL/3c)"}, {"taxrate.code.NL/AT/10/3C","Austria 10% (NL/3c)"}, {"taxrate.code.NL/AT/13/3C","Austria 13% (NL/3c)"}, {"taxrate.code.NL/PL/23/3C","Poland 23% (NL/3c)"}, {"taxrate.code.NL/PL/5/3C","Poland 5% (NL/3c)"}, {"taxrate.code.NL/PL/8/3C","Poland 8% (NL/3c)"}, {"taxrate.code.NL/PT/23/3C","Portugal 23% (NL/3c)"}, {"taxrate.code.NL/PT/6/3C","Portugal 6% (NL/3c)"}, {"taxrate.code.NL/PT/13/3C","Portugal 13% (NL/3c)"}, {"taxrate.code.NL/RO/21/3C","Romania 21% (NL/3c)"}, {"taxrate.code.NL/RO/11/3C","Romania 11% (NL/3c)"}, {"taxrate.code.NL/SI/22/3C","Slovenia 22% (NL/3c)"}, {"taxrate.code.NL/SI/5/3C","Slovenia 5% (NL/3c)"}, {"taxrate.code.NL/SI/9.5/3C","Slovenia 9.5% (NL/3c)"}, {"taxrate.code.NL/SK/23/3C","Slovakia 23% (NL/3c)"}, {"taxrate.code.NL/SK/19/3C","Slovakia 19% (NL/3c)"}, {"taxrate.code.NL/ES/21/3C","Spain 21% (NL/3c)"}, {"taxrate.code.NL/ES/10/3C","Spain 10% (NL/3c)"}, {"taxrate.code.NL/ES/4/3C","Spain 4% (NL/3c)"}, {"taxrate.code.NL/CZ/21/3C","Czech Republic 21% (NL/3c)"}, {"taxrate.code.NL/CZ/12/3C","Czech Republic 12% (NL/3c)"}, {"taxrate.code.NL/SE/25/3C","Sweden 25% (NL/3c)"}, {"taxrate.code.NL/SE/6/3C","Sweden 6% (NL/3c)"}, {"taxrate.code.NL/SE/12/3C","Sweden 12% (NL/3c)"}, {"taxrate.code.NL/BE/21/P","Belgium 21% (Union Scheme) Product"}, {"taxrate.code.NL/BE/6/P","Belgium 6% (Union Scheme) Product"}, {"taxrate.code.NL/BE/12/P","Belgium 12% (Union Scheme) Product"}, {"taxrate.code.NL/BG/20/P","Bulgaria 20% (Union Scheme) Product"}, {"taxrate.code.NL/BG/9/P","Bulgaria 9% (Union Scheme) Product"}, {"taxrate.code.NL/CY/19/P","Cyprus 19% (Union Scheme) Product"}, {"taxrate.code.NL/CY/5/P","Cyprus 5% (Union Scheme) Product"}, {"taxrate.code.NL/CY/9/P","Cyprus 9% (Union Scheme) Product"}, {"taxrate.code.NL/DK/25/P","Denmark 25% (Union Scheme) Product"}, {"taxrate.code.NL/DE/19/P","Germany 19% (Union Scheme) Product"}, {"taxrate.code.NL/DE/7/P","Germany 7% (Union Scheme) Product"}, {"taxrate.code.NL/EE/24/P","Estonia 24% (Union Scheme) Product"}, {"taxrate.code.NL/EE/9/P","Estonia 9% (Union Scheme) Product"}, {"taxrate.code.NL/FI/25.5/P","Finland 25.5% (Union Scheme) Product"}, {"taxrate.code.NL/FI/10/P","Finland 10% (Union Scheme) Product"}, {"taxrate.code.NL/FI/14/P","Finland 14% (Union Scheme) Product"}, {"taxrate.code.NL/FR/20/P","France 20% (Union Scheme) Product"}, {"taxrate.code.NL/FR/5.5/P","France 5.5% (Union Scheme) Product"}, {"taxrate.code.NL/FR/10/P","France 10% (Union Scheme) Product"}, {"taxrate.code.NL/FR/2.1/P","France 2.1% (Union Scheme) Product"}, {"taxrate.code.NL/GR/24/P","Greece 24% (Union Scheme) Product"}, {"taxrate.code.NL/GR/6/P","Greece 6% (Union Scheme) Product"}, {"taxrate.code.NL/GR/13/P","Greece 13% (Union Scheme) Product"}, {"taxrate.code.NL/HU/27/P","Hungary 27% (Union Scheme) Product"}, {"taxrate.code.NL/HU/5/P","Hungary 5% (Union Scheme) Product"}, {"taxrate.code.NL/HU/18/P","Hungary 18% (Union Scheme) Product"}, {"taxrate.code.NL/IE/23/P","Ireland 23% (Union Scheme) Product"}, {"taxrate.code.NL/IE/9/P","Ireland 9% (Union Scheme) Product"}, {"taxrate.code.NL/IE/13.5/P","Ireland 13.5% (Union Scheme) Product"}, {"taxrate.code.NL/IE/4.8/P","Ireland 4.8% (Union Scheme) Product"}, {"taxrate.code.NL/IT/22/P","Italy 22% (Union Scheme) Product"}, {"taxrate.code.NL/IT/5/P","Italy 5% (Union Scheme) Product"}, {"taxrate.code.NL/IT/10/P","Italy 10% (Union Scheme) Product"}, {"taxrate.code.NL/IT/4/P","Italy 4% (Union Scheme) Product"}, {"taxrate.code.NL/HR/25/P","Croatia 25% (Union Scheme) Product"}, {"taxrate.code.NL/HR/5/P","Croatia 5% (Union Scheme) Product"}, {"taxrate.code.NL/HR/13/P","Croatia 13% (Union Scheme) Product"}, {"taxrate.code.NL/LV/21/P","Latvia 21% (Union Scheme) Product"}, {"taxrate.code.NL/LV/5/P","Latvia 5% (Union Scheme) Product"}, {"taxrate.code.NL/LV/12/P","Latvia 12% (Union Scheme) Product"}, {"taxrate.code.NL/LT/21/P","Lithuania 21% (Union Scheme) Product"}, {"taxrate.code.NL/LT/5/P","Lithuania 5% (Union Scheme) Product"}, {"taxrate.code.NL/LT/9/P","Lithuania 9% (Union Scheme) Product"}, {"taxrate.code.NL/LU/17/P","Luxembourg 17% (Union Scheme) Product"}, {"taxrate.code.NL/LU/8/P","Luxembourg 8% (Union Scheme) Product"}, {"taxrate.code.NL/LU/3/P","Luxembourg 3% (Union Scheme) Product"}, {"taxrate.code.NL/LU/14/P","Luxembourg 14% (Union Scheme) Product"}, {"taxrate.code.NL/MT/18/P","Malta 18% (Union Scheme) Product"}, {"taxrate.code.NL/MT/5/P","Malta 5% (Union Scheme) Product"}, {"taxrate.code.NL/MT/7/P","Malta 7% (Union Scheme) Product"}, {"taxrate.code.NL/GB-NI/20/P","Northern Ireland 20% (Union Scheme) Product"}, {"taxrate.code.NL/GB-NI/5/P","Northern Ireland 5% (Union Scheme) Product"}, {"taxrate.code.NL/AT/20/P","Austria 20% (Union Scheme) Product"}, {"taxrate.code.NL/AT/10/P","Austria 10% (Union Scheme) Product"}, {"taxrate.code.NL/AT/13/P","Austria 13% (Union Scheme) Product"}, {"taxrate.code.NL/PL/23/P","Poland 23% (Union Scheme) Product"}, {"taxrate.code.NL/PL/5/P","Poland 5% (Union Scheme) Product"}, {"taxrate.code.NL/PL/8/P","Poland 8% (Union Scheme) Product"}, {"taxrate.code.NL/PT/23/P","Portugal 23% (Union Scheme) Product"}, {"taxrate.code.NL/PT/6/P","Portugal 6% (Union Scheme) Product"}, {"taxrate.code.NL/PT/13/P","Portugal 13% (Union Scheme) Product"}, {"taxrate.code.NL/RO/21/P","Romania 21% (Union Scheme) Product"}, {"taxrate.code.NL/RO/11/P","Romania 11% (Union Scheme) Product"}, {"taxrate.code.NL/SI/22/P","Slovenia 22% (Union Scheme) Product"}, {"taxrate.code.NL/SI/5/P","Slovenia 5% (Union Scheme) Product"}, {"taxrate.code.NL/SI/9.5/P","Slovenia 9.5% (Union Scheme) Product"}, {"taxrate.code.NL/SK/23/P","Slovakia 23% (Union Scheme) Product"}, {"taxrate.code.NL/SK/19/P","Slovakia 19% (Union Scheme) Product"}, {"taxrate.code.NL/ES/21/P","Spain 21% (Union Scheme) Product"}, {"taxrate.code.NL/ES/10/P","Spain 10% (Union Scheme) Product"}, {"taxrate.code.NL/ES/4/P","Spain 4% (Union Scheme) Product"}, {"taxrate.code.NL/CZ/21/P","Czech Republic 21% (Union Scheme) Product"}, {"taxrate.code.NL/CZ/12/P","Czech Republic 12% (Union Scheme) Product"}, {"taxrate.code.NL/SE/25/P","Sweden 25% (Union Scheme) Product"}, {"taxrate.code.NL/SE/6/P","Sweden 6% (Union Scheme) Product"}, {"taxrate.code.NL/SE/12/P","Sweden 12% (Union Scheme) Product"}, {"taxrate.code.NL/BE/21","Belgium 21%"}, {"taxrate.code.NL/BE/6","Belgium 6%"}, {"taxrate.code.NL/BE/12","Belgium 12%"}, {"taxrate.code.NL/BG/20","Bulgaria 20%"}, {"taxrate.code.NL/BG/9","Bulgaria 9%"}, {"taxrate.code.NL/CY/19","Cyprus 19%"}, {"taxrate.code.NL/CY/5","Cyprus 5%"}, {"taxrate.code.NL/CY/9","Cyprus 9%"}, {"taxrate.code.NL/DK/25","Denmark 25%"}, {"taxrate.code.NL/DE/19","Germany 19%"}, {"taxrate.code.NL/DE/7","Germany 7%"}, {"taxrate.code.NL/EE/24","Estonia 24%"}, {"taxrate.code.NL/EE/9","Estonia 9%"}, {"taxrate.code.NL/FI/25.5","Finland 25.5%"}, {"taxrate.code.NL/FI/10","Finland 10%"}, {"taxrate.code.NL/FI/14","Finland 14%"}, {"taxrate.code.NL/FR/20","France 20%"}, {"taxrate.code.NL/FR/5.5","France 5.5%"}, {"taxrate.code.NL/FR/10","France 10%"}, {"taxrate.code.NL/FR/2.1","France 2.1%"}, {"taxrate.code.NL/GR/24","Greece 24%"}, {"taxrate.code.NL/GR/6","Greece 6%"}, {"taxrate.code.NL/GR/13","Greece 13%"}, {"taxrate.code.NL/HU/27","Hungary 27%"}, {"taxrate.code.NL/HU/5","Hungary 5%"}, {"taxrate.code.NL/HU/18","Hungary 18%"}, {"taxrate.code.NL/IE/23","Ireland 23%"}, {"taxrate.code.NL/IE/9","Ireland 9%"}, {"taxrate.code.NL/IE/13.5","Ireland 13.5%"}, {"taxrate.code.NL/IE/4.8","Ireland 4.8%"}, {"taxrate.code.NL/IT/22","Italy 22%"}, {"taxrate.code.NL/IT/5","Italy 5%"}, {"taxrate.code.NL/IT/10","Italy 10%"}, {"taxrate.code.NL/IT/4","Italy 4%"}, {"taxrate.code.NL/HR/25","Croatia 25%"}, {"taxrate.code.NL/HR/5","Croatia 5%"}, {"taxrate.code.NL/HR/13","Croatia 13%"}, {"taxrate.code.NL/LV/21","Latvia 21%"}, {"taxrate.code.NL/LV/5","Latvia 5%"}, {"taxrate.code.NL/LV/12","Latvia 12%"}, {"taxrate.code.NL/LT/21","Lithuania 21%"}, {"taxrate.code.NL/LT/5","Lithuania 5%"}, {"taxrate.code.NL/LT/9","Lithuania 9%"}, {"taxrate.code.NL/LU/17","Luxembourg 17%"}, {"taxrate.code.NL/LU/8","Luxembourg 8%"}, {"taxrate.code.NL/LU/3","Luxembourg 3%"}, {"taxrate.code.NL/LU/14","Luxembourg 14%"}, {"taxrate.code.NL/MT/18","Malta 18%"}, {"taxrate.code.NL/MT/5","Malta 5%"}, {"taxrate.code.NL/MT/7","Malta 7%"}, {"taxrate.code.NL/GB-NI/20","Northern Ireland 20%"}, {"taxrate.code.NL/GB-NI/5","Northern Ireland 5%"}, {"taxrate.code.NL/AT/20","Austria 20%"}, {"taxrate.code.NL/AT/10","Austria 10%"}, {"taxrate.code.NL/AT/13","Austria 13%"}, {"taxrate.code.NL/PL/23","Poland 23%"}, {"taxrate.code.NL/PL/5","Poland 5%"}, {"taxrate.code.NL/PL/8","Poland 8%"}, {"taxrate.code.NL/PT/23","Portugal 23%"}, {"taxrate.code.NL/PT/6","Portugal 6%"}, {"taxrate.code.NL/PT/13","Portugal 13%"}, {"taxrate.code.NL/RO/21","Romania 21%"}, {"taxrate.code.NL/RO/11","Romania 11%"}, {"taxrate.code.NL/SI/22","Slovenia 22%"}, {"taxrate.code.NL/SI/5","Slovenia 5%"}, {"taxrate.code.NL/SI/9.5","Slovenia 9.5%"}, {"taxrate.code.NL/SK/23","Slovakia 23%"}, {"taxrate.code.NL/SK/19","Slovakia 19%"}, {"taxrate.code.NL/ES/21","Spain 21%"}, {"taxrate.code.NL/ES/10","Spain 10%"}, {"taxrate.code.NL/ES/4","Spain 4%"}, {"taxrate.code.NL/CZ/21","Czech Republic 21%"}, {"taxrate.code.NL/CZ/12","Czech Republic 12%"}, {"taxrate.code.NL/SE/25","Sweden 25%"}, {"taxrate.code.NL/SE/6","Sweden 6%"}, {"taxrate.code.NL/SE/12","Sweden 12%"}, {"taxrate.code.NL_IN/21/5B","21% VAT"}, {"taxrate.code.NL_IN/9/5B","9% VAT"}, {"taxrate.code.NL_IN/BTV/5B","VAT exempt"}, {"taxrate.code.NL_IN/NBTW/5B","No VAT"}, {"taxrate.code.NL_IN/BV/21","Domestic reverse charge 21% VAT"}, {"taxrate.code.NL_IN/BV/9","Domestic reverse charge 9% VAT"}, {"taxrate.code.NL_IN/BEUV/21","Outside EU reverse charge 21% VAT"}, {"taxrate.code.NL_IN/BEUV/9","Outside EU reverse charge 9% VAT"}, {"taxrate.code.NL_IN/IEUV/21","Intra-EU reverse charge 21% VAT"}, {"taxrate.code.NL_IN/IEUV/9","Intra-EU reverse charge 9% VAT"}, // Tax statement strings. {"taxes.total", "Total"}, {"taxes.nl.1", "Domestic supplies and services"}, {"taxes.nl.1a", "Supplies/services taxed at the high rate"}, {"taxes.nl.1b", "Supplies/services taxed at the reduced rate"}, {"taxes.nl.1c", "Supplies/services taxed at other rates (excluding 0%)"}, {"taxes.nl.1d", "Private use"}, {"taxes.nl.1e", "Supplies/services taxed at 0% or not taxed with you"}, {"taxes.nl.2", "Reverse-charge arrangements within the Netherlands"}, {"taxes.nl.2a", "Supplies/services for which VAT has been reverse-charged to you"}, {"taxes.nl.3", "Supplies and services to or in other countries"}, {"taxes.nl.3a", "Supplies to countries outside the EU (exports)"}, {"taxes.nl.3b", "Supplies to or services in EU countries"}, {"taxes.nl.3c", "Intra-EU distance sales and installation supplies"}, {"taxes.nl.4", "Services supplied to you from abroad"}, {"taxes.nl.4a", "Supplies/services received from countries outside the EU (imports)"}, {"taxes.nl.4b", "Supplies/services received from countries within the EU (intra-EU acquisitions)"}, {"taxes.nl.5", "Input tax and small businesses scheme (KOR)"}, {"taxes.nl.5a", "VAT due (sections 1 to 4)"}, {"taxes.nl.5b", "Input tax (VAT deductible)"}, }; int en_locale_count = sizeof(en_locales) / sizeof(en_locales[0]);