Terms of Use
-
Last modified: September 16, 2023
+
Last modified: August 13, 2026
Acceptance of the Terms of Use
These terms of use are entered into by and between You and Rinth, Inc.
@@ -223,6 +223,10 @@
Use any manual process to monitor or copy any of the material contained in the Service or
for any other unauthorized purpose without our prior written consent.
+
+ Use any data, content, or materials available on or through the Service to train, develop,
+ or improve any artificial intelligence or machine learning models.
+
Use any device, software or routine that interferes with the proper working of the Service.
diff --git a/apps/frontend/src/pages/moderation/reports/index.vue b/apps/frontend/src/pages/moderation/reports/index.vue
index 67973d5e54..e769d666b2 100644
--- a/apps/frontend/src/pages/moderation/reports/index.vue
+++ b/apps/frontend/src/pages/moderation/reports/index.vue
@@ -217,6 +217,7 @@ import {
Combobox,
type ComboboxOption,
commonMessages,
+ formatReportType,
injectModrinthClient,
MultiSelect,
type MultiSelectItem,
@@ -361,7 +362,13 @@ const reportIssueFilterTypes = computed
[]>(() => {
const issueTypes = new Set(allReports.value.map((report) => report.report_type))
const sortedTypes = Array.from(issueTypes).sort()
- return [...base, ...sortedTypes.map((type) => ({ value: type, label: type }))]
+ return [
+ ...base,
+ ...sortedTypes.map((type) => ({
+ value: type,
+ label: formatReportType(formatMessage, type),
+ })),
+ ]
})
type ReportedType = T & { report_item_count: number }
diff --git a/apps/frontend/src/pages/news/article/[slug].vue b/apps/frontend/src/pages/news/article/[slug].vue
index e1aaafde2e..5be54272f1 100644
--- a/apps/frontend/src/pages/news/article/[slug].vue
+++ b/apps/frontend/src/pages/news/article/[slug].vue
@@ -119,7 +119,7 @@ onMounted(() => {
class="flex flex-wrap items-center justify-between gap-4 border-0 border-b-[1px] border-solid border-divider px-6 pb-6"
>
-
+ News
@@ -143,7 +143,7 @@ onMounted(() => {