Part of #145. Sixteen files that were left out of my earlier PRs because my branch also carried unrelated changes in them. Those are stripped here: each file is your current `develop` version with the string extraction applied on top, nothing else. Covered: the chore action hook and its toasts, activities and smart-insight cards, the chore toolbar, chore history and its card, saved filters, the timer details view, project and label modals, the notification picker, the pending badge, the sync status indicator, the SSE settings and hook, and the profile avatar menu. All namespaces already exist, so `src/i18n/config.js` is untouched. Keys added: 83 `chores`, 31 `common`, 10 `timer`, 9 `history`, 6 `labels`, 5 `projects`, 2 `filters`, 1 `settings`. English only — no translations, no behaviour change. Every t() value is checked to appear character-for-character in the code it replaces, or to match the value already in your dictionary for the same key: 221 call sites, no mismatches. Five files from the same batch are deliberately left out. They build translated labels in module-level constant tables, where the hook cannot be called — `FilterBar`, `RepeatSection`, `RepeatPickerField`, `FilterBuilderContent` and `AdvancedOptionsSection`. Those need the key to travel as data and be resolved inside the component, which is a design change rather than an extraction, so it deserves its own PR.
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"iconPicker": {
|
|
"chooseIcon": "Choose Project Icon",
|
|
"availableIcons": "Available Icons"
|
|
},
|
|
"defaultChip": "Default",
|
|
"tasks_one": "{{count}} task",
|
|
"tasks_other": "{{count}} tasks",
|
|
"shared": "Shared",
|
|
"delete": {
|
|
"title": "Delete Project",
|
|
"message": "Are you sure you want to delete \"{{name}}\"? This will remove the project but keep all tasks (they'll move to the Default Project)."
|
|
},
|
|
"loadError": "Failed to load projects. Please try again.",
|
|
"blurb": "Organize your tasks into projects. Create custom workspaces to keep your tasks organized and easily accessible.",
|
|
"defaultDescription": "All tasks without a specific project",
|
|
"selector": {
|
|
"title": "Projects",
|
|
"createNew": "Create New Project",
|
|
"createNewDescription": "Add a custom project workspace",
|
|
"manage": "Manage Projects",
|
|
"manageDescription": "View, edit, and organize all projects"
|
|
},
|
|
"modal": {
|
|
"errorNameRequired": "Project name is required",
|
|
"errorUpdate": "Failed to update project",
|
|
"errorCreate": "Failed to create project",
|
|
"namePlaceholder": "Enter project name...",
|
|
"descriptionPlaceholder": "Optional project description..."
|
|
}
|
|
}
|