summaryrefslogtreecommitdiff
path: root/src/locales
diff options
context:
space:
mode:
Diffstat (limited to 'src/locales')
-rw-r--r--src/locales/en.cpp22
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