Skip to content
Snippets Groups Projects
Commit 6411a33c authored by Paul Pestov's avatar Paul Pestov
Browse files

feat: update trend legend wording

parent 55a6d3bf
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,9 @@ const props = withDefaults(defineProps<{
<template>
<div class="flex space-x-3 text-sm text-gray-600" :class="{ 'text-colors': showTextColors }">
<div class="flex items-center positive"><i class="w-3 h-3 mr-1"></i><span>{{ $t('positive') }}</span></div>
<div class="flex items-center neutral"><i class="w-3 h-3 mr-1"></i><span>{{ $t('neutral') }}</span></div>
<div class="flex items-center negative"><i class="w-3 h-3 mr-1"></i><span>{{ $t('negative') }}</span></div>
<div class="flex items-center positive"><i class="w-3 h-3 mr-1"></i><span>{{ $t('better') }}</span></div>
<div class="flex items-center neutral"><i class="w-3 h-3 mr-1"></i><span>{{ $t('equal') }}</span></div>
<div class="flex items-center negative"><i class="w-3 h-3 mr-1"></i><span>{{ $t('worse') }}</span></div>
</div>
</template>
......
......@@ -58,5 +58,8 @@
"cer_standard_deviation": "CER Standardabweichung",
"positive": "positiv",
"neutral": "neutral",
"negative": "negativ"
"negative": "negativ",
"better": "besser",
"equal": "gleich",
"worse": "schlechter"
}
......@@ -52,5 +52,8 @@
"cer_standard_deviation": "CER Standard Deviation",
"positive": "positive",
"neutral": "neutral",
"negative": "negative"
"negative": "negative",
"better": "better",
"equal": "equal",
"worse": "worse"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment