@saooti/octopus-sdk 31.0.3 → 31.0.6
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/README.md +11 -0
- package/package.json +1 -1
- package/src/assets/bootstrap-diff.scss +6 -0
- package/src/components/display/categories/CategoryFilter.vue +4 -4
- package/src/components/display/categories/CategoryList.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +4 -4
- package/src/components/display/filter/CategoryFilter.vue +1 -1
- package/src/components/display/filter/ProductorSearch.vue +10 -4
- package/src/components/display/filter/RubriqueFilter.vue +1 -1
- package/src/components/display/podcasts/PodcastItem.vue +1 -4
- package/src/components/display/podcasts/PodcastList.vue +4 -4
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -4
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/display/sharing/SharePlayer.vue +1 -12
- package/src/components/display/sharing/SharePlayerTypes.vue +48 -1
- package/src/components/misc/HomeDropdown.vue +7 -7
- package/src/components/misc/Player.vue +1 -1
- package/src/components/misc/PlayerProgressBar.vue +24 -18
- package/src/components/misc/modal/NewsletterModal.vue +1 -4
- package/src/locale/en.ts +7 -7
- package/src/locale/fr.ts +3 -3
- package/src/locale/it.ts +7 -7
- package/src/main.ts +1 -1
- package/src/store/class/general/customPlayer.ts +2 -1
- package/src/store/paramStore.ts +7 -7
package/README.md
CHANGED
|
@@ -562,9 +562,20 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
562
562
|
* 30.0.63 Italian translation
|
|
563
563
|
* 30.0.64 Modif Le soir
|
|
564
564
|
* 30.0.65 OAuthType
|
|
565
|
+
* 30.0.66 ScrollBehavior
|
|
566
|
+
* 30.0.67 Parlement européen
|
|
567
|
+
* 30.0.68 Parlement européen
|
|
568
|
+
* 30.0.69 Parlement européen
|
|
569
|
+
* 30.0.70 Améliorations 30
|
|
565
570
|
|
|
566
571
|
* 31.0.0 Passage en 31
|
|
567
572
|
* 31.0.1 Ajout pocket casts
|
|
568
573
|
* 31.0.2 Gestion des 403
|
|
569
574
|
* 31.0.3 Merge 30
|
|
575
|
+
* 31.0.4 Selection des customPlayers
|
|
576
|
+
* 31.0.5 Merge 30
|
|
577
|
+
* 31.0.6 Erreur de Merge 30
|
|
570
578
|
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
|
package/package.json
CHANGED
|
@@ -122,7 +122,7 @@ export default defineComponent({
|
|
|
122
122
|
this.$store.commit('filterRubrique', filter);
|
|
123
123
|
const queries = this.$route.query;
|
|
124
124
|
const queryString = filter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
125
|
-
this.$router.
|
|
125
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
getRubriques(rubriquageId: number): Array<Rubrique>{
|
|
@@ -138,7 +138,7 @@ export default defineComponent({
|
|
|
138
138
|
const queries = this.$route.query;
|
|
139
139
|
if(this.categoryFilter){
|
|
140
140
|
if (queries.iabId) {
|
|
141
|
-
this.$router.
|
|
141
|
+
this.$router.replace({ query: {...queries, ...{iabId: undefined} } });
|
|
142
142
|
}
|
|
143
143
|
this.$store.commit('filterIab', undefined);
|
|
144
144
|
}else{
|
|
@@ -147,9 +147,9 @@ export default defineComponent({
|
|
|
147
147
|
if (queries.rubriquesId) {
|
|
148
148
|
const queryString = newFilter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
149
149
|
if("" !== queryString){
|
|
150
|
-
this.$router.
|
|
150
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
151
151
|
}else{
|
|
152
|
-
this.$router.
|
|
152
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: undefined }} });
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
this.$store.commit('filterRubrique', newFilter);
|
|
@@ -139,7 +139,7 @@ export default defineComponent({
|
|
|
139
139
|
}
|
|
140
140
|
const queries = this.$route.query;
|
|
141
141
|
if(!queries.iabId || ('string'===typeof queries.iabId && parseInt(queries.iabId ,10) !== category.id)) {
|
|
142
|
-
this.$router.
|
|
142
|
+
this.$router.replace({ query: { ...queries, ...{ iabId: category.id.toString() }} });
|
|
143
143
|
}
|
|
144
144
|
this.$store.commit('filterIab',category);
|
|
145
145
|
},
|
|
@@ -136,13 +136,13 @@ export default defineComponent({
|
|
|
136
136
|
sortText(): string {
|
|
137
137
|
switch (this.sort) {
|
|
138
138
|
case 'SCORE':
|
|
139
|
-
return this.$t('sort by score').toString();
|
|
139
|
+
return " "+this.$t('sort by score').toString();
|
|
140
140
|
case 'LAST_PODCAST_DESC':
|
|
141
|
-
return this.$t('sort by date').toString();
|
|
141
|
+
return " "+this.$t('sort by date').toString();
|
|
142
142
|
case 'NAME':
|
|
143
|
-
return this.$t('sort by alphabetical').toString();
|
|
143
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
144
144
|
default:
|
|
145
|
-
return this.$t('sort by date').toString();
|
|
145
|
+
return " "+this.$t('sort by date').toString();
|
|
146
146
|
}
|
|
147
147
|
},
|
|
148
148
|
filterOrga(): string {
|
|
@@ -105,7 +105,7 @@ export default defineComponent({
|
|
|
105
105
|
}
|
|
106
106
|
const queries = this.$route.query;
|
|
107
107
|
if (queries.iabId) {
|
|
108
|
-
this.$router.
|
|
108
|
+
this.$router.replace({ query: {...queries, ...{iabId: undefined} } });
|
|
109
109
|
}
|
|
110
110
|
this.$store.commit('filterIab', undefined);
|
|
111
111
|
}
|
|
@@ -118,11 +118,17 @@ export default defineComponent({
|
|
|
118
118
|
});
|
|
119
119
|
this.keepOrganisation = false;
|
|
120
120
|
if (organisation && organisation.id) {
|
|
121
|
-
this.showBubble = true;
|
|
122
|
-
setTimeout(() => {
|
|
123
|
-
this.showBubble = false;
|
|
124
|
-
}, 6000);
|
|
125
121
|
this.$emit('updateOrganisationId', organisation.id);
|
|
122
|
+
if(organisation.private){
|
|
123
|
+
this.$nextTick(() => {
|
|
124
|
+
this.onKeepOrganisation();
|
|
125
|
+
});
|
|
126
|
+
} else{
|
|
127
|
+
this.showBubble = true;
|
|
128
|
+
setTimeout(() => {
|
|
129
|
+
this.showBubble = false;
|
|
130
|
+
}, 6000);
|
|
131
|
+
}
|
|
126
132
|
} else {
|
|
127
133
|
this.$emit('updateOrganisationId', undefined);
|
|
128
134
|
}
|
|
@@ -229,7 +229,7 @@ export default defineComponent({
|
|
|
229
229
|
}
|
|
230
230
|
const queries = this.$route.query;
|
|
231
231
|
if (queries.rubriquesId) {
|
|
232
|
-
this.$router.
|
|
232
|
+
this.$router.replace({ query: {...queries, ...{rubriquesId: undefined} } });
|
|
233
233
|
}
|
|
234
234
|
this.$store.commit('filterRubrique', []);
|
|
235
235
|
}
|
|
@@ -128,10 +128,7 @@ export default defineComponent({
|
|
|
128
128
|
return (state.podcastsPage.podcastBorderBottom as boolean);
|
|
129
129
|
},
|
|
130
130
|
date(): string {
|
|
131
|
-
|
|
132
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
133
|
-
}
|
|
134
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
131
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
135
132
|
},
|
|
136
133
|
displayDate(): string {
|
|
137
134
|
return moment(this.podcast.pubDate).format('X');
|
|
@@ -122,13 +122,13 @@ export default defineComponent({
|
|
|
122
122
|
sortText(): string {
|
|
123
123
|
switch (this.sortCriteria) {
|
|
124
124
|
case 'SCORE':
|
|
125
|
-
return this.$t('sort by score').toString();
|
|
125
|
+
return " "+this.$t('sort by score').toString();
|
|
126
126
|
case 'DATE':
|
|
127
|
-
return this.$t('sort by date').toString();
|
|
127
|
+
return " "+this.$t('sort by date').toString();
|
|
128
128
|
case 'NAME':
|
|
129
|
-
return this.$t('sort by alphabetical').toString();
|
|
129
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
130
130
|
default:
|
|
131
|
-
return this.$t('sort by date').toString();
|
|
131
|
+
return " "+this.$t('sort by date').toString();
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
isProduction(): boolean {
|
|
@@ -214,10 +214,7 @@ export default defineComponent({
|
|
|
214
214
|
},
|
|
215
215
|
date(): string {
|
|
216
216
|
if (this.podcast && 1970 !== moment(this.podcast.pubDate).year()){
|
|
217
|
-
|
|
218
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
219
|
-
}
|
|
220
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
217
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
221
218
|
}
|
|
222
219
|
return '';
|
|
223
220
|
},
|
|
@@ -130,7 +130,7 @@ export default defineComponent({
|
|
|
130
130
|
this.$store.commit('filterRubrique', newFilter);
|
|
131
131
|
const queries = this.$route.query;
|
|
132
132
|
const queryString = newFilter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
133
|
-
this.$router.
|
|
133
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
134
134
|
this.selectNewRubriquage();
|
|
135
135
|
},
|
|
136
136
|
selectNewRubriquage(){
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
:podcast="podcast"
|
|
34
34
|
:emission="emission"
|
|
35
35
|
:playlist="playlist"
|
|
36
|
-
:
|
|
36
|
+
:organisation-id="organisationId"
|
|
37
37
|
/>
|
|
38
38
|
</div>
|
|
39
39
|
<SharePlayerColors
|
|
@@ -82,7 +82,6 @@ import octopusApi from '@saooti/octopus-api';
|
|
|
82
82
|
import { Podcast } from '@/store/class/general/podcast';
|
|
83
83
|
import { Emission } from '@/store/class/general/emission';
|
|
84
84
|
import { Playlist } from '@/store/class/general/playlist';
|
|
85
|
-
import { CustomPlayer } from '@/store/class/general/customPlayer';
|
|
86
85
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
87
86
|
const ShareModalPlayer = defineAsyncComponent(() => import('../../misc/modal/ShareModalPlayer.vue'));
|
|
88
87
|
const PlayerParameters = defineAsyncComponent(() => import('./PlayerParameters.vue'));
|
|
@@ -119,7 +118,6 @@ export default defineComponent({
|
|
|
119
118
|
iFrameNumber: '3' as string,
|
|
120
119
|
isVisible: false as boolean,
|
|
121
120
|
displayArticle: true as boolean,
|
|
122
|
-
customPlayers: [] as Array<CustomPlayer>,
|
|
123
121
|
colors: ['#000000', '#ffffff'],
|
|
124
122
|
};
|
|
125
123
|
},
|
|
@@ -333,15 +331,6 @@ export default defineComponent({
|
|
|
333
331
|
} else {
|
|
334
332
|
this.theme = '#000000';
|
|
335
333
|
}
|
|
336
|
-
let dataFetched = await octopusApi.fetchCustomPlayer('customPlayer/organisation/'+ this.organisationId);
|
|
337
|
-
this.customPlayers = dataFetched.content;
|
|
338
|
-
const totalCount = dataFetched.totalElements;
|
|
339
|
-
let index = 1;
|
|
340
|
-
while (totalCount > this.customPlayers.length) {
|
|
341
|
-
dataFetched = await octopusApi.fetchCustomPlayer('customPlayer/organisation/'+ this.organisationId+'?start='+index);
|
|
342
|
-
this.customPlayers = this.customPlayers.concat(dataFetched.content);
|
|
343
|
-
++index;
|
|
344
|
-
}
|
|
345
334
|
},
|
|
346
335
|
updateEpisodeNumber(value: string): void {
|
|
347
336
|
this.episodeNumbers = value;
|
|
@@ -48,6 +48,8 @@
|
|
|
48
48
|
</template>
|
|
49
49
|
|
|
50
50
|
<script lang="ts">
|
|
51
|
+
import { state } from '../../../store/paramStore';
|
|
52
|
+
import octopusApi from '@saooti/octopus-api';
|
|
51
53
|
import { Podcast } from '@/store/class/general/podcast';
|
|
52
54
|
import { CustomPlayer } from '@/store/class/general/customPlayer';
|
|
53
55
|
import { defineComponent } from 'vue';
|
|
@@ -58,12 +60,21 @@ export default defineComponent({
|
|
|
58
60
|
podcast: { default: undefined, type: Object as ()=> Podcast},
|
|
59
61
|
emission: { default: undefined, type: Object as ()=> Emission},
|
|
60
62
|
playlist: { default: undefined, type: Object as ()=> Playlist},
|
|
61
|
-
customPlayers: { default: ()=>[], type: Array as ()=> Array<CustomPlayer>},
|
|
62
63
|
iFrameModel: { default: 'default', type: String},
|
|
64
|
+
organisationId: { default: undefined, type: String},
|
|
63
65
|
},
|
|
64
66
|
emits:['update:iFrameModel'],
|
|
65
67
|
|
|
68
|
+
data() {
|
|
69
|
+
return {
|
|
70
|
+
customPlayers: [] as Array<CustomPlayer>,
|
|
71
|
+
};
|
|
72
|
+
},
|
|
73
|
+
|
|
66
74
|
computed: {
|
|
75
|
+
authenticated(): boolean {
|
|
76
|
+
return (state.generalParameters.authenticated as boolean);
|
|
77
|
+
},
|
|
67
78
|
customPlayersDisplay(): Array<CustomPlayer>{
|
|
68
79
|
return this.customPlayers.filter((player: CustomPlayer)=>{
|
|
69
80
|
return (('EPISODE' === player.typePlayer ||'SUGGESTION' === player.typePlayer) && this.podcast && this.podcast.podcastId) ||
|
|
@@ -71,5 +82,41 @@ export default defineComponent({
|
|
|
71
82
|
});
|
|
72
83
|
},
|
|
73
84
|
},
|
|
85
|
+
async created() {
|
|
86
|
+
await this.initCustomPlayers();
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
methods: {
|
|
90
|
+
async fetchCustomPlayers(type:string, trySelect: boolean): Promise<boolean>{
|
|
91
|
+
let players = await octopusApi.fetchCustomPlayer('customPlayer/type/'+ this.organisationId+'/'+type);
|
|
92
|
+
let playersContent = players.content;
|
|
93
|
+
const totalCount = players.totalElements;
|
|
94
|
+
let index = 1;
|
|
95
|
+
while (totalCount > playersContent.length) {
|
|
96
|
+
players = await octopusApi.fetchCustomPlayer('customPlayer/type/'+ this.organisationId+'/'+type+'?start='+index);
|
|
97
|
+
playersContent = playersContent.concat(players.content);
|
|
98
|
+
++index;
|
|
99
|
+
}
|
|
100
|
+
this.customPlayers = this.customPlayers.concat(playersContent);
|
|
101
|
+
if(trySelect && this.customPlayers[0] && this.customPlayers[0].selected){
|
|
102
|
+
this.$emit('update:iFrameModel',this.customPlayers[0].customId);
|
|
103
|
+
return false;
|
|
104
|
+
}
|
|
105
|
+
return true;
|
|
106
|
+
},
|
|
107
|
+
async initCustomPlayers(): Promise<void> {
|
|
108
|
+
if (!this.authenticated) return;
|
|
109
|
+
if(this.playlist){
|
|
110
|
+
this.fetchCustomPlayers('PLAYLIST', true);
|
|
111
|
+
}else if(this.emission && !this.podcast){
|
|
112
|
+
this.fetchCustomPlayers('EMISSION', true);
|
|
113
|
+
}else{
|
|
114
|
+
let playerTrySelect = true;
|
|
115
|
+
playerTrySelect = await this.fetchCustomPlayers('EPISODE', playerTrySelect);
|
|
116
|
+
playerTrySelect = await this.fetchCustomPlayers('EMISSION', playerTrySelect);
|
|
117
|
+
playerTrySelect = await this.fetchCustomPlayers('SUGGESTION', playerTrySelect);
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
}
|
|
74
121
|
})
|
|
75
122
|
</script>
|
|
@@ -81,14 +81,14 @@
|
|
|
81
81
|
>
|
|
82
82
|
{{ $t('TutoMag') }}
|
|
83
83
|
</a>
|
|
84
|
-
<hr class="dropdown-divider">
|
|
85
|
-
<a
|
|
86
|
-
class="dropdown-item"
|
|
87
|
-
href="/sso/logout"
|
|
88
|
-
>
|
|
89
|
-
{{ $t('Logout') }}
|
|
90
|
-
</a>
|
|
91
84
|
</template>
|
|
85
|
+
<hr class="dropdown-divider">
|
|
86
|
+
<a
|
|
87
|
+
class="dropdown-item"
|
|
88
|
+
href="/sso/logout"
|
|
89
|
+
>
|
|
90
|
+
{{ $t('Logout') }}
|
|
91
|
+
</a>
|
|
92
92
|
</template>
|
|
93
93
|
</div>
|
|
94
94
|
</div>
|
|
@@ -147,24 +147,30 @@ export default defineComponent({
|
|
|
147
147
|
|
|
148
148
|
<style lang="scss">
|
|
149
149
|
.octopus-app{
|
|
150
|
-
.player-grow-content {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
150
|
+
.player-grow-content {
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
flex-grow: 1;
|
|
154
|
+
flex-shrink: 1;
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
font-size: 0.8rem;
|
|
157
|
+
.progress {
|
|
158
|
+
height: 4px;
|
|
159
|
+
position: relative;
|
|
160
|
+
@media (max-width: 960px) {
|
|
161
|
+
height: 8px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
.progress-bar-duration {
|
|
165
|
+
width: 10px;
|
|
166
|
+
}
|
|
167
|
+
.progress-bar {
|
|
168
|
+
height: 4px;
|
|
169
|
+
position: absolute;
|
|
170
|
+
@media (max-width: 960px) {
|
|
171
|
+
height: 8px;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
167
174
|
}
|
|
168
175
|
}
|
|
169
|
-
}
|
|
170
176
|
</style>
|
|
@@ -258,10 +258,7 @@ export default defineComponent({
|
|
|
258
258
|
|
|
259
259
|
date(): string {
|
|
260
260
|
if (1970 !== moment(this.podcast.pubDate).year()){
|
|
261
|
-
|
|
262
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
263
|
-
}
|
|
264
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
261
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
265
262
|
}
|
|
266
263
|
return '';
|
|
267
264
|
},
|
package/src/locale/en.ts
CHANGED
|
@@ -154,10 +154,10 @@ export default{
|
|
|
154
154
|
'Podcast in error': 'Podcast in error',
|
|
155
155
|
'See podcasts no visible':
|
|
156
156
|
'See podcasts not visible to the audience',
|
|
157
|
-
'Number podcasts': '{nb}
|
|
158
|
-
'Number emissions': '{nb}
|
|
159
|
-
'Number participants': '{nb}
|
|
160
|
-
'Number productors': '{nb}
|
|
157
|
+
'Number podcasts': '{nb} podcasts',
|
|
158
|
+
'Number emissions': '{nb} series',
|
|
159
|
+
'Number participants': '{nb} speakers',
|
|
160
|
+
'Number productors': '{nb} Producers',
|
|
161
161
|
'Display next': 'Display the following episodes',
|
|
162
162
|
'Display previous': 'Display previous episodes',
|
|
163
163
|
Play: 'Play',
|
|
@@ -240,9 +240,9 @@ export default{
|
|
|
240
240
|
'All live emission button': "All lives in the serie",
|
|
241
241
|
'player parameters': 'Setting of player',
|
|
242
242
|
'Start at': 'Start at',
|
|
243
|
-
'sort by score': '
|
|
244
|
-
'sort by alphabetical': '
|
|
245
|
-
'sort by date': '
|
|
243
|
+
'sort by score': 'by relevancy score',
|
|
244
|
+
'sort by alphabetical': 'sorted alphabetically',
|
|
245
|
+
'sort by date': 'sorted by date',
|
|
246
246
|
'Be the first to react': 'Be the first to react',
|
|
247
247
|
"Podcast's comments": "Podcast's comments",
|
|
248
248
|
'()': '({nb})',
|
package/src/locale/fr.ts
CHANGED
|
@@ -240,9 +240,9 @@ export default{
|
|
|
240
240
|
'All live emission button': "Tous les lives de l'émission",
|
|
241
241
|
'player parameters': 'Paramètres du player',
|
|
242
242
|
'Start at': 'Démarrer à',
|
|
243
|
-
'sort by score': '
|
|
244
|
-
'sort by alphabetical': '
|
|
245
|
-
'sort by date': '
|
|
243
|
+
'sort by score': 'triés par pertinence',
|
|
244
|
+
'sort by alphabetical': 'triés par ordre alphabétique',
|
|
245
|
+
'sort by date': 'triés par ordre antéchronologique',
|
|
246
246
|
'Be the first to react': 'Soyez le premier à réagir à ce podcast',
|
|
247
247
|
"Podcast's comments": "Commentaires de l'épisode",
|
|
248
248
|
'()': '({nb})',
|
package/src/locale/it.ts
CHANGED
|
@@ -107,7 +107,7 @@ export default{
|
|
|
107
107
|
'Authorized advertising': 'Pubblicità autorizzata',
|
|
108
108
|
Distribute: 'Distribuzione',
|
|
109
109
|
'Rss feed:': 'RSS Feed:',
|
|
110
|
-
'See more': '
|
|
110
|
+
'See more': 'Ascolta altri',
|
|
111
111
|
'Search results': 'Cerca risultati per "{query}"',
|
|
112
112
|
'Search - no results': 'Ricerca - nessun risultato per "{query}"',
|
|
113
113
|
Downloading: 'In download',
|
|
@@ -124,7 +124,7 @@ export default{
|
|
|
124
124
|
'Embed link': 'Inserisci lettore',
|
|
125
125
|
'Embedly link': 'Player link',
|
|
126
126
|
'Direct link': 'Audio link',
|
|
127
|
-
'Advanced filters': '
|
|
127
|
+
'Advanced filters': 'Ricerca avanzata',
|
|
128
128
|
Advertising: 'Pubblicità',
|
|
129
129
|
'By topic': 'Per tema',
|
|
130
130
|
'By rubric': 'Per rubrica',
|
|
@@ -151,10 +151,10 @@ export default{
|
|
|
151
151
|
'Podcast in error': 'Podcast in errore',
|
|
152
152
|
'See podcasts no visible':
|
|
153
153
|
'Vedi podcast non visibili al pubblico',
|
|
154
|
-
'Number podcasts': '{nb}
|
|
155
|
-
'Number emissions': '{nb}
|
|
156
|
-
'Number participants': '{nb}
|
|
157
|
-
'Number productors': '{nb}
|
|
154
|
+
'Number podcasts': '{nb} podcast',
|
|
155
|
+
'Number emissions': '{nb} serie',
|
|
156
|
+
'Number participants': '{nb} speaker',
|
|
157
|
+
'Number productors': '{nb} producer',
|
|
158
158
|
'Display next': 'Mostra episodi seguenti',
|
|
159
159
|
'Display previous': 'Mostra episodi precedenti',
|
|
160
160
|
Play: 'Play',
|
|
@@ -285,7 +285,7 @@ export default{
|
|
|
285
285
|
"Copy this page URL":"Copia la URL di questa pagina",
|
|
286
286
|
"Custom version":"Versione customizzata",
|
|
287
287
|
"All":"Tutto",
|
|
288
|
-
'By category': 'Per categoria
|
|
288
|
+
'By category': 'Per categoria',
|
|
289
289
|
"Add a sort criterion by topic":"Aggiungi un criterio di suddivisione per tema",
|
|
290
290
|
'Share QR Code': "Condividi il QR Code",
|
|
291
291
|
"Download":"Download",
|
package/src/main.ts
CHANGED
package/src/store/paramStore.ts
CHANGED
|
@@ -12,7 +12,7 @@ const state:paramStore = {
|
|
|
12
12
|
isPlaylist: false,
|
|
13
13
|
isProduction: true,
|
|
14
14
|
isContribution: true,
|
|
15
|
-
ApiUri: 'https://api.
|
|
15
|
+
ApiUri: 'https://api.dev2.saooti.org/',
|
|
16
16
|
podcastmaker: false,
|
|
17
17
|
buttonPlus: true,
|
|
18
18
|
allCategories: [],
|
|
@@ -26,10 +26,10 @@ const state:paramStore = {
|
|
|
26
26
|
SharePlayer: true,
|
|
27
27
|
ShareButtons: true,
|
|
28
28
|
ShareDistribution: true,
|
|
29
|
-
MiniplayerUri: 'https://playerbeta.
|
|
29
|
+
MiniplayerUri: 'https://playerbeta.dev2.saooti.org/',
|
|
30
30
|
ouestFranceStyle: false,
|
|
31
31
|
downloadButton: false,
|
|
32
|
-
hlsUri: 'https://hls.
|
|
32
|
+
hlsUri: 'https://hls.dev2.saooti.org/',
|
|
33
33
|
mainRubrique: 0,
|
|
34
34
|
resourceUrl: undefined
|
|
35
35
|
},
|
|
@@ -85,10 +85,10 @@ const state:paramStore = {
|
|
|
85
85
|
userName: '',
|
|
86
86
|
},
|
|
87
87
|
octopusApi: {
|
|
88
|
-
url: 'http://api.
|
|
89
|
-
commentsUrl: 'http://comments.
|
|
90
|
-
studioUrl: 'http://studio.
|
|
91
|
-
playerUrl: 'https://playerbeta.
|
|
88
|
+
url: 'http://api.dev2.saooti.org/',
|
|
89
|
+
commentsUrl: 'http://comments.dev2.saooti.org/',
|
|
90
|
+
studioUrl: 'http://studio.dev2.saooti.org/',
|
|
91
|
+
playerUrl: 'https://playerbeta.dev2.saooti.org/',
|
|
92
92
|
organisationId: undefined,
|
|
93
93
|
rubriqueIdFilter: undefined,
|
|
94
94
|
},
|