Skip to content
Open
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
7 changes: 5 additions & 2 deletions src/components/ui/alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const AlertTitle = React.forwardRef<
>(({ className, ...props }, ref) => (
<p
ref={ref}
className={cn("mb-1 font-semibold leading-none", className)}
className={cn("my-3 mt-5 font-semibold leading-none", className)}
{...props}
/>
));
Expand All @@ -54,7 +54,10 @@ const AlertDescription = React.forwardRef<
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("[&_p]:leading-relaxed", className)}
className={cn(
"mb-5 [&>:first-child]:mt-0 [&_p]:leading-relaxed",
className,
)}
{...props}
/>
));
Expand Down
20 changes: 16 additions & 4 deletions src/content/rules/prioritize-official-translations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,25 @@ Note that alternative names can be put as an alias of an entry.
For "[Servant of Evil](https://vocadb.net/S/1358)", despite the more known "Servant of Evil" title, the official translation, "His significance of existence", should be used as the primary name.

<BoxGroup>
<Alert variant="incorrect">**English**: Servant of Evil</Alert>
<Alert variant="correct">**English**: His significance of existence</Alert>
<Alert variant="incorrect">
<></>
**English**: Servant of Evil
</Alert>
<Alert variant="correct">
<></>
**English**: His significance of existence
</Alert>
</BoxGroup>

For "[DUNE](https://vocadb.net/S/157860)", although the transliteration "Sand Planet" is popular, the official translation, "DUNE", should be used as the primary name.

<BoxGroup>
<Alert variant="incorrect">**English**: Sand Planet</Alert>
<Alert variant="correct">**English**: DUNE</Alert>
<Alert variant="incorrect">
<></>
**English**: Sand Planet
</Alert>
<Alert variant="correct">
<></>
**English**: DUNE
</Alert>
</BoxGroup>