#include "locales.hpp" locale_entry en_locales[] = { // General UI strings. {"ui.unsavedProject", "[unsaved project]"}, {"ui.workingOn", "Working on"}, // 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"}, // Tax strings. {"tax.reverse_charge", "Reverse tax"}, {"tax.exempt", "Tax exempt"}, {"tax.standard", "Standard Rate"}, {"tax.reduced", "Reduced Rate"}, {"tax.superReduced", "Super Reduced Rate"}, // 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", "Results"}, {"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", "Zip, city"}, {"contact.form.country", "Country"}, {"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.table.identifier", "Identifier"}, {"contact.table.name", "Name"}, {"contact.table.address", "Address"}, // 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.vat.table.country", "Country"}, {"settings.vat.table.rates", "Rates"}, {"settings.costcenters.table.code", "Code"}, {"settings.costcenters.table.description", "Description"}, }; const int en_locale_count = sizeof(en_locales) / sizeof(en_locales[0]);