diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-08 22:04:47 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-08 22:04:47 +0200 |
| commit | b94a7ae06b20d550c727d5192cea8baf3e8fb641 (patch) | |
| tree | 3258eb27e2e3f266f8c220662ebb24ebe3071b79 /src/locales | |
| parent | 21496e32695744d4679fc11105352c61522ce601 (diff) | |
project crud
Diffstat (limited to 'src/locales')
| -rw-r--r-- | src/locales/en.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/locales/en.cpp b/src/locales/en.cpp index de33655..2b2f2b6 100644 --- a/src/locales/en.cpp +++ b/src/locales/en.cpp @@ -10,7 +10,9 @@ locale_entry en_locales[] = { {"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"}, // Countries @@ -65,6 +67,16 @@ locale_entry en_locales[] = { {"contact.table.identifier", "Identifier"}, {"contact.table.name", "Name"}, {"contact.table.address", "Address"}, + + // Project strings. + {"contact.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"}, }; const int en_locale_count = sizeof(en_locales) / sizeof(en_locales[0]);
\ No newline at end of file |
