Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/pages/noodles/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ if (import.meta.server && !noodle.value) {

<template v-else>
<p class="font-mono text-xs tracking-widest uppercase text-fg-subtle mb-3">
404 β€” empty bowl
404 β€” {{ $t('noodles.missing.empty_bowl') }}
</p>
<h1 class="font-mono text-3xl sm:text-4xl font-medium tracking-tight mb-4">
{{ $t('noodles.missing.title') }}
Expand Down
3 changes: 2 additions & 1 deletion i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@
"back_to_archive": "Back to all noodles",
"missing": {
"title": "This noodle never made it out of the bowl.",
"body": "We don't have a β€œ{slug}” noodle on the menu. Either it's still being plated, or it was never written. Either way β€” back to the archive."
"body": "We don't have a β€œ{slug}” noodle on the menu. Either it's still being plated, or it was never written. Either way β€” back to the archive.",
"empty_bowl": "empty bowl"
}
},
"settings": {
Expand Down
3 changes: 3 additions & 0 deletions i18n/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,9 @@
},
"body": {
"type": "string"
},
"empty_bowl": {
"type": "string"
}
},
"additionalProperties": false
Expand Down
Loading