@saooti/octopus-sdk 40.1.21 → 40.2.0-SNAPSHOT

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.
Files changed (36) hide show
  1. package/index.ts +7 -1
  2. package/package.json +1 -1
  3. package/plateform.conf +1 -1
  4. package/src/components/composable/player/usePlayerLive.ts +1 -1
  5. package/src/components/display/accessibility/AccessibilityModal.vue +7 -7
  6. package/src/components/display/comments/CommentSection.vue +1 -1
  7. package/src/components/display/emission/EmissionPlayerItem.vue +1 -1
  8. package/src/components/display/list/SwiperList.vue +1 -1
  9. package/src/components/display/podcasts/PodcastItemInfo.vue +1 -1
  10. package/src/components/display/podcasts/PodcastModuleBox.vue +9 -4
  11. package/src/components/display/podcasts/PodcastRawTranscript.vue +5 -18
  12. package/src/components/display/sharing/PlayerAnonymousModal.vue +54 -0
  13. package/src/components/display/sharing/QrCode.vue +26 -28
  14. package/src/components/display/sharing/ShareAnonymous.vue +291 -0
  15. package/src/components/display/sharing/ShareNewsletter.vue +216 -0
  16. package/src/components/display/sharing/ShareSocialsButtons.vue +140 -0
  17. package/src/components/display/sharing/SubscribeButtons.vue +2 -0
  18. package/src/components/misc/ClassicNav.vue +9 -3
  19. package/src/components/misc/ClassicPopover.vue +1 -1
  20. package/src/components/misc/modal/NewsletterModal.vue +14 -192
  21. package/src/components/misc/modal/QrCodeModal.vue +2 -1
  22. package/src/components/pages/EmissionPage.vue +14 -26
  23. package/src/components/pages/ParticipantPage.vue +17 -7
  24. package/src/components/pages/PlaylistPage.vue +12 -8
  25. package/src/components/pages/PodcastPage.vue +15 -38
  26. package/src/components/pages/RadioPage.vue +12 -7
  27. package/src/components/pages/VideoPage.vue +0 -2
  28. package/src/locale/de.ts +2 -2
  29. package/src/locale/en.ts +2 -2
  30. package/src/locale/es.ts +2 -2
  31. package/src/locale/fr.ts +6 -6
  32. package/src/locale/it.ts +2 -2
  33. package/src/locale/sl.ts +2 -2
  34. package/src/router/router.ts +3 -8
  35. package/src/stores/class/config/commentsConfig.ts +2 -2
  36. package/src/components/display/sharing/ShareButtons.vue +0 -351
@@ -22,7 +22,10 @@
22
22
  :title="$t('Emission name image', { name: name })"
23
23
  class="img-box img-box-podcast mb-3 flex-column justify-content-start align-items-start position-relative flex-shrink-0 float-start me-3"
24
24
  />
25
- <h2 class="mb-3">{{ name }}</h2>
25
+ <div class="d-flex align-items-center justify-content-between">
26
+ <h2>{{ name }}</h2>
27
+ <ShareAnonymous v-if="!editRight" class="d-flex justify-content-end flex-grow-1" :emission="emission" :organisation-id="emission.orga.id"/>
28
+ </div>
26
29
  <!-- eslint-disable vue/no-v-html -->
27
30
  <p
28
31
  class="html-wysiwyg-content description-text"
@@ -53,11 +56,13 @@
53
56
  @is-updated="getEmissionDetails"
54
57
  />
55
58
  </section>
59
+ <ShareSocialsButtons
60
+ v-if="pageParameters.isShareButtons"
61
+ :organisation-id="emission.orga.id"
62
+ />
56
63
  <SharePlayer
57
- v-if="!isPodcastmaker && (undefined !== authOrgaId || notExclusive)"
64
+ v-if="!isPodcastmaker && editRight"
58
65
  :emission="emission"
59
- :exclusive="exclusive"
60
- :not-exclusive="notExclusive"
61
66
  :organisation-id="authOrgaId"
62
67
  />
63
68
  <section class="module-box">
@@ -76,11 +81,6 @@
76
81
  @fetch="podcastsFetched"
77
82
  />
78
83
  </section>
79
- <ShareButtons
80
- v-if="pageParameters.isShareButtons"
81
- :emission="emission"
82
- :organisation-id="emission.orga.id"
83
- />
84
84
  <ShareDistribution
85
85
  v-if="editRight && !isPodcastmaker && securityRight && !isGarRole"
86
86
  :emission-id="emissionId"
@@ -112,14 +112,15 @@ import { useGeneralStore } from "../../stores/GeneralStore";
112
112
  import { useFilterStore } from "../../stores/FilterStore";
113
113
  import { useApiStore } from "../../stores/ApiStore";
114
114
  import { Podcast } from "@/stores/class/general/podcast";
115
+ const ShareAnonymous = defineAsyncComponent(() => import("../display/sharing/ShareAnonymous.vue"));
115
116
  const PodcastFilterList = defineAsyncComponent(
116
117
  () => import("../display/podcasts/PodcastFilterList.vue"),
117
118
  );
118
119
  const SharePlayer = defineAsyncComponent(
119
120
  () => import("../display/sharing/SharePlayer.vue"),
120
121
  );
121
- const ShareButtons = defineAsyncComponent(
122
- () => import("../display/sharing/ShareButtons.vue"),
122
+ const ShareSocialsButtons = defineAsyncComponent(
123
+ () => import("../display/sharing/ShareSocialsButtons.vue"),
123
124
  );
124
125
  const ShareDistribution = defineAsyncComponent(
125
126
  () => import("../display/sharing/ShareDistribution.vue"),
@@ -143,7 +144,7 @@ export default defineComponent({
143
144
  components: {
144
145
  PodcastFilterList,
145
146
  SharePlayer,
146
- ShareButtons,
147
+ ShareSocialsButtons,
147
148
  ShareDistribution,
148
149
  EditBox,
149
150
  SubscribeButtons,
@@ -151,6 +152,7 @@ export default defineComponent({
151
152
  ClassicLoading,
152
153
  PodcastPlayButton,
153
154
  PodcastmakerHeader,
155
+ ShareAnonymous
154
156
  },
155
157
  props: {
156
158
  emissionId: { default: undefined, type: Number },
@@ -170,8 +172,6 @@ export default defineComponent({
170
172
  title: "" as string,
171
173
  emission: undefined as Emission | undefined,
172
174
  error: false as boolean,
173
- exclusive: false as boolean,
174
- notExclusive: false as boolean,
175
175
  fetchLive: true as boolean,
176
176
  lastPodcast: undefined as Podcast | undefined,
177
177
  };
@@ -227,17 +227,6 @@ export default defineComponent({
227
227
  this.error = true;
228
228
  this.loaded = true;
229
229
  },
230
- handleAnnotations() {
231
- if (!this.emission?.annotations) return;
232
- if (this.emission.annotations.exclusive) {
233
- this.exclusive = "true" === this.emission.annotations.exclusive;
234
- this.exclusive =
235
- this.exclusive && this.authOrgaId !== this.emission.orga.id;
236
- }
237
- if (this.emission.annotations.notExclusive) {
238
- this.notExclusive = "true" === this.emission.annotations.notExclusive;
239
- }
240
- },
241
230
  async getEmissionDetails(): Promise<void> {
242
231
  this.loaded = false;
243
232
  this.error = false;
@@ -257,7 +246,6 @@ export default defineComponent({
257
246
  this.contentToDisplayUpdate(this.emission);
258
247
  this.updatePathParams(this.name);
259
248
  this.loaded = true;
260
- this.handleAnnotations();
261
249
  } catch (error) {
262
250
  this.handle403(error as AxiosError);
263
251
  this.initError();
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section class="page-box">
3
- <template v-if="loaded && !error">
3
+ <template v-if="loaded && !error && participant">
4
4
  <h1>
5
5
  {{ $t("Animator") }}
6
6
  </h1>
@@ -29,12 +29,20 @@
29
29
  class="w-100 justify-content-center"
30
30
  @participant-update="updateParticipant"
31
31
  />
32
- <ShareButtons
32
+ <ShareSocialsButtons
33
33
  v-if="pageParameters.isShareButtons"
34
34
  class="w-100"
35
- :participant-id="participantId"
36
35
  :organisation-id="participant.orga.id"
37
- />
36
+ >
37
+ <template #additional-buttons>
38
+ <ShareAnonymous
39
+ :participant-id="participant.participantId"
40
+ :organisation-id="participant.orga.id"
41
+ relative-class=""
42
+ btn-class="btn share-btn mb-2 text-dark me-2"
43
+ />
44
+ </template>
45
+ </ShareSocialsButtons>
38
46
  </section>
39
47
  <!-- productorId define to avoid overwrite #12817 -->
40
48
  <PodcastFilterList
@@ -68,8 +76,8 @@ import ClassicLoading from "../form/ClassicLoading.vue";
68
76
  import { defineComponent, defineAsyncComponent } from "vue";
69
77
  import { AxiosError } from "axios";
70
78
  import { mapState } from "pinia";
71
- const ShareButtons = defineAsyncComponent(
72
- () => import("../display/sharing/ShareButtons.vue"),
79
+ const ShareSocialsButtons = defineAsyncComponent(
80
+ () => import("../display/sharing/ShareSocialsButtons.vue"),
73
81
  );
74
82
  const PodcastFilterList = defineAsyncComponent(
75
83
  () => import("../display/podcasts/PodcastFilterList.vue"),
@@ -77,12 +85,14 @@ const PodcastFilterList = defineAsyncComponent(
77
85
  const EditBox = defineAsyncComponent(
78
86
  () => import("@/components/display/edit/EditBox.vue"),
79
87
  );
88
+ const ShareAnonymous = defineAsyncComponent(() => import("../display/sharing/ShareAnonymous.vue"));
80
89
  export default defineComponent({
81
90
  components: {
82
- ShareButtons,
91
+ ShareSocialsButtons,
83
92
  PodcastFilterList,
84
93
  EditBox,
85
94
  ClassicLoading,
95
+ ShareAnonymous
86
96
  },
87
97
  props: {
88
98
  participantId: { default: undefined, type: Number },
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section class="page-box">
3
- <template v-if="loaded && !error">
3
+ <template v-if="loaded && !error && playlist">
4
4
  <PodcastmakerHeader
5
5
  v-if="isPodcastmaker"
6
6
  :page-title="pageTitle"
@@ -21,7 +21,10 @@
21
21
  :title="$t('Playlist name image', { name: name })"
22
22
  class="img-box float-start me-3 mb-3"
23
23
  />
24
- <h2>{{ name }}</h2>
24
+ <div class="d-flex align-items-center justify-content-between">
25
+ <h2>{{ name }}</h2>
26
+ <ShareAnonymous v-if="!editRight" class="d-flex justify-content-end flex-grow-1" :playlist="playlist" :organisation-id="playlist.organisation?.id"/>
27
+ </div>
25
28
  <!-- eslint-disable vue/no-v-html -->
26
29
  <p class="html-wysiwyg-content" v-html="urlify(description)" />
27
30
  <!-- eslint-enable -->
@@ -29,13 +32,12 @@
29
32
  <EditBox v-if="editRight && !isPodcastmaker" :playlist="playlist" />
30
33
  </section>
31
34
  <SharePlayer
32
- v-if="!isPodcastmaker && undefined !== authOrgaId"
35
+ v-if="!isPodcastmaker && editRight"
33
36
  :playlist="playlist"
34
37
  :organisation-id="authOrgaId"
35
38
  />
36
- <ShareButtons
39
+ <ShareSocialsButtons
37
40
  v-if="pageParameters.isShareButtons"
38
- :playlist="playlist"
39
41
  :organisation-id="playlist.organisation.id"
40
42
  />
41
43
  <section class="module-box">
@@ -67,8 +69,8 @@ import {useErrorHandler} from "../composable/useErrorHandler";
67
69
  import { Playlist } from "@/stores/class/general/playlist";
68
70
  import { defineComponent, defineAsyncComponent } from "vue";
69
71
  import { AxiosError } from "axios";
70
- const ShareButtons = defineAsyncComponent(
71
- () => import("../display/sharing/ShareButtons.vue"),
72
+ const ShareSocialsButtons = defineAsyncComponent(
73
+ () => import("../display/sharing/ShareSocialsButtons.vue"),
72
74
  );
73
75
  const EditBox = defineAsyncComponent(
74
76
  () => import("@/components/display/edit/EditBox.vue"),
@@ -79,14 +81,16 @@ const SharePlayer = defineAsyncComponent(
79
81
  const PodcastmakerHeader = defineAsyncComponent(
80
82
  () => import("../display/podcastmaker/PodcastmakerHeader.vue"),
81
83
  );
84
+ const ShareAnonymous = defineAsyncComponent(() => import("../display/sharing/ShareAnonymous.vue"));
82
85
  export default defineComponent({
83
86
  components: {
84
- ShareButtons,
87
+ ShareSocialsButtons,
85
88
  EditBox,
86
89
  PodcastList,
87
90
  SharePlayer,
88
91
  ClassicLoading,
89
92
  PodcastmakerHeader,
93
+ ShareAnonymous
90
94
  },
91
95
 
92
96
  props: {
@@ -16,29 +16,23 @@
16
16
  :podcast-conference="fetchConference"
17
17
  @update-podcast="updatePodcast"
18
18
  />
19
+ <ShareSocialsButtons
20
+ v-if="pageParameters.isShareButtons"
21
+ :organisation-id="podcast.organisation.id"
22
+ />
19
23
  <SharePlayer
20
- v-if="!isPodcastmaker && (undefined !== authOrgaId || notExclusive)"
24
+ v-if="!isPodcastmaker && editRight"
21
25
  :podcast="podcast"
22
- :emission="podcast.emission"
23
- :exclusive="exclusive"
24
- :not-exclusive="notExclusive"
26
+ :emission="podcast?.emission"
25
27
  :organisation-id="authOrgaId"
26
28
  />
27
-
28
29
  <CommentSection v-if="!isPodcastmaker" :podcast="podcast" />
29
- <section class="module-box">
30
- <PodcastInlineList
31
- :emission-id="podcast.emission.emissionId"
32
- :href="'/main/pub/emission/' + podcast.emission.emissionId"
33
- :title="$t('More episodes of this emission')"
34
- :button-text="$t('All podcast emission button')"
35
- title-tag="h3"
36
- />
37
- </section>
38
- <ShareButtons
39
- v-if="pageParameters.isShareButtons"
40
- :podcast="podcast"
41
- :organisation-id="podcast.organisation.id"
30
+ <PodcastInlineList
31
+ :emission-id="podcast.emission.emissionId"
32
+ :href="'/main/pub/emission/' + podcast.emission.emissionId"
33
+ :title="$t('More episodes of this emission')"
34
+ :button-text="$t('All podcast emission button')"
35
+ title-tag="h3"
42
36
  />
43
37
  <section v-if="!hideSuggestions">
44
38
  <ClassicLazy :min-height="550">
@@ -96,8 +90,8 @@ import { useGeneralStore } from "../../stores/GeneralStore";
96
90
  import { mapState, mapActions } from "pinia";
97
91
  import { AxiosError } from "axios";
98
92
  import { useCommentStore } from "../../stores/CommentStore";
99
- const ShareButtons = defineAsyncComponent(
100
- () => import("../display/sharing/ShareButtons.vue"),
93
+ const ShareSocialsButtons = defineAsyncComponent(
94
+ () => import("../display/sharing/ShareSocialsButtons.vue"),
101
95
  );
102
96
  const SharePlayer = defineAsyncComponent(
103
97
  () => import("../display/sharing/SharePlayer.vue"),
@@ -112,7 +106,7 @@ export default defineComponent({
112
106
  name: "PodcastPage",
113
107
  components: {
114
108
  PodcastInlineList,
115
- ShareButtons,
109
+ ShareSocialsButtons,
116
110
  SharePlayer,
117
111
  CommentSection,
118
112
  PodcastModuleBox,
@@ -139,8 +133,6 @@ export default defineComponent({
139
133
  loaded: false as boolean,
140
134
  podcast: undefined as Podcast | undefined,
141
135
  error: false as boolean,
142
- exclusive: false as boolean,
143
- notExclusive: false as boolean,
144
136
  fetchConference: undefined as Conference | undefined,
145
137
  infoReload: undefined as ReturnType<typeof setTimeout> | undefined,
146
138
  };
@@ -287,20 +279,6 @@ export default defineComponent({
287
279
  this.error = true;
288
280
  this.loaded = true;
289
281
  },
290
- handleAnnotations() {
291
- if (!this.podcast) {
292
- return;
293
- }
294
- if (this.podcast.emission.annotations?.exclusive) {
295
- this.exclusive = "true" === this.podcast.emission.annotations.exclusive;
296
- this.exclusive =
297
- this.exclusive && this.authOrgaId !== this.podcast.organisation.id;
298
- }
299
- if (this.podcast.emission.annotations?.notExclusive) {
300
- this.notExclusive =
301
- "true" === this.podcast.emission.annotations.notExclusive;
302
- }
303
- },
304
282
  async getPodcastDetails(): Promise<void> {
305
283
  this.loaded = false;
306
284
  this.error = false;
@@ -319,7 +297,6 @@ export default defineComponent({
319
297
  }
320
298
  this.podcast = data;
321
299
  this.contentToDisplayUpdate(data);
322
- this.handleAnnotations();
323
300
  if (
324
301
  (!this.podcast.availability.visibility ||
325
302
  ("READY_TO_RECORD" !== this.podcast.processingStatus &&
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section class="page-box">
3
- <template v-if="loaded && !error">
3
+ <template v-if="loaded && !error && radio">
4
4
  <PodcastmakerHeader
5
5
  v-if="isPodcastmaker"
6
6
  :page-title="$t('Radio')"
@@ -14,7 +14,10 @@
14
14
  <section class="module-box">
15
15
  <div class="mb-5 description-text">
16
16
  <RadioImage :radio="radio" />
17
- <h2>{{ radio.name }}</h2>
17
+ <div class="d-flex align-items-center justify-content-between">
18
+ <h2>{{ radio.name }}</h2>
19
+ <ShareAnonymous v-if="!editRight" class="d-flex justify-content-end flex-grow-1" :organisation-id="radio.organisationId"/>
20
+ </div>
18
21
  <div v-if="radio.description">
19
22
  {{ radio.description }}
20
23
  </div>
@@ -22,13 +25,13 @@
22
25
  <RadioCurrently :radio="radio" />
23
26
  <EditBoxRadio v-if="editRight" :radio="radio" />
24
27
  </section>
28
+ <ShareSocialsButtons :organisation-id="radio.organisationId" />
25
29
  <RadioPlanning :radio="radio" />
26
30
  <SharePlayerRadio
27
- v-if="undefined !== authOrgaId"
31
+ v-if="editRight"
28
32
  :canal="radio"
29
33
  :organisation-id="authOrgaId"
30
34
  />
31
- <ShareButtons :organisation-id="radio.organisationId" />
32
35
  </div>
33
36
  </template>
34
37
  <ClassicLoading
@@ -53,8 +56,8 @@ import { useAuthStore } from "../../stores/AuthStore";
53
56
  const SharePlayerRadio = defineAsyncComponent(
54
57
  () => import("../display/sharing/SharePlayerRadio.vue"),
55
58
  );
56
- const ShareButtons = defineAsyncComponent(
57
- () => import("../display/sharing/ShareButtons.vue"),
59
+ const ShareSocialsButtons = defineAsyncComponent(
60
+ () => import("../display/sharing/ShareSocialsButtons.vue"),
58
61
  );
59
62
  const EditBoxRadio = defineAsyncComponent(
60
63
  () => import("@/components/display/edit/EditBoxRadio.vue"),
@@ -71,16 +74,18 @@ const RadioPlanning = defineAsyncComponent(
71
74
  const PodcastmakerHeader = defineAsyncComponent(
72
75
  () => import("../display/podcastmaker/PodcastmakerHeader.vue"),
73
76
  );
77
+ const ShareAnonymous = defineAsyncComponent(() => import("../display/sharing/ShareAnonymous.vue"));
74
78
  export default defineComponent({
75
79
  components: {
76
80
  SharePlayerRadio,
77
- ShareButtons,
81
+ ShareSocialsButtons,
78
82
  EditBoxRadio,
79
83
  ClassicLoading,
80
84
  RadioCurrently,
81
85
  RadioImage,
82
86
  RadioPlanning,
83
87
  PodcastmakerHeader,
88
+ ShareAnonymous
84
89
  },
85
90
  props: {
86
91
  canalId: { default: undefined, type: Number },
@@ -153,8 +153,6 @@ const {
153
153
  } = usePodcastView(podcast, podcastConference);
154
154
 
155
155
  const { updatePathParams } = useSeoTitleUrl();
156
- const {handle403} = useErrorHandler();
157
-
158
156
  const authStore = useAuthStore();
159
157
  const apiStore = useApiStore();
160
158
  const generalStore = useGeneralStore();
package/src/locale/de.ts CHANGED
@@ -201,7 +201,6 @@ export default {
201
201
  "select productor": "Produzenten wählen",
202
202
  "Share newsletter": "Einen Newsletter teilen",
203
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
204
  "Listen this episode": "Diese Folge anhören",
206
205
  "Choose main color": "Wählen Sie die Farbe der Newsletter-Modulelemente",
207
206
  "Octopus is ACPM Podcast accredited": "Saooti Play ist von der ACPM zertifiziert",
@@ -274,7 +273,7 @@ export default {
274
273
  Refresh: "Aktualisieren",
275
274
  "See associated article": "Artikel lesen",
276
275
  "Display associated article": "Zugehörigen Artikel anzeigen",
277
- "Copy this page URL": "Link kopieren",
276
+ "Copy this page URL": "Seiten-URL kopieren",
278
277
  "Custom version": "Benutzerdefiniert",
279
278
  All: "Alle",
280
279
  "By category": "Nach IAB-Kategorie",
@@ -412,4 +411,5 @@ export default {
412
411
  "Preview":"Vorschau",
413
412
  "Save":"Speichern",
414
413
  "Search for keyword": "Suche nach Schlüsselwort: {tag}",
414
+ "And paste it in your newsletter":"Und fügen Sie es in Ihren Newsletter ein 😉",
415
415
  }
package/src/locale/en.ts CHANGED
@@ -199,7 +199,6 @@ export default {
199
199
  "select productor": "Select Producer",
200
200
  "Share newsletter": "Share a newsletter",
201
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
202
  "Listen this episode": "Listen to this episode",
204
203
  "Choose main color": "Choose the color of the newsletter module elements",
205
204
  "Octopus is ACPM Podcast accredited": "Saooti Play is ACPM accredited",
@@ -269,7 +268,7 @@ export default {
269
268
  Refresh: "Refresh",
270
269
  "See associated article": "Read the article",
271
270
  "Display associated article": "Display associated article",
272
- "Copy this page URL": "Copy link",
271
+ "Copy this page URL": "Copy the page URL",
273
272
  "Custom version": "Custom version",
274
273
  All: "All",
275
274
  "By category": "By IAB category",
@@ -415,4 +414,5 @@ export default {
415
414
  "Preview":"Preview",
416
415
  "Save":"Save",
417
416
  "Search for keyword": "Search for keyword: {tag}",
417
+ "And paste it in your newsletter":"And paste it in your newsletter 😉",
418
418
  };
package/src/locale/es.ts CHANGED
@@ -200,7 +200,6 @@ export default {
200
200
  "select productor": "Seleccionar productor",
201
201
  "Share newsletter": "Compartir newsletter",
202
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
203
  "Listen this episode": "Escuchar este episodio",
205
204
  "Choose main color": "Elija el color de los elementos del módulo de newsletter",
206
205
  "Octopus is ACPM Podcast accredited":
@@ -274,7 +273,7 @@ export default {
274
273
  Refresh: "Volver a cargar",
275
274
  "See associated article": "Leer el artículo",
276
275
  "Display associated article": "Mostrar el artículo asociado",
277
- "Copy this page URL": "Copiar link",
276
+ "Copy this page URL": "Copiar URL de la página",
278
277
  "Custom version": "Versión personalizada",
279
278
  All: "Todos",
280
279
  "By category": "Por categoría IAB",
@@ -413,4 +412,5 @@ export default {
413
412
  "Preview":"Avance",
414
413
  "Save":"Ahorrar",
415
414
  "Search for keyword": "Buscar palabra clave: {etiqueta}",
415
+ "And paste it in your newsletter":"Y pégalo en tu boletín informativo 😉",
416
416
  }
package/src/locale/fr.ts CHANGED
@@ -201,9 +201,8 @@ export default {
201
201
  Debriefing: "Debriefing",
202
202
  Publishing: "Publication",
203
203
  "select productor": "Choisir un producteur",
204
- "Share newsletter": "Partage dans votre newsletter",
204
+ "Share newsletter": "Intégrer dans votre newsletter",
205
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
206
  "Listen this episode": "Écouter ce podcast",
208
207
  "Choose main color": "Choisir la couleur des éléments du module",
209
208
  "Octopus is ACPM Podcast accredited": "Saooti Play est accrédité ACPM Podcasts",
@@ -276,7 +275,7 @@ export default {
276
275
  Refresh: "Rafraichir",
277
276
  "See associated article": "Lire l'article",
278
277
  "Display associated article": "Afficher l'article associé",
279
- "Copy this page URL": "Copier le lien",
278
+ "Copy this page URL": "Copier l'URL de la page",
280
279
  "Custom version": "Version customisée",
281
280
  All: "Tous",
282
281
  "By category": "Selon la catégorie IAB",
@@ -352,9 +351,9 @@ export default {
352
351
  "Share in one click":"Partager en un clic",
353
352
  "Chaptering":"Chapitrage",
354
353
  "Listen to the latest episode":"Écouter le dernier épisode",
355
- "Share the episode in your newsletter": "Partagez l'épisode dans votre newsletter",
356
- "Share the series in your newsletter": "Partagez l'émission dans votre newsletter",
357
- "Share the playlist in your newsletter": "Partagez la playlist dans votre newsletter",
354
+ "Share the episode in your newsletter": "Intégrez l'épisode dans votre newsletter",
355
+ "Share the series in your newsletter": "Intégrez l'émission dans votre newsletter",
356
+ "Share the playlist in your newsletter": "Intégrez la playlist dans votre newsletter",
358
357
  "Listen to all episodes":"Écouter tous les épisodes",
359
358
  "Newsletter elements":"Pictogramme Play, nom de l'émission, Voir plus",
360
359
  "Choose text color":"Choisir la couleur du texte",
@@ -422,4 +421,5 @@ export default {
422
421
  "Preview":"Aperçu",
423
422
  "Save":"Sauvegarder",
424
423
  "Search for keyword": "Recherche pour le mot-clé: {tag}",
424
+ "And paste it in your newsletter":"Et collez-le dans votre newsletter 😉",
425
425
  };
package/src/locale/it.ts CHANGED
@@ -198,7 +198,6 @@ export default{
198
198
  'select productor': 'Seleziona producer',
199
199
  'Share newsletter': "Condividi newsletter",
200
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
201
  'Listen this episode': 'Ascolta questo episodio',
203
202
  'Choose main color': 'Scegli il colore degli elementi del modulo newsletter',
204
203
  'Octopus is ACPM Podcast accredited': 'Saooti Play è accreditata ACPM Podcast',
@@ -271,7 +270,7 @@ export default{
271
270
  'Refresh': 'Aggiorna',
272
271
  'See associated article':"Leggi l'articolo",
273
272
  "Display associated article":"Mostra articolo associato",
274
- "Copy this page URL":"Copia link",
273
+ "Copy this page URL":"Copia l'URL della pagina",
275
274
  "Custom version":"Versione customizzata",
276
275
  "All":"Tutto",
277
276
  'By category': 'Per categoria',
@@ -409,4 +408,5 @@ export default{
409
408
  "Preview":"Anteprima",
410
409
  "Save":"Salva",
411
410
  "Search for keyword": "Cerca parola chiave: {tag}",
411
+ "And paste it in your newsletter":"E incollalo nella tua newsletter 😉",
412
412
  };
package/src/locale/sl.ts CHANGED
@@ -195,7 +195,6 @@ export default {
195
195
  "select productor": "Izberi producenta",
196
196
  "Share newsletter": "Deli glasilo",
197
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
198
  "Listen this episode": "Poslušajte to epizodo",
200
199
  "Choose main color": "Izberite barvo elementov modula newsletter",
201
200
  "Octopus is ACPM Podcast accredited":
@@ -266,7 +265,7 @@ export default {
266
265
  Refresh: "Osveži",
267
266
  "See associated article": "Preberi članek",
268
267
  "Display associated article": "Prikaži povezan vir",
269
- "Copy this page URL": "Kopiraj povezavo",
268
+ "Copy this page URL": "Kopiraj URL strani",
270
269
  "Custom version": "Prilagojena različica",
271
270
  All: "Vse",
272
271
  "By category": "Po kategoriji IAB",
@@ -404,4 +403,5 @@ export default {
404
403
  "Preview":"Predogled",
405
404
  "Save":"Shrani",
406
405
  "Search for keyword": "Iskanje ključne besede: {tag}",
406
+ "And paste it in your newsletter":"In ga prilepite v svoje glasilo 😉",
407
407
  }
@@ -302,11 +302,6 @@ const routes: Array<RouteRecordRaw> = [
302
302
  path: "/main/pub/contact",
303
303
  component: Home,
304
304
  },
305
- {
306
- path: "/main/priv/share",
307
- name: "advancedShare",
308
- component: Home,
309
- },
310
305
  {
311
306
  path: "/main/pub/cgu",
312
307
  component: Home,
@@ -367,7 +362,7 @@ async function changeOrgaFilter(orgaFilter: string, filterStore: any){
367
362
  isLive: isLive,
368
363
  });
369
364
  }
370
- var fetchMyOrgaActive = false;
365
+ let fetchMyOrgaActive = false;
371
366
  router.beforeResolve(async () =>{
372
367
  fetchMyOrgaActive = false;
373
368
  });
@@ -380,8 +375,8 @@ router.beforeEach(async (to, from) => {
380
375
  const authStore = useAuthStore();
381
376
  const filterStore = useFilterStore();
382
377
 
383
- var isSamePath = to.matched[0]?.path === from.matched[0]?.path && to.path.includes(from.path);
384
- var orgaToFocus = isSamePath ? (to.query.productor?.toString() ?? undefined) : undefined;
378
+ const isSamePath = to.matched[0]?.path === from.matched[0]?.path && to.path.includes(from.path);
379
+ let orgaToFocus = isSamePath ? (to.query.productor?.toString() ?? undefined) : undefined;
385
380
 
386
381
  if(authStore.authProfile){
387
382
  if(!isSamePath && !fetchMyOrgaActive){
@@ -34,8 +34,8 @@ export function defaultCommentsConfig(inherited: boolean): CommentsConfig {
34
34
  },
35
35
  commentLikes: {
36
36
  authRequired: true,
37
- dislikeEnabled: true,
38
- likeEnabled: true,
37
+ dislikeEnabled: false,
38
+ likeEnabled: false,
39
39
  },
40
40
  comments: {
41
41
  authRequired: true,