Skip to content

Commit

Permalink
Add descriptions of Korp, Strix
Browse files Browse the repository at this point in the history
  • Loading branch information
arildm committed Sep 18, 2023
1 parent b062494 commit 5c2ebee
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
21 changes: 19 additions & 2 deletions src/corpus/exports/Exports.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,24 @@
<p>{{ $t("exports.tools.help") }}</p>

<div class="flex gap-2 my-2 justify-between items-baseline">
<h3 class="text-lg uppercase">Korp</h3>
<div>
<h3 class="text-lg uppercase">Korp</h3>
<p class="text-sm text-gray-500 dark:text-gray-400">
{{ $t("exports.tools.help.korp") }}
<a :href="$t('exports.tools.help.korp.manual.url')">
<ActionButton class="slim mute">
{{ $t("exports.tools.help.korp.manual.text") }}
</ActionButton>
</a>
</p>
</div>

<div class="flex flex-wrap gap-2 justify-end">
<ActionButton
:variant="canInstall && !korpStatus.isDone ? 'primary' : null"
:disabled="!canInstall"
@click="canInstall ? korpInstall() : null"
class="whitespace-nowrap"
>
{{
$t(
Expand All @@ -43,13 +54,19 @@
</div>

<div class="flex gap-2 my-2 justify-between items-baseline">
<h3 class="text-lg uppercase">Strix</h3>
<div>
<h3 class="text-lg uppercase">Strix</h3>
<p class="text-sm text-gray-500 dark:text-gray-400">
{{ $t("exports.tools.help.strix") }}
</p>
</div>

<div class="flex flex-wrap gap-2 justify-end">
<ActionButton
:variant="canInstall && !strixStatus.isDone ? 'primary' : null"
:disabled="!canInstall"
@click="canInstall ? strixInstall() : null"
class="whitespace-nowrap"
>
{{
$t(
Expand Down
4 changes: 4 additions & 0 deletions src/i18n/locales/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ jwt.refreshing: Refreshing account
tools: Explore
exports.loading: Listing result files
exports.tools.help: Use this data in Språkbanken's corpus tools. Your data will be available to you only, in a special Mink mode.
exports.tools.help.korp: Korp offers concordance search, detailed queries, frequency statistics and more.
exports.tools.help.korp.manual.url: https://spraakbanken.gu.se/en/tools/korp/user-manual
exports.tools.help.korp.manual.text: User manual
exports.tools.help.strix: In Strix, the enriched texts can be examined in full.
exports.tools.install: Install
exports.tools.reinstall: Reinstall
exports.tools.view: View
Expand Down
4 changes: 4 additions & 0 deletions src/i18n/locales/sv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ jwt.refreshing: Uppdaterar konto
tools: Utforska
exports.loading: Hämtar resultatlista
exports.tools.help: Använd den här datan i Språkbankens korpusverktyg. Din data visas bara för dig, i ett särskilt Mink-läge.
exports.tools.help.korp: I Korp finns konkordanssökning, detaljerade sökfrågor, frekvensstatistik m m.
exports.tools.help.korp.manual.url: https://spraakbanken.gu.se/verktyg/korp/anvandarhandledning
exports.tools.help.korp.manual.text: Användarhandledning
exports.tools.help.strix: I Strix kan de berikade texterna undersökas i sin helhet.
exports.tools.install: Installera
exports.tools.reinstall: Installera om
exports.tools.view: Visa
Expand Down

0 comments on commit 5c2ebee

Please sign in to comment.