adds translation and updated rules

This commit is contained in:
Christian Beutel
2024-04-13 21:28:56 +02:00
parent feb2214b1b
commit 4b656b7cd0
7 changed files with 126 additions and 39 deletions

View File

@@ -31,7 +31,6 @@
import Textarea from "../base/textarea.svelte";
import CommentCard from "../comment/comment_card.svelte";
import PhotoGallery from "../photo_gallery.svelte";
import { page } from "$app/stores";
export let trail: Trail;
export let mode: "overview" | "map" = "map";
@@ -42,7 +41,7 @@
$_("waypoints"),
$_("photos"),
$_("summit-book"),
$_("comment", { values: { n: 2 } }),
...($currentUser ? [$_("comment", { values: { n: 2 } })] : []),
];
let map: Map;