@@ -5,10 +5,14 @@ export const useAppTranslation = () => {
55 return {
66 t : ( key : string , options ?: Record < string , any > ) => {
77 const translations : Record < string , string > = {
8+ // Common translations
9+ "common:cancel" : "Cancel" ,
810 // History translations
911 "history:recentTasks" : "Recent Tasks" ,
1012 "history:viewAll" : "View All" ,
1113 "history:history" : "History" ,
14+ "history:exitSelectionMode" : "Exit Selection Mode" ,
15+ "history:enterSelectionMode" : "Enter Selection Mode" ,
1216 "history:done" : "Done" ,
1317 "history:searchPlaceholder" : "Fuzzy search history..." ,
1418 "history:newest" : "Newest" ,
@@ -26,6 +30,19 @@ export const useAppTranslation = () => {
2630 "history:deleteTaskMessage" : "Are you sure you want to delete this task? This action cannot be undone." ,
2731 "history:cancel" : "Cancel" ,
2832 "history:delete" : "Delete" ,
33+ "history:exitSelection" : "Exit Selection" ,
34+ "history:selectionMode" : "Selection Mode" ,
35+ "history:deselectAll" : "Deselect All" ,
36+ "history:selectAll" : "Select All" ,
37+ "history:selectedItems" : "Selected {selected}/{total} items" ,
38+ "history:clearSelection" : "Clear Selection" ,
39+ "history:deleteSelected" : "Delete Selected" ,
40+ "history:deleteTasks" : "Delete Tasks" ,
41+ "history:confirmDeleteTasks" :
42+ "Are you sure you want to delete {count} tasks? This action cannot be undone." ,
43+ "history:deleteTasksWarning" :
44+ "Deleted tasks cannot be recovered. Please make sure you want to proceed." ,
45+ "history:deleteItems" : "Delete {count} Items" ,
2946 }
3047
3148 // Handle interpolation
0 commit comments