@saooti/octopus-sdk 30.0.66 → 30.0.67
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 +1 -0
- package/package.json +1 -1
- package/src/components/display/emission/EmissionList.vue +4 -4
- package/src/components/display/podcasts/PodcastItem.vue +1 -4
- package/src/components/display/podcasts/PodcastList.vue +4 -4
- 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 +4 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -132,13 +132,13 @@ export default defineComponent({
|
|
|
132
132
|
sortText(): string {
|
|
133
133
|
switch (this.sort) {
|
|
134
134
|
case 'SCORE':
|
|
135
|
-
return this.$t('sort by score').toString();
|
|
135
|
+
return " "+this.$t('sort by score').toString();
|
|
136
136
|
case 'LAST_PODCAST_DESC':
|
|
137
|
-
return this.$t('sort by date').toString();
|
|
137
|
+
return " "+this.$t('sort by date').toString();
|
|
138
138
|
case 'NAME':
|
|
139
|
-
return this.$t('sort by alphabetical').toString();
|
|
139
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
140
140
|
default:
|
|
141
|
-
return this.$t('sort by date').toString();
|
|
141
|
+
return " "+this.$t('sort by date').toString();
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
filterOrga(): string {
|
|
@@ -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');
|
|
@@ -118,13 +118,13 @@ export default defineComponent({
|
|
|
118
118
|
sortText(): string {
|
|
119
119
|
switch (this.sortCriteria) {
|
|
120
120
|
case 'SCORE':
|
|
121
|
-
return this.$t('sort by score').toString();
|
|
121
|
+
return " "+this.$t('sort by score').toString();
|
|
122
122
|
case 'DATE':
|
|
123
|
-
return this.$t('sort by date').toString();
|
|
123
|
+
return " "+this.$t('sort by date').toString();
|
|
124
124
|
case 'NAME':
|
|
125
|
-
return this.$t('sort by alphabetical').toString();
|
|
125
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
126
126
|
default:
|
|
127
|
-
return this.$t('sort by date').toString();
|
|
127
|
+
return " "+this.$t('sort by date').toString();
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
isProduction(): boolean {
|
|
@@ -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
|
@@ -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',
|