Files
donetick/public/locales/en/things.json
Mo Tarbin 1fa4748168 feat: integrate i18n for translation in various components
- Updated NativeCancelSubscriptionModal to use translation keys for titles and messages.
- Enhanced CircleSetupView with translation for notifications and UI text.
- Refactored ThingsView to implement translation for notifications, titles, and descriptions.
- Added translation support in AdvancedOptionsSection for labels and descriptions.
- Implemented i18n in RepeatPickerField for various UI elements and labels.
2026-08-18 01:27:57 -04:00

61 lines
2.3 KiB
JSON

{
"errName": "Name is required",
"errStateNumber": "State must be a number",
"errStateBool": "State must be true or false",
"errStateRequired": "State is required",
"name": "Name",
"namePlaceholder": "Thing name",
"value": "Value",
"valuePlaceholder": "Thing value",
"updateState": "Update state",
"update": "Update",
"history": {
"overview": "Things Overview",
"visualization": "Data Visualization",
"changeHistory": "Change History",
"updated": "Updated"
},
"view": {
"title": "Things",
"description": "Things are custom fields that can be attached to tasks to capture additional information. They can be of type text, number, or boolean. You can associate things with tasks and have the task due once condition is met",
"searchPlaceholder": "Search things",
"sortName": "Name",
"sortType": "Type",
"sortState": "State",
"sortUpdated": "Last updated",
"filterTitle": "Type",
"filterAll": "All types",
"emptyTitle": "No things yet",
"emptyDescription": "A thing tracks a value, like a counter or a switch, that other tasks can react to. Create one to trigger tasks automatically.",
"emptyAction": "Create a thing",
"noResultsTitle": "No things match",
"noResultsSearch": "No thing matches \"{{term}}\".",
"noResultsFilter": "No thing matches the current filter.",
"clearSearch": "Clear search",
"showAll": "Show all things",
"toggle": "Toggle"
},
"types": {
"text": "Text",
"number": "Number",
"boolean": "Boolean"
},
"notify": {
"savedTitle": "Saved",
"savedMessage": "Thing saved successfully",
"saveFailTitle": "Unable to save thing",
"queuedMessage": "You are offline and the request has been queued",
"saveFailMessage": "An error occurred while saving the thing",
"deleteTitle": "Delete Things",
"deleteMessage": "Are you sure you want to delete this Thing?",
"deleteBlockedTitle": "Unable to Delete Thing",
"deleteBlockedMessage": "Unable to delete thing with associated tasks",
"deleteFailTitle": "Unable to delete thing",
"deleteFailMessage": "An error occurred while deleting the thing",
"updatedTitle": "Updated",
"updatedMessage": "Thing state updated successfully",
"updateFailTitle": "Unable to update thing state",
"updateFailMessage": "An error occurred while updating the thing state"
}
}