Skip to content

Commit b070efd

Browse files
committed
Fix missing strings, remove old SelectedLicenseInfo component
Signed-off-by: Olga Bulat <obulat@gmail.com>
1 parent 95cf8b8 commit b070efd

File tree

5 files changed

+6
-148
lines changed

5 files changed

+6
-148
lines changed

src/components/CopyrightWaiverStep.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<template>
22
<div>
33
<b-checkbox>
4-
{{$t('stepper.CW.copyright-waive-statement')}}
4+
{{$t('stepper.CW.copyright-waive-agreement')}}
55
</b-checkbox>
6-
<textarea :value="this.$t('cc0-waiver-text')" :class="'waiver-textarea'" />
6+
<textarea :value="this.$t('cc0-waiver.text')" :class="'waiver-textarea'" />
77
<b-checkbox>
88
{{$t("stepper.CW.copyright-waive-confirmation")}}
99
</b-checkbox>

src/components/LicenseCode.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<i18n path="license-use.richtext.full-text" tag="span">
44
<template v-slot:workTitle>
55
<a :href="workUrl" v-if="workUrl && isWeb" rel="cc:attributionURL">
6-
<span v-if="!workTitle">{{$t('license-use.license-richtext.workTitle')}}</span>
6+
<span v-if="!workTitle">{{$t('license-use.richtext.workTitle')}}</span>
77
<span v-else rel="dc:title">{{workTitle}}</span>
88
</a>
99
<span v-else-if="workTitle" rel="dc:title">{{workTitle}}</span>

src/components/LicenseUseCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="license-use-card">
3-
<h4 class="vocab h4b hb">Use Your License</h4>
3+
<h4 class="vocab h4b hb">{{$t('license-use.heading')}}</h4>
44
<p class="license-use-instructions">{{$t('license-use.common-instructions')}}</p>
55
<b-tabs>
66
<b-tab-item label="Website">

src/components/SelectedLicenseInfo.vue

Lines changed: 0 additions & 142 deletions
This file was deleted.

src/components/Step.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<div class="field" :class="yesSelected">
88
<b-radio v-model="radio"
99
native-value="yes">
10-
<span class="vocab-body body-normal">{{$t('yes')}}{{$t(yesText)}}</span>
10+
<span class="vocab-body body-normal">{{$t('stepper.yes')}}{{$t(yesText)}}</span>
1111
</b-radio>
1212
</div>
1313
<div class="field" :class="noSelected">
1414
<b-radio v-model="radio"
1515
native-value="no">
16-
<span class="vocab-body body-normal">{{$t('no')}}{{$t(noText)}}</span>
16+
<span class="vocab-body body-normal">{{$t('stepper.no')}}{{$t(noText)}}</span>
1717
</b-radio>
1818
</div>
1919
</div>

0 commit comments

Comments
 (0)