Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | 13x | export const EN = {
translation: {
nav: {
generate: 'Generate',
library: 'Library',
profile: 'Profile',
},
layout: {
generate: 'Cooking Assistant',
library: 'Library',
profile: 'Profile',
},
theme: {
light: 'Light',
auto: 'Auto',
dark: 'Dark',
switchTo: 'Switch to {{mode}} theme',
},
profile: {
signedInAs: 'Signed in as <1>{{username}}</1>.',
logout: 'Log out',
preferences: 'Preferences',
language: 'Language',
detectLanguage: 'Auto',
english: 'English',
german: 'Deutsch',
hungarian: 'Magyar',
aboutMe: 'About me',
aboutMePlaceholder: 'e.g. I cook for a family of four and love spicy food',
diet: 'Diet',
addDiet: 'add diet',
dietPlaceholders: [
'e.g. vegetarian',
'e.g. keto',
'e.g. pescatarian',
'e.g. low-carb',
],
allergies: 'Allergies',
addAllergy: 'add allergy',
allergyPlaceholders: [
'e.g. peanuts',
'e.g. shellfish',
'e.g. gluten',
'e.g. eggs',
'e.g. tree nuts',
'e.g. dairy',
'e.g. soy',
'e.g. sesame',
],
updateUsername: 'Update username',
newUsername: 'New username',
usernameUpdated: 'Username updated',
enterNewUsername: 'Enter a new username',
usernameTaken: 'Username already taken',
updatePassword: 'Update password',
newPassword: 'New password',
repeatNewPassword: 'Repeat new password',
passwordUpdated: 'Password updated',
enterNewPassword: 'Enter a new password',
passwordsNoMatch: 'Passwords do not match',
saving: 'Saving…',
couldntReachServer: "Couldn't reach the server",
invalidRequest: 'Invalid request',
deleteAccount: 'Delete account',
deleteAccountWarning:
'Permanently delete your account and all your saved recipes. This cannot be undone.',
deleteAccountConfirm: 'Yes, delete my account',
deleteAccountCancel: 'Cancel',
deleting: 'Deleting…',
},
common: {
error: 'Error: {{message}}',
loading: 'Loading…',
cancel: 'Cancel',
delete: 'Delete',
edit: 'Edit',
dismiss: 'Dismiss',
back: 'Back',
portion: 'portion',
portions: 'portions',
kcal: '{{value}} kcal',
protein: '{{value}}g protein',
fat: '{{value}}g fat',
carbs: '{{value}}g carbs',
save: 'Save',
saving: 'Saving…',
},
login: {
login: 'Login',
register: 'Register',
signup: 'Sign up',
pleaseWait: 'Please wait…',
username: 'Username',
password: 'Password',
repeatPassword: 'Repeat password',
passwordsNoMatch: 'Passwords do not match',
},
notFound: {
title: '404 — Page not found',
goHome: 'Go back home',
},
generate: {
heading: 'What do you want to cook today?',
placeholder: 'Type what you think (optional)',
viewRecipes: 'View recipes',
edit: 'Edit',
noOptions: 'No options selected',
generatingStatus: 'Generating recipes… (this might take a while)',
noRecipes: 'No recipes returned.',
generating: 'Generating…',
generate: 'Generate',
clear: 'Clear selection',
},
library: {
emptyTitle: 'Your cookbook is empty',
emptyBody:
'Nothing saved yet. Cook up some ideas and tap the <bookmark/> to stash your favourites here.',
generateRecipe: 'Generate a recipe',
},
recipe: {
ingredients: 'Ingredients',
instructions: 'Instructions',
getHelp: 'Get help',
helpPlaceholder:
'Ask about this recipe (e.g. a substitution, a technique, what to serve it with)',
thinking: 'Thinking…',
noResponse: 'No response.',
previous: 'Previous',
next: 'Next',
previousRecipe: 'Previous recipe',
nextRecipe: 'Next recipe',
decreasePortions: 'Decrease portions',
increasePortions: 'Increase portions',
pageOf: '{{current}} of {{total}}',
notFoundTitle: 'Recipe not found',
notFoundBody: "This recipe doesn't exist or has been removed.",
backToLibrary: 'Back to library',
edit: 'Edit recipe',
titlePlaceholder: 'Recipe title',
portionsLabel: 'Portions',
quantity: 'Qty',
unit: 'Unit',
ingredientName: 'Ingredient',
addIngredient: 'Add ingredient',
removeIngredient: 'Remove ingredient',
stepPlaceholder: 'Describe this step',
addStep: 'Add step',
removeStep: 'Remove step',
nutrients: 'Nutrients',
estimateNutrients: 'Estimate using AI',
estimatingNutrients: 'Estimating…',
caloriesLabel: 'Calories',
proteinLabel: 'Protein',
fatLabel: 'Fat',
carbsLabel: 'Carbs',
discardTitle: 'Discard edits?',
discard: 'Discard',
keepEditing: 'Keep editing',
},
save: {
saveTitle: 'Save recipe',
savedTitle: 'Saved — tap to remove',
retryTitle: 'Something went wrong, tap to retry',
removeAria: 'Remove from collection',
genericError: 'Something went wrong.',
confirmTitle: 'Delete recipe from library?',
unsavedTitle: 'Save recipe to library?',
toLibrary: 'Save to library',
keepDraft: 'Keep as draft',
},
},
} as const
|