@saooti/octopus-sdk 38.2.16 → 38.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/assets/general.scss +1 -1
- package/src/components/display/sharing/ShareButtons.vue +2 -2
- package/src/components/misc/modal/NewsletterModal.vue +123 -220
- package/src/locale/de.ts +8 -5
- package/src/locale/en.ts +8 -5
- package/src/locale/es.ts +8 -5
- package/src/locale/fr.ts +9 -6
- package/src/locale/it.ts +8 -5
- package/src/locale/sl.ts +8 -5
package/package.json
CHANGED
package/src/assets/general.scss
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
30
30
|
<div class="d-flex align-items-center">
|
|
31
|
-
|
|
31
|
+
<div
|
|
32
32
|
v-if="podcast || emission || playlist"
|
|
33
33
|
class="d-flex flex-column ms-4"
|
|
34
34
|
>
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
@click="newsletter = true"
|
|
44
44
|
/>
|
|
45
45
|
</div>
|
|
46
|
-
</div>
|
|
46
|
+
</div>
|
|
47
47
|
<div class="d-flex flex-column ms-4">
|
|
48
48
|
<div class="h2 mb-2">
|
|
49
49
|
{{ $t("QR Code") }}
|
|
@@ -1,75 +1,58 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<ClassicModal
|
|
3
3
|
id-modal="newsletter-modal"
|
|
4
|
-
:title-modal="
|
|
4
|
+
:title-modal="newsletterInfo.titleModal"
|
|
5
5
|
:closable="false"
|
|
6
6
|
@close="closePopup"
|
|
7
7
|
>
|
|
8
8
|
<template #body>
|
|
9
|
-
<div class="d-flex
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
<div class="d-flex
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
type="text"
|
|
23
|
-
:class="{ 'border border-danger': 0 === shareUrl }"
|
|
9
|
+
<div class="d-flex flex-column">
|
|
10
|
+
<h4 class="mb-3">
|
|
11
|
+
{{ $t("Configure your Newsletter tile") }}
|
|
12
|
+
</h4>
|
|
13
|
+
<div class="d-flex align-items-center mb-3">
|
|
14
|
+
<VSwatches
|
|
15
|
+
v-model="color"
|
|
16
|
+
class="c-hand me-2"
|
|
17
|
+
show-fallback
|
|
18
|
+
fallback-input-type="color"
|
|
19
|
+
colors="text-advanced"
|
|
20
|
+
popover-to="right"
|
|
21
|
+
:data-color="color"
|
|
24
22
|
/>
|
|
25
|
-
<
|
|
26
|
-
<
|
|
27
|
-
|
|
28
|
-
id-checkbox="display-emission-name"
|
|
29
|
-
:label="$t('Display emission name')"
|
|
30
|
-
/>
|
|
31
|
-
<ClassicCheckbox
|
|
32
|
-
v-model:textInit="displayParticipantsNames"
|
|
33
|
-
id-checkbox="display-participants-names"
|
|
34
|
-
:label="$t('Display participants list')"
|
|
35
|
-
/>
|
|
36
|
-
</template>
|
|
37
|
-
<div class="d-flex align-items-center mt-2">
|
|
38
|
-
<VSwatches
|
|
39
|
-
v-model="color"
|
|
40
|
-
class="c-hand me-2 mt-2"
|
|
41
|
-
show-fallback
|
|
42
|
-
fallback-input-type="color"
|
|
43
|
-
colors="text-advanced"
|
|
44
|
-
popover-to="right"
|
|
45
|
-
:data-color="color"
|
|
46
|
-
/>
|
|
47
|
-
<div>{{ $t("Choose main color") }}</div>
|
|
23
|
+
<div class="d-flex flex-column">
|
|
24
|
+
<div class="fw-bold">{{ $t("Choose main color") }}</div>
|
|
25
|
+
<div>{{ $t("Newsletter elements") }}</div>
|
|
48
26
|
</div>
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
27
|
+
</div>
|
|
28
|
+
<div class="d-flex">
|
|
29
|
+
<!-- eslint-disable vue/no-v-html -->
|
|
30
|
+
<div class="flex-grow-1 me-3" v-html="newsletterHtml" />
|
|
31
|
+
<!-- eslint-enable -->
|
|
32
|
+
<div class="d-flex flex-column">
|
|
33
|
+
<h4 class="mb-2">
|
|
34
|
+
{{ $t("Copy and embed the HTML code into your email tool") }}
|
|
54
35
|
</h4>
|
|
55
|
-
<
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
@click="onCopyCode(newsletterHtml, afterCopy)"
|
|
36
|
+
<textarea
|
|
37
|
+
id="newsletter_code_textarea"
|
|
38
|
+
v-model="newsletterHtml"
|
|
39
|
+
readonly
|
|
40
|
+
@click="selectAll"
|
|
61
41
|
/>
|
|
42
|
+
<label
|
|
43
|
+
for="newsletter_code_textarea"
|
|
44
|
+
:title="$t('Copy and embed the HTML code into your email tool')"
|
|
45
|
+
/>
|
|
46
|
+
<button
|
|
47
|
+
class="btn btn-primary width-fit-content mt-2"
|
|
48
|
+
@click="onCopyCode(newsletterHtml, afterCopy)"
|
|
49
|
+
>
|
|
50
|
+
{{ $t("Copy") }}
|
|
51
|
+
</button>
|
|
62
52
|
</div>
|
|
63
|
-
<textarea
|
|
64
|
-
id="newsletter_code_textarea"
|
|
65
|
-
v-model="newsletterHtml"
|
|
66
|
-
readonly
|
|
67
|
-
@click="selectAll"
|
|
68
|
-
/>
|
|
69
|
-
<label for="newsletter_code_textarea" :title="$t('HTML Code')" />
|
|
70
53
|
</div>
|
|
54
|
+
<SnackBar ref="snackbar" position="bottom-left" />
|
|
71
55
|
</div>
|
|
72
|
-
<SnackBar ref="snackbar" position="bottom-left" />
|
|
73
56
|
</template>
|
|
74
57
|
<template #footer>
|
|
75
58
|
<button class="btn btn-primary m-1" @click="closePopup">
|
|
@@ -81,16 +64,11 @@
|
|
|
81
64
|
|
|
82
65
|
<script lang="ts">
|
|
83
66
|
import ClassicModal from "../modal/ClassicModal.vue";
|
|
84
|
-
import ClassicCheckbox from "../../form/ClassicCheckbox.vue";
|
|
85
67
|
import SnackBar from "../../misc/SnackBar.vue";
|
|
86
|
-
import dayjs from "dayjs";
|
|
87
68
|
// @ts-ignore
|
|
88
69
|
import { VSwatches } from "vue3-swatches";
|
|
89
70
|
import "vue3-swatches/dist/style.css";
|
|
90
|
-
// @ts-ignore
|
|
91
|
-
import humanizeDuration from "humanize-duration";
|
|
92
71
|
import displayMethods from "../../mixins/displayMethods";
|
|
93
|
-
import { Participant } from "@/stores/class/general/participant";
|
|
94
72
|
import { Podcast } from "@/stores/class/general/podcast";
|
|
95
73
|
import { state } from "../../../stores/ParamSdkStore";
|
|
96
74
|
import { defineComponent } from "vue";
|
|
@@ -105,7 +83,6 @@ export default defineComponent({
|
|
|
105
83
|
components: {
|
|
106
84
|
SnackBar,
|
|
107
85
|
VSwatches,
|
|
108
|
-
ClassicCheckbox,
|
|
109
86
|
ClassicModal,
|
|
110
87
|
},
|
|
111
88
|
|
|
@@ -121,8 +98,6 @@ export default defineComponent({
|
|
|
121
98
|
|
|
122
99
|
data() {
|
|
123
100
|
return {
|
|
124
|
-
displayParticipantsNames: true as boolean,
|
|
125
|
-
displayEmissionName: true as boolean,
|
|
126
101
|
color: "#40a372" as string,
|
|
127
102
|
shareUrl: window.location.href,
|
|
128
103
|
};
|
|
@@ -130,163 +105,94 @@ export default defineComponent({
|
|
|
130
105
|
|
|
131
106
|
computed: {
|
|
132
107
|
...mapState(useAuthStore, ["authOrganisation"]),
|
|
133
|
-
|
|
134
|
-
if (!this.podcast || 1970 === dayjs(this.podcast.pubDate).year()) {
|
|
135
|
-
return "";
|
|
136
|
-
}
|
|
137
|
-
return dayjs(this.podcast.pubDate).format("D MMMM YYYY, HH[h]mm");
|
|
138
|
-
},
|
|
139
|
-
duration(): string {
|
|
140
|
-
if (!this.podcast || this.podcast.duration <= 1) return "";
|
|
141
|
-
if (this.podcast.duration > 600000) {
|
|
142
|
-
return humanizeDuration(this.podcast.duration, {
|
|
143
|
-
language: this.$i18n.locale,
|
|
144
|
-
largest: 1,
|
|
145
|
-
round: true,
|
|
146
|
-
});
|
|
147
|
-
}
|
|
148
|
-
return humanizeDuration(this.podcast.duration, {
|
|
149
|
-
language: this.$i18n.locale,
|
|
150
|
-
largest: 2,
|
|
151
|
-
round: true,
|
|
152
|
-
});
|
|
153
|
-
},
|
|
154
|
-
emissionName(): string {
|
|
155
|
-
if (!this.displayEmissionName || !this.podcast) {
|
|
156
|
-
return "";
|
|
157
|
-
}
|
|
158
|
-
return `<tr><td colspan="2" style="font-size: 16px;line-height:24px;font-weight: bold;">${this.podcast.emission.name}</td></tr>`;
|
|
159
|
-
},
|
|
160
|
-
articleHtml(): string {
|
|
161
|
-
if (!this.podcast?.article || 0 === this.podcast.article?.length) {
|
|
162
|
-
return "";
|
|
163
|
-
}
|
|
164
|
-
return `<a href="${this.podcast.article}" title="${this.$t(
|
|
165
|
-
"See associated article",
|
|
166
|
-
)}">
|
|
167
|
-
<img width="44" height="44" style="display: inline-block;vertical-align: middle; margin-right:3px" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAA6UlEQVRIie3WPUpEMRTF8R9+4QpEBGttrcdeV+E2pp3KdYi7GBRttNVCZgOCjSuQ+UCLJzLIe7l3HpFpPJAuOf+T5F4SYh3jFZ/JMVlevJUwv8c+HvEQzD/FIBEaHOFtKdkosWb0PfdHGwXzOxxk03SpDVDNvA1Q1bwNcFMwn/cB/K6iQ+3VMsVVDQDcylVMSl1VBOea5FFjTXHWZVJqtCdcYjcI+YHnPoB3FY6qdERVVNrBHi6wGXgscK3Z8UqAE80dbAeAGV4wXhUwxk5gHurP72CtgP9Gw5oabYBhT7/wwZ/If09S35Yv52lVAXwyqt0AAAAASUVORK5CYII=">
|
|
168
|
-
</a>
|
|
169
|
-
<a style="color: #000;text-decoration: none;" href="${
|
|
170
|
-
this.podcast.article
|
|
171
|
-
}">${this.$t("See associated article")}</a>`;
|
|
172
|
-
},
|
|
173
|
-
participantsName(): string {
|
|
174
|
-
if (
|
|
175
|
-
!this.displayParticipantsNames ||
|
|
176
|
-
!this.podcast ||
|
|
177
|
-
!this.podcast.animators
|
|
178
|
-
)
|
|
179
|
-
return "";
|
|
180
|
-
const text = [""];
|
|
181
|
-
this.podcast.animators.forEach((element: Participant) => {
|
|
182
|
-
text.push(
|
|
183
|
-
`<table width='100%' style="width:100%;background: #f3f3f3;font-family: Arial, sans-serif;font-size: 12px;line-height: 20px;border-bottom-left-radius: 1.5em;border-bottom-right-radius: 1.5em;">
|
|
184
|
-
<tr>
|
|
185
|
-
<td width="90" rowspan="2" style="text-align:left; vertical-align: top; width: 90px;padding:0 15px 15px 10px">
|
|
186
|
-
<img width="72" style="width: 62px;height: 62px;border-radius: 50%;background-color: #fff;" src="${
|
|
187
|
-
element.imageUrl
|
|
188
|
-
}" alt="${this.$t("Animator image")}">
|
|
189
|
-
</td>
|
|
190
|
-
<td height="1" style="height: 1px;text-align:left; font-size: 14px;line-height:20px;vertical-align: top;font-weight: bold;padding-top: 23px;">${this.getName(
|
|
191
|
-
element,
|
|
192
|
-
)}</td>
|
|
193
|
-
</tr>`,
|
|
194
|
-
);
|
|
195
|
-
if (element.description) {
|
|
196
|
-
text.push(
|
|
197
|
-
`<tr><td style="height: 100%;text-align:justify;padding-bottom: 15px;padding-right: 15px; font-size: 12px;line-height:16px;vertical-align: top">
|
|
198
|
-
${element.description}</td></tr>`,
|
|
199
|
-
);
|
|
200
|
-
}
|
|
201
|
-
text.push(`</table>`);
|
|
202
|
-
});
|
|
203
|
-
return text.join("");
|
|
204
|
-
},
|
|
205
|
-
imageUrl(): string {
|
|
108
|
+
newsletterInfo() {
|
|
206
109
|
if (this.podcast) {
|
|
207
|
-
return
|
|
110
|
+
return {
|
|
111
|
+
titleModal: this.$t("Share the episode in your newsletter"),
|
|
112
|
+
imageUrl: `${this.podcast.imageUrl}" alt="${this.$t(
|
|
113
|
+
"Podcast image",
|
|
114
|
+
)}`,
|
|
115
|
+
title:
|
|
116
|
+
"Un super podcast de camille !Un super podcast de camille !Un super podcast de camille !!Un super podcast de camille ", //this.podcast.title,
|
|
117
|
+
description: this.podcast.description ?? "",
|
|
118
|
+
shareText: this.$t("Listen this episode"),
|
|
119
|
+
emissionHtml: `<tr><td>
|
|
120
|
+
<div style="display:flex; margin-top:5px;">
|
|
121
|
+
<div style="font-size:20px; color:gray; margin-right:5px;">${this.$t(
|
|
122
|
+
"Emission",
|
|
123
|
+
)} :</div>
|
|
124
|
+
<a href="${this.shareUrl}" style="font-size: 18px;color: ${
|
|
125
|
+
this.color
|
|
126
|
+
};">${this.podcast.emission.name}</a>
|
|
127
|
+
</div></td></tr>`,
|
|
128
|
+
articleHtml:
|
|
129
|
+
!this.podcast?.article || 0 === this.podcast.article?.length
|
|
130
|
+
? ``
|
|
131
|
+
: `<tr><td>
|
|
132
|
+
<div style="display:flex;">
|
|
133
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="currentColor" d="M7 17h7v-2H7zm0-4h10v-2H7zm0-4h10V7H7zM5 21q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm0-2h14V5H5zM5 5v14z"/></svg>
|
|
134
|
+
<a href="${
|
|
135
|
+
this.podcast.article
|
|
136
|
+
}" style="color: black;margin-top:2px">${this.$t(
|
|
137
|
+
"See associated article",
|
|
138
|
+
)}</a>
|
|
139
|
+
</div></td></tr>
|
|
140
|
+
`,
|
|
141
|
+
colorTitle: `color:black;`,
|
|
142
|
+
};
|
|
208
143
|
}
|
|
209
144
|
if (this.emission) {
|
|
210
|
-
return
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
145
|
+
return {
|
|
146
|
+
titleModal: this.$t("Share the series in your newsletter"),
|
|
147
|
+
imageUrl: `${this.emission.imageUrl}" alt="${this.$t(
|
|
148
|
+
"Emission image",
|
|
149
|
+
)}`,
|
|
150
|
+
title: this.emission.name,
|
|
151
|
+
description: this.emission.description ?? "",
|
|
152
|
+
shareText: this.$t("Listen to all episodes"),
|
|
153
|
+
emissionHtml: ``,
|
|
154
|
+
articleHtml: ``,
|
|
155
|
+
colorTitle: `color:${this.color};`,
|
|
156
|
+
};
|
|
214
157
|
}
|
|
215
|
-
return
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}
|
|
227
|
-
return "";
|
|
228
|
-
},
|
|
229
|
-
description(): string {
|
|
230
|
-
if (this.podcast?.description) {
|
|
231
|
-
return `<tr><td colspan="2" valign="top" style="line-height:24px;font-size: 14px;max-width: 500px;">${this.podcast.description}</td></tr>`;
|
|
232
|
-
}
|
|
233
|
-
if (this.emission?.description) {
|
|
234
|
-
return `<tr><td colspan="2" valign="top" style="line-height:24px;font-size: 14px;max-width: 500px;">${this.emission.description}</td></tr>`;
|
|
235
|
-
}
|
|
236
|
-
if (this.playlist?.description) {
|
|
237
|
-
return `<tr><td colspan="2" valign="top" style="line-height:24px;font-size: 14px;max-width: 500px;">${this.playlist.description}</td></tr>`;
|
|
238
|
-
}
|
|
239
|
-
return "";
|
|
240
|
-
},
|
|
241
|
-
shareText(): string {
|
|
242
|
-
if (this.podcast) {
|
|
243
|
-
return this.$t("Listen this episode");
|
|
244
|
-
}
|
|
245
|
-
if (this.emission) {
|
|
246
|
-
return this.$t("All podcast emission button");
|
|
247
|
-
}
|
|
248
|
-
return this.$t("Podcasts in the playlist");
|
|
249
|
-
},
|
|
250
|
-
durationPodcast(): string {
|
|
251
|
-
if (!this.podcast) {
|
|
252
|
-
return "";
|
|
253
|
-
}
|
|
254
|
-
return `<td colspan="2" style="height: 1px;color: #666;font-size: 12px;line-height: 16px;padding-top:15px;">
|
|
255
|
-
<span>${this.date}</span>
|
|
256
|
-
<span style="padding: 0 10px">${this.$t("Duration", {
|
|
257
|
-
duration: this.duration,
|
|
258
|
-
})}</span>
|
|
259
|
-
</td>`;
|
|
158
|
+
return {
|
|
159
|
+
titleModal: this.$t("Share the playlist in your newsletter"),
|
|
160
|
+
imageUrl: `${this.playlist?.imageUrl}" alt="${this.$t(
|
|
161
|
+
"Playlist image",
|
|
162
|
+
)}`,
|
|
163
|
+
title: this.playlist?.title,
|
|
164
|
+
description: this.playlist?.description ?? "",
|
|
165
|
+
shareText: this.$t("Listen to all episodes"),
|
|
166
|
+
emissionHtml: ``,
|
|
167
|
+
articleHtml: ``,
|
|
168
|
+
colorTitle: `color:${this.color};`,
|
|
169
|
+
};
|
|
260
170
|
},
|
|
261
171
|
newsletterHtml(): string {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
</tr>
|
|
287
|
-
</table>${this.participantsName}`,
|
|
288
|
-
);
|
|
289
|
-
return html.join("");
|
|
172
|
+
return `<table style=" table-layout: fixed;width:100%;font-family: Arial,sans-serif;font-size: 14px;line-height: 20px; border:1px solid gray;">
|
|
173
|
+
<tr>
|
|
174
|
+
<td valign="top" width="30%" rowspan="7"><img width="100%" src="${
|
|
175
|
+
this.newsletterInfo.imageUrl
|
|
176
|
+
}" style="border-radius: 4px; padding-right:5px;"></td>
|
|
177
|
+
<td valign="top" width="70%"><div style="margin-top:5px;font-size: 24px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-weight:bold;${
|
|
178
|
+
this.newsletterInfo.colorTitle
|
|
179
|
+
}">${this.newsletterInfo.title}</div></td>
|
|
180
|
+
</tr>${this.newsletterInfo.emissionHtml}
|
|
181
|
+
<tr><td><div style="overflow: hidden;display: -webkit-box;-webkit-line-clamp: 6;-webkit-box-orient: vertical;word-break: break-word;">${
|
|
182
|
+
this.newsletterInfo.description
|
|
183
|
+
}</div></td></tr>
|
|
184
|
+
<tr><td valign="top"><a href="${this.shareUrl}" style="font-size: 18px;color: ${
|
|
185
|
+
this.color
|
|
186
|
+
};">${this.$t("See more")}</a></td></tr>
|
|
187
|
+
<tr>${this.newsletterInfo.articleHtml}
|
|
188
|
+
<td width="1"><a href="${this.shareUrl}" style="font-size: 18px;color: ${
|
|
189
|
+
this.color
|
|
190
|
+
};text-decoration: none; display:flex;"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24"><path fill="currentColor" d="m9.5 16.5l7-4.5l-7-4.5zM12 22q-2.075 0-3.9-.788t-3.175-2.137q-1.35-1.35-2.137-3.175T2 12q0-2.075.788-3.9t2.137-3.175q1.35-1.35 3.175-2.137T12 2q2.075 0 3.9.788t3.175 2.137q1.35 1.35 2.138 3.175T22 12q0 2.075-.788 3.9t-2.137 3.175q-1.35 1.35-3.175 2.138T12 22"/></svg><div style="margin-top: 15px; color:black;">${
|
|
191
|
+
this.newsletterInfo.shareText
|
|
192
|
+
}</div></a></td>
|
|
193
|
+
</tr>
|
|
194
|
+
</table>
|
|
195
|
+
`;
|
|
290
196
|
},
|
|
291
197
|
},
|
|
292
198
|
created() {
|
|
@@ -297,9 +203,6 @@ export default defineComponent({
|
|
|
297
203
|
closePopup(): void {
|
|
298
204
|
this.$emit("close");
|
|
299
205
|
},
|
|
300
|
-
getName(person: Participant): string {
|
|
301
|
-
return `${person.firstName ?? ""} ${person.lastName ?? ""}`.trim();
|
|
302
|
-
},
|
|
303
206
|
selectAll(element: Event): void {
|
|
304
207
|
const target = element.target;
|
|
305
208
|
if (null !== target) {
|
package/src/locale/de.ts
CHANGED
|
@@ -200,12 +200,10 @@ export default {
|
|
|
200
200
|
Publishing: "Veröffentlichen",
|
|
201
201
|
"select productor": "Produzenten wählen",
|
|
202
202
|
"Share newsletter": "Einen Newsletter teilen",
|
|
203
|
-
|
|
204
|
-
"HTML
|
|
203
|
+
"Configure your Newsletter tile": "Konfigurieren Sie Ihre Newsletter-Kachel",
|
|
204
|
+
"Copy and embed the HTML code into your email tool": "Kopieren Sie den HTML-Code und betten Sie ihn in Ihr E-Mail-Tool ein",
|
|
205
205
|
"Listen this episode": "Diese Folge anhören",
|
|
206
|
-
"
|
|
207
|
-
"Display participants list": "Liste der Sprecher anzeigen",
|
|
208
|
-
"Choose main color": "Wählen Sie die Hauptfarbe",
|
|
206
|
+
"Choose main color": "Wählen Sie die Farbe der Newsletter-Modulelemente",
|
|
209
207
|
"Octopus is ACPM Podcast accredited": "Octopus ist von der ACPM zertifiziert",
|
|
210
208
|
"Live episode": "Aktuelle Live-Übertragungen",
|
|
211
209
|
"This live will start": "Diese Live-Übertragung beginnt",
|
|
@@ -351,4 +349,9 @@ export default {
|
|
|
351
349
|
"Share in one click":"Mit einem Klick teilen",
|
|
352
350
|
"Chaptering":"Kapitelaufteilung",
|
|
353
351
|
"Listen to the latest episode":"Hören Sie sich die neueste Folge an",
|
|
352
|
+
"Share the episode in your newsletter": "Teilen Sie die Episode in Ihrem Newsletter",
|
|
353
|
+
"Share the series in your newsletter": "Teilen Sie die Show in Ihrem Newsletter",
|
|
354
|
+
"Share the playlist in your newsletter": "Teilen Sie die Playlist in Ihrem Newsletter",
|
|
355
|
+
"Listen to all episodes":"Hören Sie sich alle Folgen an",
|
|
356
|
+
"Newsletter elements":"Piktogramm abspielen, Name der Show, Mehr anzeigen",
|
|
354
357
|
}
|
package/src/locale/en.ts
CHANGED
|
@@ -198,12 +198,10 @@ export default {
|
|
|
198
198
|
Publishing: "Publishing",
|
|
199
199
|
"select productor": "Select Producer",
|
|
200
200
|
"Share newsletter": "Share a newsletter",
|
|
201
|
-
|
|
202
|
-
"HTML
|
|
201
|
+
"Configure your Newsletter tile": "Configure your Newsletter tile",
|
|
202
|
+
"Copy and embed the HTML code into your email tool": "Copy and embed the HTML code into your email tool",
|
|
203
203
|
"Listen this episode": "Listen to this episode",
|
|
204
|
-
"
|
|
205
|
-
"Display participants list": "Display the speakers list",
|
|
206
|
-
"Choose main color": "Choose the main color",
|
|
204
|
+
"Choose main color": "Choose the color of the newsletter module elements",
|
|
207
205
|
"Octopus is ACPM Podcast accredited": "Octopus is ACPM accredited",
|
|
208
206
|
"Live episode": "Current Live episodes",
|
|
209
207
|
"This live will start": "This live will start",
|
|
@@ -351,4 +349,9 @@ export default {
|
|
|
351
349
|
"Share in one click":"Share in one click",
|
|
352
350
|
"Chaptering":"Chaptering",
|
|
353
351
|
"Listen to the latest episode":"Listen to the latest episode",
|
|
352
|
+
"Share the episode in your newsletter": "Share the episode in your newsletter",
|
|
353
|
+
"Share the series in your newsletter": "Share the series in your newsletter",
|
|
354
|
+
"Share the playlist in your newsletter": "Share the playlist in your newsletter",
|
|
355
|
+
"Listen to all episodes":"Listen to all episodes",
|
|
356
|
+
"Newsletter elements":"Play pictogram, name of the show, See more",
|
|
354
357
|
};
|
package/src/locale/es.ts
CHANGED
|
@@ -199,12 +199,10 @@ export default {
|
|
|
199
199
|
Publishing: "En proceso de publicación",
|
|
200
200
|
"select productor": "Seleccionar productor",
|
|
201
201
|
"Share newsletter": "Compartir newsletter",
|
|
202
|
-
|
|
203
|
-
"HTML
|
|
202
|
+
"Configure your Newsletter tile": "Configure el mosaico de su boletín",
|
|
203
|
+
"Copy and embed the HTML code into your email tool": "Copie e incruste el código HTML en su herramienta de correo electrónico",
|
|
204
204
|
"Listen this episode": "Escuchar este episodio",
|
|
205
|
-
"
|
|
206
|
-
"Display participants list": "Mostrar la lista de participantes",
|
|
207
|
-
"Choose main color": "Elegir el color principal",
|
|
205
|
+
"Choose main color": "Elija el color de los elementos del módulo de newsletter",
|
|
208
206
|
"Octopus is ACPM Podcast accredited":
|
|
209
207
|
"Octopus ha recibido la certificación ACPM",
|
|
210
208
|
"Live episode": "Episodios en directo ahora",
|
|
@@ -352,4 +350,9 @@ export default {
|
|
|
352
350
|
"Share in one click":"Comparte en un clic",
|
|
353
351
|
"Chaptering":"Capítulos",
|
|
354
352
|
"Listen to the latest episode":"Escuche el último episodio",
|
|
353
|
+
"Share the episode in your newsletter": "Comparte el episodio en tu newsletter",
|
|
354
|
+
"Share the series in your newsletter": "Comparte el programa en tu newsletter",
|
|
355
|
+
"Share the playlist in your newsletter": "Comparte la lista de reproducción en tu newsletter",
|
|
356
|
+
"Listen to all episodes":"Escuche todos los episodios",
|
|
357
|
+
"Newsletter elements":"Pictograma de reproducción, nombre del programa, Ver más",
|
|
355
358
|
}
|
package/src/locale/fr.ts
CHANGED
|
@@ -201,13 +201,11 @@ export default {
|
|
|
201
201
|
Debriefing: "Debriefing",
|
|
202
202
|
Publishing: "Publication",
|
|
203
203
|
"select productor": "Choisir un producteur",
|
|
204
|
-
"Share newsletter": "Partage
|
|
205
|
-
|
|
206
|
-
"HTML
|
|
204
|
+
"Share newsletter": "Partage dans votre newsletter",
|
|
205
|
+
"Configure your Newsletter tile": "Configurez votre vignette Newsletter",
|
|
206
|
+
"Copy and embed the HTML code into your email tool": "Copiez et intégrez le code HTML dans votre outil d'e-mailing",
|
|
207
207
|
"Listen this episode": "Écouter ce podcast",
|
|
208
|
-
"
|
|
209
|
-
"Display participants list": "Afficher la liste des intervenants",
|
|
210
|
-
"Choose main color": "Choisir la couleur principale",
|
|
208
|
+
"Choose main color": "Choisir la couleur des éléments du module newsletter",
|
|
211
209
|
"Octopus is ACPM Podcast accredited": "Octopus est accrédité ACPM Podcasts",
|
|
212
210
|
"Live episode": "Épisode en live",
|
|
213
211
|
"This live will start": "Ce live débutera",
|
|
@@ -358,4 +356,9 @@ export default {
|
|
|
358
356
|
"Share in one click":"Partager en un clic",
|
|
359
357
|
"Chaptering":"Chapitrage",
|
|
360
358
|
"Listen to the latest episode":"Écouter le dernier épisode",
|
|
359
|
+
"Share the episode in your newsletter": "Partagez l'épisode dans votre newsletter",
|
|
360
|
+
"Share the series in your newsletter": "Partagez l'émission dans votre newsletter",
|
|
361
|
+
"Share the playlist in your newsletter": "Partagez la playlist dans votre newsletter",
|
|
362
|
+
"Listen to all episodes":"Écouter tous les épisodes",
|
|
363
|
+
"Newsletter elements":"Pictogramme Play, nom de l'émission, Voir plus",
|
|
361
364
|
};
|
package/src/locale/it.ts
CHANGED
|
@@ -197,12 +197,10 @@ export default{
|
|
|
197
197
|
Publishing: 'In corso di pubblicazione',
|
|
198
198
|
'select productor': 'Seleziona producer',
|
|
199
199
|
'Share newsletter': "Condividi newsletter",
|
|
200
|
-
|
|
201
|
-
|
|
200
|
+
"Configure your Newsletter tile": 'Configura il riquadro Newsletter',
|
|
201
|
+
"Copy and embed the HTML code into your email tool": 'Copia e incorpora il codice HTML nel tuo strumento di posta elettronica',
|
|
202
202
|
'Listen this episode': 'Ascolta questo episodio',
|
|
203
|
-
'
|
|
204
|
-
'Display participants list': 'Mostra la lista degli speaker',
|
|
205
|
-
'Choose main color': 'Seleziona colore principale',
|
|
203
|
+
'Choose main color': 'Scegli il colore degli elementi del modulo newsletter',
|
|
206
204
|
'Octopus is ACPM Podcast accredited': 'Octopus è accreditata ACPM Podcast',
|
|
207
205
|
'Live episode': 'Episodi live',
|
|
208
206
|
'This live will start': 'Questo live inizierà',
|
|
@@ -344,4 +342,9 @@ export default{
|
|
|
344
342
|
"Share in one click":"Condividi con un clic",
|
|
345
343
|
"Chaptering":"Capitolazione",
|
|
346
344
|
"Listen to the latest episode":"Ascolta l'ultimo episodio",
|
|
345
|
+
"Share the episode in your newsletter": "Condividi l'episodio nella tua newsletter",
|
|
346
|
+
"Share the series in your newsletter": "Condividi lo spettacolo nella tua newsletter",
|
|
347
|
+
"Share the playlist in your newsletter": "Condividi la playlist nella tua newsletter",
|
|
348
|
+
"Listen to all episodes":"Ascolta tutti gli episodi",
|
|
349
|
+
"Newsletter elements":"Riproduci pittogramma, nome dello spettacolo, vedi altro",
|
|
347
350
|
};
|
package/src/locale/sl.ts
CHANGED
|
@@ -194,12 +194,10 @@ export default {
|
|
|
194
194
|
Publishing: "Objava",
|
|
195
195
|
"select productor": "Izberi producenta",
|
|
196
196
|
"Share newsletter": "Deli glasilo",
|
|
197
|
-
|
|
198
|
-
"HTML
|
|
197
|
+
"Configure your Newsletter tile": "Konfigurirajte svojo ploščico Newsletter",
|
|
198
|
+
"Copy and embed the HTML code into your email tool": "Kopirajte in vdelajte kodo HTML v svoje e-poštno orodje",
|
|
199
199
|
"Listen this episode": "Poslušajte to epizodo",
|
|
200
|
-
"
|
|
201
|
-
"Display participants list": "Prikaži seznam sodelujočih",
|
|
202
|
-
"Choose main color": "Izberi glavno barvo",
|
|
200
|
+
"Choose main color": "Izberite barvo elementov modula newsletter",
|
|
203
201
|
"Octopus is ACPM Podcast accredited":
|
|
204
202
|
"Octopus je akreditiran pri organizaciji ACPM",
|
|
205
203
|
"Live episode": "Trenutne epizode v živo",
|
|
@@ -341,4 +339,9 @@ export default {
|
|
|
341
339
|
"Share in one click":"Delite z enim klikom",
|
|
342
340
|
"Chaptering":"Poglavje",
|
|
343
341
|
"Listen to the latest episode":"Poslušajte najnovejšo epizodo",
|
|
342
|
+
"Share the episode in your newsletter": "Delite epizodo v svojem glasilu",
|
|
343
|
+
"Share the series in your newsletter": "Delite oddajo v svojem glasilu",
|
|
344
|
+
"Share the playlist in your newsletter": "Delite seznam predvajanja v svojem glasilu",
|
|
345
|
+
"Listen to all episodes":"Poslušaj vse epizode",
|
|
346
|
+
"Newsletter elements":"Predvajaj piktogram, ime oddaje, Poglej več",
|
|
344
347
|
}
|