diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-09 12:51:47 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-09 12:51:47 +0200 |
| commit | 94e52baaed095f571c41cabe80d3a6b7e03653d2 (patch) | |
| tree | 9486f29b22aa34ef47cae6ccc70b0edb8914024c /src/locales | |
| parent | 5854629f246aed30e1e7e4239c9283e2a6c8053f (diff) | |
localize
Diffstat (limited to 'src/locales')
| -rw-r--r-- | src/locales/en.cpp | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/locales/en.cpp b/src/locales/en.cpp index 2b2f2b6..3c208ef 100644 --- a/src/locales/en.cpp +++ b/src/locales/en.cpp @@ -1,6 +1,10 @@ #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"}, @@ -15,6 +19,13 @@ locale_entry en_locales[] = { {"form.confirmCancelProject", "Are you sure you want to cancel this Project?"}, {"form.required", "required"}, + // 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" }, @@ -51,7 +62,8 @@ locale_entry en_locales[] = { {"nav.reports", "Reports"}, {"nav.reports.results", "Results"}, {"nav.reports.tax", "Tax return"}, - {"nav.Projects", "Projects"}, + {"nav.projects", "Projects"}, + {"nav.settings", "Settings"}, // Contact strings. {"contact.form.identifier", "Identifier"}, @@ -69,7 +81,7 @@ locale_entry en_locales[] = { {"contact.table.address", "Address"}, // Project strings. - {"contact.form.identifier", "Identifier"}, + {"project.form.identifier", "Identifier"}, {"project.form.description", "Description"}, {"project.table.identifier", "Identifier"}, {"project.table.status", "Status"}, @@ -77,6 +89,12 @@ locale_entry en_locales[] = { {"project.state.running", "Running"}, {"project.state.cancelled", "Cancelled"}, {"project.state.paused", "Paused"}, + + // Settings strings. + {"settings.table.company", "Company"}, + {"settings.table.vatrates", "VAT Rates"}, + {"settings.vat.table.country", "Country"}, + {"settings.vat.table.rates", "Rates"}, }; const int en_locale_count = sizeof(en_locales) / sizeof(en_locales[0]);
\ No newline at end of file |
