export const seeLog = { title: 'See', userCustomLogs: 'Log Anything', nutritionScore: 'Nutrition Score', nutrients: 'Nutrients', eatenToday: 'Eaten Today', noFoodLogged: 'No food logged yet today', report: { title: 'Report', generate: 'Generate report', regenerate: 'Regenerate', generating: 'Generating report...', ingredientsToEat: 'Ingredients to Eat', recipeIdeas: 'Menu Ideas', logToGenerate: 'Log food to generate a report.', }, analyzingItems: (count: number) => `Analyzing ${count} item${count === 1 ? '' : 's'}`, sorting: { default: 'Default', priority: 'Priority', leastFilled: 'Least Filled', }, nutrientBreakdown: { usRealFood: 'U.S. Real Food', important: 'Important', hardToEat: 'Hard to eat only with food', more: 'More', showLess: 'Show less', showMore: (count: number) => `Show ${count} more`, }, foodLog: { needsAttention: 'Needs attention', identifying: 'Identifying...', analyzing: 'Analyzing...', }, detail: { logNotFound: 'Log not found', ingredients: 'Ingredients', detection: 'Detection', nutrition: 'Nutrition', liked: 'Liked', disliked: 'Disliked', share: 'Share', editName: 'Edit Name', deleteConfirmMessage: 'Are you sure you want to delete this meal?', deleteError: 'Failed to delete log.', updateError: 'Failed to update log.', }, castle: { claude: 'Claude', gemini: 'Gemini', gpt: 'GPT', castle: 'Castle', noNutritionData: 'No nutrition data', votedFor: 'voted for', report: 'Report', whatEachAiDetected: 'What each AI detected', nutritionComparison: 'Nutrition comparison', judging: 'Judging...', judgeResults: 'Judge Results', theVerdict: 'The Verdict', failedToJudge: 'Failed to judge', failedToJudgePredictions: 'Failed to judge predictions', theSelectedOption: 'the selected option', theOtherOptions: 'the other options', ingredientQuery: (name: string) => `Tell me more about the nutrition info for the food ingredient: ${name}`, optionTemplate: (i: number, foodName: string, ingredients: string) => `Option ${i}:\nName: ${foodName}\nIngredients: ${ingredients}`, fallbackReport: (selectedName: string, ingredients: string, otherList: string) => `Selected ${selectedName} because its dish name${ingredients} align best with visible cues such as structure, color, and garnishes. The other descriptions (${otherList}) appear less consistent with likely preparation or ingredient combinations. This decision weighs plausibility, ingredient coherence, and overall visual fit more than generic similarity or guesswork.`, }, };