@saooti/octopus-sdk 30.0.70 → 30.0.73
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 +3 -1
- package/package.json +1 -1
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +3 -3
- package/src/components/display/podcasts/AnimatorsItem.vue +1 -1
- package/src/components/display/podcasts/PodcastInlineList.vue +29 -7
- package/src/components/display/podcasts/PodcastItem.vue +2 -22
- package/src/components/display/podcasts/PodcastModuleBox.vue +0 -11
- package/src/components/display/sharing/ShareButtons.vue +33 -9
- package/src/locale/de.ts +300 -0
- package/src/locale/en.ts +1 -1
- package/src/locale/es.ts +300 -0
- package/src/locale/messages.ts +6 -0
- package/src/locale/sl.ts +300 -0
- package/src/store/paramStore.ts +7 -7
package/README.md
CHANGED
|
@@ -567,4 +567,6 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
567
567
|
* 30.0.68 Parlement européen
|
|
568
568
|
* 30.0.69 Parlement européen
|
|
569
569
|
* 30.0.70 Améliorations 30
|
|
570
|
-
|
|
570
|
+
* 30.0.71 Parlement européen
|
|
571
|
+
* 30.0.72 Ajout des traductions
|
|
572
|
+
* 30.0.73 Ajout classe css
|
package/package.json
CHANGED
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
<router-link
|
|
50
50
|
class="btn btn-link align-self-center width-fit-content m-4"
|
|
51
51
|
:to="{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
name: 'playlist',
|
|
53
|
+
params: { playlistId: playlistId.toString() },
|
|
54
|
+
}"
|
|
55
55
|
>
|
|
56
56
|
{{ $t('See more') }}
|
|
57
57
|
<div
|
|
@@ -8,17 +8,17 @@
|
|
|
8
8
|
<div class="d-flex">
|
|
9
9
|
<button
|
|
10
10
|
class="btn btn-underline"
|
|
11
|
-
:class="{ active: popularSort }"
|
|
12
|
-
@click="
|
|
11
|
+
:class="{ active: !popularSort }"
|
|
12
|
+
@click="sortChrono()"
|
|
13
13
|
>
|
|
14
|
-
{{ $t('
|
|
14
|
+
{{ $t('Last added') }}
|
|
15
15
|
</button>
|
|
16
16
|
<button
|
|
17
17
|
class="btn btn-underline"
|
|
18
|
-
:class="{ active:
|
|
19
|
-
@click="
|
|
18
|
+
:class="{ active: popularSort }"
|
|
19
|
+
@click="sortPopular()"
|
|
20
20
|
>
|
|
21
|
-
{{ $t('
|
|
21
|
+
{{ $t('Most popular') }}
|
|
22
22
|
</button>
|
|
23
23
|
</div>
|
|
24
24
|
<div
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
<router-link
|
|
69
69
|
class="btn btn-link align-self-center width-fit-content m-4"
|
|
70
70
|
:to="refTo"
|
|
71
|
+
@click="handleSeeMoreButton"
|
|
71
72
|
>
|
|
72
73
|
{{ buttonText }}
|
|
73
74
|
<div
|
|
@@ -89,6 +90,7 @@ import { Podcast } from '@/store/class/general/podcast';
|
|
|
89
90
|
import { RubriquageFilter } from '@/store/class/rubrique/rubriquageFilter';
|
|
90
91
|
import { defineComponent } from 'vue'
|
|
91
92
|
import { RouteLocationRaw } from 'vue-router';
|
|
93
|
+
import { Rubrique } from '@/store/class/rubrique/rubrique';
|
|
92
94
|
export default defineComponent({
|
|
93
95
|
name: 'PodcastInlineList',
|
|
94
96
|
|
|
@@ -122,7 +124,7 @@ export default defineComponent({
|
|
|
122
124
|
first: 0 as number,
|
|
123
125
|
size: 5 as number,
|
|
124
126
|
totalCount: 0 as number,
|
|
125
|
-
popularSort:
|
|
127
|
+
popularSort: false as boolean,
|
|
126
128
|
allPodcasts: [] as Array<Podcast>,
|
|
127
129
|
direction: 1 as number,
|
|
128
130
|
alignLeft: false as boolean,
|
|
@@ -210,6 +212,26 @@ export default defineComponent({
|
|
|
210
212
|
this.fetchNext();
|
|
211
213
|
},
|
|
212
214
|
methods: {
|
|
215
|
+
handleSeeMoreButton(event: { preventDefault: () => void; }){
|
|
216
|
+
if(!this.rubriqueId || this.noRubriquageId.length){
|
|
217
|
+
return;
|
|
218
|
+
}
|
|
219
|
+
event.preventDefault();
|
|
220
|
+
const rubriqueChosenId = this.rubriqueId[this.rubriqueId.length - 1];
|
|
221
|
+
const rubriqueChosen = this.$store.state.filter.rubriquageArray[this.rubriqueId.length - 1].rubriques.find((element: Rubrique) => element.rubriqueId === rubriqueChosenId);
|
|
222
|
+
const filterToAdd = {
|
|
223
|
+
rubriquageId: this.$store.state.filter.rubriquageArray[this.rubriqueId.length - 1].rubriquageId,
|
|
224
|
+
rubriqueId: rubriqueChosenId,
|
|
225
|
+
nameRubriquage: this.$store.state.filter.rubriquageArray[this.rubriqueId.length - 1].title,
|
|
226
|
+
nameRubrique: rubriqueChosen.name
|
|
227
|
+
};
|
|
228
|
+
const newFilter: Array<RubriquageFilter> = Array.from(this.$store.state.filter.rubriqueFilter);
|
|
229
|
+
newFilter.push(filterToAdd);
|
|
230
|
+
this.$store.commit('filterRubrique', newFilter);
|
|
231
|
+
const queries = this.$route.query;
|
|
232
|
+
const queryString = newFilter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
233
|
+
this.$router.push({ name: 'podcasts',query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
234
|
+
},
|
|
213
235
|
async fetchNext(): Promise<void> {
|
|
214
236
|
const data = await octopusApi.fetchPodcasts({
|
|
215
237
|
first: this.first,
|
|
@@ -170,21 +170,11 @@ export default defineComponent({
|
|
|
170
170
|
if (this.podcast.duration <= 1) return '';
|
|
171
171
|
if (this.podcast.duration > 600000) {
|
|
172
172
|
return humanizeDuration(this.podcast.duration, {
|
|
173
|
-
language: 'short'
|
|
173
|
+
language: 'short',
|
|
174
174
|
largest: 1,
|
|
175
175
|
round: true,
|
|
176
176
|
languages: {
|
|
177
|
-
|
|
178
|
-
y: () => 'années',
|
|
179
|
-
mo: () => 'mois',
|
|
180
|
-
w: () => 'semaines',
|
|
181
|
-
d: () => 'jours',
|
|
182
|
-
h: () => 'h',
|
|
183
|
-
m: () => 'min',
|
|
184
|
-
s: () => 'sec',
|
|
185
|
-
ms: () => 'ms',
|
|
186
|
-
},
|
|
187
|
-
shortEn: {
|
|
177
|
+
short: {
|
|
188
178
|
y: () => 'years',
|
|
189
179
|
mo: () => 'months',
|
|
190
180
|
w: () => 'weeks',
|
|
@@ -194,16 +184,6 @@ export default defineComponent({
|
|
|
194
184
|
s: () => 'sec',
|
|
195
185
|
ms: () => 'ms',
|
|
196
186
|
},
|
|
197
|
-
shortIt: {
|
|
198
|
-
y: () => 'anni',
|
|
199
|
-
mo: () => 'mesi',
|
|
200
|
-
w: () => 'settimane',
|
|
201
|
-
d: () => 'giorni',
|
|
202
|
-
h: () => 'h',
|
|
203
|
-
m: () => 'min',
|
|
204
|
-
s: () => 'sec',
|
|
205
|
-
ms: () => 'ms',
|
|
206
|
-
},
|
|
207
187
|
},
|
|
208
188
|
});
|
|
209
189
|
}
|
|
@@ -139,12 +139,6 @@
|
|
|
139
139
|
:message="$t('Podcast not validated')"
|
|
140
140
|
/>
|
|
141
141
|
</div>
|
|
142
|
-
<ShareButtons
|
|
143
|
-
v-if="isDownloadButton"
|
|
144
|
-
:podcast="podcast"
|
|
145
|
-
:big-round="true"
|
|
146
|
-
:audio-url="podcast.audioUrl"
|
|
147
|
-
/>
|
|
148
142
|
</div>
|
|
149
143
|
</div>
|
|
150
144
|
</div>
|
|
@@ -168,14 +162,12 @@ import { Podcast } from '@/store/class/general/podcast';
|
|
|
168
162
|
import { Conference } from '@/store/class/conference/conference';
|
|
169
163
|
|
|
170
164
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
171
|
-
const ShareButtons = defineAsyncComponent(() => import('../sharing/ShareButtons.vue'));
|
|
172
165
|
const ErrorMessage = defineAsyncComponent(() => import('../../misc/ErrorMessage.vue'));
|
|
173
166
|
export default defineComponent({
|
|
174
167
|
name: "PodcastModuleBox",
|
|
175
168
|
components: {
|
|
176
169
|
PodcastImage,
|
|
177
170
|
ParticipantDescription,
|
|
178
|
-
ShareButtons,
|
|
179
171
|
TagList,
|
|
180
172
|
ErrorMessage,
|
|
181
173
|
PodcastPlayBar
|
|
@@ -209,9 +201,6 @@ export default defineComponent({
|
|
|
209
201
|
isOuestFrance(): boolean {
|
|
210
202
|
return (state.podcastPage.ouestFranceStyle as boolean);
|
|
211
203
|
},
|
|
212
|
-
isDownloadButton(): boolean {
|
|
213
|
-
return (state.podcastPage.downloadButton as boolean);
|
|
214
|
-
},
|
|
215
204
|
date(): string {
|
|
216
205
|
if (this.podcast && 1970 !== moment(this.podcast.pubDate).year()){
|
|
217
206
|
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
@@ -32,17 +32,18 @@
|
|
|
32
32
|
verticalDisplay ? 'd-flex-row' : '',
|
|
33
33
|
]"
|
|
34
34
|
>
|
|
35
|
-
<
|
|
36
|
-
v-if="
|
|
37
|
-
class="
|
|
35
|
+
<button
|
|
36
|
+
v-if="isDownloadButton"
|
|
37
|
+
class="text-dark"
|
|
38
|
+
:class="[
|
|
39
|
+
bigRound ? 'btn btn-big-round' : 'btn share-btn mb-2',
|
|
40
|
+
verticalDisplay ? '' : 'mx-2',
|
|
41
|
+
]"
|
|
38
42
|
:title="$t('Downloading')"
|
|
39
|
-
|
|
40
|
-
rel="noopener"
|
|
41
|
-
target="_blank"
|
|
42
|
-
download
|
|
43
|
+
@click="onDownload(podcast.audioUrl, podcast.title)"
|
|
43
44
|
>
|
|
44
45
|
<div class="saooti-download-bounty" />
|
|
45
|
-
</
|
|
46
|
+
</button>
|
|
46
47
|
<a
|
|
47
48
|
rel="noopener"
|
|
48
49
|
target="_blank"
|
|
@@ -283,6 +284,12 @@ export default defineComponent({
|
|
|
283
284
|
},
|
|
284
285
|
|
|
285
286
|
computed: {
|
|
287
|
+
isDownloadButton(): boolean{
|
|
288
|
+
return this.isDownloadButtonParam && undefined!==this.podcast && (!this.podcast.tags || !this.podcast.tags.includes('copyright'));
|
|
289
|
+
},
|
|
290
|
+
isDownloadButtonParam(): boolean {
|
|
291
|
+
return (state.podcastPage.downloadButton as boolean);
|
|
292
|
+
},
|
|
286
293
|
urlPage(): string{
|
|
287
294
|
return window.location.href;
|
|
288
295
|
},
|
|
@@ -334,7 +341,24 @@ export default defineComponent({
|
|
|
334
341
|
let check = false;
|
|
335
342
|
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent);
|
|
336
343
|
return check;
|
|
337
|
-
}
|
|
344
|
+
},
|
|
345
|
+
onDownload(urlToDownload: string, nameOfDownload: string): void{
|
|
346
|
+
const xhr = new XMLHttpRequest();
|
|
347
|
+
xhr.open('GET', urlToDownload, true);
|
|
348
|
+
xhr.responseType = 'blob';
|
|
349
|
+
xhr.onload = function() {
|
|
350
|
+
const urlCreator = window.URL || window.webkitURL;
|
|
351
|
+
const imageUrl = urlCreator.createObjectURL(this.response);
|
|
352
|
+
const tag = document.createElement('a');
|
|
353
|
+
tag.href = imageUrl;
|
|
354
|
+
tag.target = '_blank';
|
|
355
|
+
tag.download = nameOfDownload.replace(/ /g, '_');
|
|
356
|
+
document.body.appendChild(tag);
|
|
357
|
+
tag.click();
|
|
358
|
+
document.body.removeChild(tag);
|
|
359
|
+
};
|
|
360
|
+
xhr.send();
|
|
361
|
+
},
|
|
338
362
|
},
|
|
339
363
|
})
|
|
340
364
|
</script>
|
package/src/locale/de.ts
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
export default{
|
|
2
|
+
'Edit my profile': "Mein Profil",
|
|
3
|
+
'Edit my organisation': "Meine Organisation",
|
|
4
|
+
Logout: "Logout",
|
|
5
|
+
Login: "Login",
|
|
6
|
+
'Animated by': "Erstellt von",
|
|
7
|
+
Home: "Startseite",
|
|
8
|
+
Podcasts: "Folgen",
|
|
9
|
+
Emissions: "Reihen",
|
|
10
|
+
Productors: "Produzenten",
|
|
11
|
+
Productor: "Produzent",
|
|
12
|
+
Speakers: "Sprecher",
|
|
13
|
+
Guests: "Gäste",
|
|
14
|
+
Favorites: "Favoriten",
|
|
15
|
+
Distributor: "Audio-Plattform",
|
|
16
|
+
Image: "Bild",
|
|
17
|
+
|
|
18
|
+
'See my statistics': "Statistik",
|
|
19
|
+
'Edit / Delete episodes': "Meine Folgen",
|
|
20
|
+
'Welcome in the Backoffice': "Einstellungen",
|
|
21
|
+
'Please set an animator': "Bitte wählen oder erstellen Sie einen Moderator.",
|
|
22
|
+
'Term of use': "Nutzungsbedingungen",
|
|
23
|
+
'Producted by : ': "Produziert von",
|
|
24
|
+
'Loading podcasts ...': "Podcasts werden geladen …",
|
|
25
|
+
'Logo of main page': "Logo Hauptseite",
|
|
26
|
+
'All podcasts': "Alle Podcasts",
|
|
27
|
+
Error: "Fehler",
|
|
28
|
+
Upload: "Hochladen",
|
|
29
|
+
'Count more elements matched your query, please make a more specific search.':
|
|
30
|
+
"Für Ihre Suche gibt es immer noch {count} Ergebnisse. Bitte grenzen Sie Ihre Suche ein.",
|
|
31
|
+
'Animator image': "Bild des Autors",
|
|
32
|
+
Emission: "Reihe",
|
|
33
|
+
'Emission description': "Beschreibung der Reihe",
|
|
34
|
+
'Emission image': "Bild zur Reihe",
|
|
35
|
+
'Emission name': "Titel der Reihe",
|
|
36
|
+
'No elements found. Consider changing the search query.':
|
|
37
|
+
"Keine Ergebnisse. Bitte ändern Sie die Suchanfrage.",
|
|
38
|
+
'Podcast is not visible for listeners':
|
|
39
|
+
"Podcast ist für Hörer verborgen",
|
|
40
|
+
Validate: "Bestätigen",
|
|
41
|
+
Cancel: "Abbrechen",
|
|
42
|
+
'Most popular': "Beliebteste",
|
|
43
|
+
'Last added': "Neueste",
|
|
44
|
+
'All podcast button': 'Alle Podcasts von "{Name}"',
|
|
45
|
+
'Podcast search': "Podcasts durchsuchen",
|
|
46
|
+
'No podcast match your query':
|
|
47
|
+
"Kein Podcast entspricht Ihrer Suchanfrage.",
|
|
48
|
+
'Please type at least three characters': "Geben Sie mindestens drei Zeichen ein.",
|
|
49
|
+
'My space': "Einstellungen",
|
|
50
|
+
'All participants': "Alle Sprecher",
|
|
51
|
+
'All productors': "Alle Produzenten",
|
|
52
|
+
'All emissions': "Alle Reihen",
|
|
53
|
+
'Filter by keyword : ': "Nach Schlagwort filtern: ",
|
|
54
|
+
'Look for participant name': "Nach Sprecher suchen",
|
|
55
|
+
'Look for productor name': "Nach Produzent suchen",
|
|
56
|
+
'Look for emission name': "Nach Reihe suchen",
|
|
57
|
+
'Look for podcast name': "Nach Podcast-Titel suchen",
|
|
58
|
+
'Type string to filter by organisation': "Nach Organisation filtern",
|
|
59
|
+
'Type string to filter by emission': "Nach Reihe filtern",
|
|
60
|
+
'Type string to filter by podcast': "Nach Podcast filtern",
|
|
61
|
+
'No organisation filter': "Keine Organisation",
|
|
62
|
+
'No emission filter': "Keine Reihe",
|
|
63
|
+
'No podcast filter': "Kein Podcast",
|
|
64
|
+
'Loading participants ...': "Sprecher laden …",
|
|
65
|
+
'Loading productors ...': "Produzenten laden …",
|
|
66
|
+
'Loading emissions ...': "Reihe laden …",
|
|
67
|
+
'Emission name image': "Bild zur Reihe {name}",
|
|
68
|
+
'Loading content ...': "Inhalt wird geladen ...",
|
|
69
|
+
Episode: "Folge",
|
|
70
|
+
'Episode name image': "Bild zur Folge {name}",
|
|
71
|
+
'More episodes of this emission': "Mehr Folgen aus dieser Reihe",
|
|
72
|
+
'More episodes of this category : {name}': "Mehr Folgen aus dieser Kategorie: {name}",
|
|
73
|
+
'All podcast serie button': "Alle Folgen dieser Reihe",
|
|
74
|
+
Duration: "Dauer: {duration}",
|
|
75
|
+
Animator: "Autor",
|
|
76
|
+
'No category filter': "Keine Kategorie",
|
|
77
|
+
'Type string to filter by categories': "Nach Kategorien filtern",
|
|
78
|
+
Search: "Suche",
|
|
79
|
+
Close: "Schließen",
|
|
80
|
+
Embed: "Player",
|
|
81
|
+
Share: "Seite teilen",
|
|
82
|
+
'Share the player': "Player teilen",
|
|
83
|
+
'Share player': "Player teilen",
|
|
84
|
+
'Copy code': "Code kopieren",
|
|
85
|
+
Copy: "Kopieren",
|
|
86
|
+
Show: "Anzeigen",
|
|
87
|
+
'Last podcasts': "Neueste Podcasts",
|
|
88
|
+
Contact: "Kontakt",
|
|
89
|
+
'List is empty': "Diese Liste ist leer.",
|
|
90
|
+
'Used libraries': "Verwendete Bibliotheken",
|
|
91
|
+
Front: "Front End",
|
|
92
|
+
Back: "Back End",
|
|
93
|
+
'Look for library': "Nach Bibliothek suchen",
|
|
94
|
+
Yes: "Ja",
|
|
95
|
+
No: "Nein",
|
|
96
|
+
"Podcast doesn't exist": "Podcast nicht gefunden",
|
|
97
|
+
"Emission doesn't exist": "Reihe nicht gefunden",
|
|
98
|
+
"Animator doesn't exist": "Autor nicht gefunden",
|
|
99
|
+
"Productor doesn't exist": "Produzent nicht gefunden",
|
|
100
|
+
'Create an account': "Konto erstellen",
|
|
101
|
+
'Link in clipboard': "Link in Zwischenablage kopiert",
|
|
102
|
+
'Data in clipboard': "Daten in Zwischenablage",
|
|
103
|
+
'check this box if you want to keep this filter for the rest of your visit':
|
|
104
|
+
"Dieses Feld aktivieren, wenn Sie den Filter für den Rest Ihres Besuchs beibehalten möchten",
|
|
105
|
+
'No advertising': "Keine Werbung",
|
|
106
|
+
'You cannot insert advertising':
|
|
107
|
+
"Sie können für diesen Podcast keine Werbung einfügen.",
|
|
108
|
+
'Prohibited advertising': "Werbung verboten",
|
|
109
|
+
'Authorized advertising': "Werbung erlaubt",
|
|
110
|
+
Distribute: "Teilen",
|
|
111
|
+
'Rss feed:': "RSS-Feed",
|
|
112
|
+
'See more': "Mehr",
|
|
113
|
+
'Search results': 'Suchergebnisse für "{query}"',
|
|
114
|
+
'Search - no results': 'Suche – keine Ergebnisse für "{query}"',
|
|
115
|
+
Downloading: "Wird heruntergeladen",
|
|
116
|
+
'Subscribe to this emission': "Diese Reihe abonnieren",
|
|
117
|
+
'Subscribe to this participant': "Diese Sprecher abonnieren",
|
|
118
|
+
'Emission have not podcasts': "In dieser Reihe gibt es keine Podcasts.",
|
|
119
|
+
'Participant have not podcasts':
|
|
120
|
+
"Dieser Sprecher ist keinem Podcast zugeordnet.",
|
|
121
|
+
'Default version': "Standard-Player",
|
|
122
|
+
'Large version': "Großer Player",
|
|
123
|
+
'Emission version': "Player für Reihe",
|
|
124
|
+
'Large emission version': "Großer Player für Reihe",
|
|
125
|
+
'Large suggestion version': "Großer Player mit Hörvorschlägen",
|
|
126
|
+
'Embed link': "Miniplayer einbetten",
|
|
127
|
+
'Embedly link': "Link zum Player",
|
|
128
|
+
'Direct link': "Link zum Audio",
|
|
129
|
+
'Advanced filters': "Erweiterte Filter",
|
|
130
|
+
Advertising: "Werbung",
|
|
131
|
+
'By topic': "Nach Thema",
|
|
132
|
+
'By rubric': "Nach Rubrik",
|
|
133
|
+
'Type string to filter by rubrics': "Nach Rubriken filtern",
|
|
134
|
+
'No rubric filter': "Keine Rubrik",
|
|
135
|
+
'From the :': "Vom:",
|
|
136
|
+
'To the :': "Bis zum:",
|
|
137
|
+
Visible: "Sichtbar",
|
|
138
|
+
'In creation': "In Arbeit",
|
|
139
|
+
'Publish in future': "Folgen anzeigen, die für Besucher verborgen sind",
|
|
140
|
+
'In error': "Fehler",
|
|
141
|
+
'Emission with episode published :':
|
|
142
|
+
"Reihe zu dieser Folge veröffentlicht am: ",
|
|
143
|
+
Sort: "Sortiert",
|
|
144
|
+
Filter: "Filter",
|
|
145
|
+
'Sort score': "Nach Relevanz",
|
|
146
|
+
'Sort name': "Nach Titel",
|
|
147
|
+
'Sort last': "Nach Datum",
|
|
148
|
+
'Choose color': "Farbe wählen",
|
|
149
|
+
'Choose theme': "Design wählen",
|
|
150
|
+
'Podcast no visible': "Podcast nicht sichtbar",
|
|
151
|
+
'Display episodes': "Folgen anzeigen",
|
|
152
|
+
'Podcast published in future': "Podcast geplant",
|
|
153
|
+
'Podcast in process': "Podcast in Arbeit",
|
|
154
|
+
'Podcast in error': "Podcast fehlerhaft",
|
|
155
|
+
'See podcasts no visible':
|
|
156
|
+
"Für Besucher verborgene Podcasts sehen",
|
|
157
|
+
'Number podcasts': "{nb} Podcasts",
|
|
158
|
+
'Number emissions': "{nb} Reihen",
|
|
159
|
+
'Number participants': "{nb} Sprecher",
|
|
160
|
+
'Number productors': "{nb} Produzenten",
|
|
161
|
+
'Display next': "Spätere Folgen anzeigen",
|
|
162
|
+
'Display previous': "Frühere Folgen anzeigen",
|
|
163
|
+
Play: "Abspielen",
|
|
164
|
+
Pause: "Pause",
|
|
165
|
+
'Show description': "Beschreibung anzeigen",
|
|
166
|
+
'Hide description': "Beschreibung ausblenden",
|
|
167
|
+
'open left Menu': "Menü öffnen/schließen",
|
|
168
|
+
Participant: "Sprecher",
|
|
169
|
+
'Number of player podcasts': "Anzahl der Podcasts im Player",
|
|
170
|
+
'Proceed reading': "Weiterhören",
|
|
171
|
+
'Without topic': "Ohne Thema",
|
|
172
|
+
'Without rubric': "Ohne Rubrik",
|
|
173
|
+
'Consider podcasts no visible':
|
|
174
|
+
"Auch Podcasts anzeigen, die für Besucher verborgen sind",
|
|
175
|
+
'Hosted by': "Erstellt von",
|
|
176
|
+
TutoMag: "TutoMag",
|
|
177
|
+
News: "Aktuelles",
|
|
178
|
+
'Known issues': "Bekannte Themen",
|
|
179
|
+
Help: "Hilfe",
|
|
180
|
+
'Podcast play error': "Beim Abspielen des Podcasts ist ein Fehler aufgetreten.",
|
|
181
|
+
'More episodes': "Mehr Folgen",
|
|
182
|
+
Stop: "Anhalten",
|
|
183
|
+
'Share this page without edit and share blocks':
|
|
184
|
+
"Diese Seite ohne Bearbeitungsblöcke teilen",
|
|
185
|
+
'Podcast in cancelled status': "Dieser Podcast wurde gestrichen",
|
|
186
|
+
'Show every episode': "Alle Folgen anzeigen",
|
|
187
|
+
'Subscribe emission': "Reihe abonnieren",
|
|
188
|
+
'Rss feed parameters': "RSS-Feed-Einstellungen",
|
|
189
|
+
'Not share episodes before':
|
|
190
|
+
"Folgen erst teilen ab",
|
|
191
|
+
'Not share episodes after':
|
|
192
|
+
"Folgen nicht mehr teilen ab",
|
|
193
|
+
hours: "Stunde(n)",
|
|
194
|
+
days: "Tag(e)",
|
|
195
|
+
Live: "Live-Übertragung",
|
|
196
|
+
'In live': "Auf Sendung",
|
|
197
|
+
'Launch a new live': "Neue Live-Übertragung erstellen",
|
|
198
|
+
'Loading lives...': "Live-Übertragungen laden …",
|
|
199
|
+
'No live currently': "Derzeit keine Live-Übertragung verfügbar",
|
|
200
|
+
'live upcoming': "Live-Übertragung beginnt gleich",
|
|
201
|
+
"live in few time":"Live-Übertragung bald verfügbar",
|
|
202
|
+
Debriefing: "Nachbereitung",
|
|
203
|
+
Publishing: "Veröffentlichen",
|
|
204
|
+
'select productor': "Produzenten wählen",
|
|
205
|
+
'Share newsletter': "Einen Newsletter teilen",
|
|
206
|
+
Configuration: "Konfiguration",
|
|
207
|
+
'HTML Code': "HTML-Code",
|
|
208
|
+
'Listen this episode': "Diese Folge anhören",
|
|
209
|
+
'Display emission name': "Titel der Reihe anzeigen",
|
|
210
|
+
'Display participants list': "Liste der Sprecher anzeigen",
|
|
211
|
+
'Choose main color': "Wählen Sie die Hauptfarbe",
|
|
212
|
+
'Octopus is ACPM Podcast accredited': "Octopus ist von der ACPM zertifiziert",
|
|
213
|
+
'Live episode': "Aktuelle Live-Übertragungen",
|
|
214
|
+
'This live will start': "Diese Live-Übertragung beginnt",
|
|
215
|
+
'In days hours minutes seconds':
|
|
216
|
+
"in {days} Tagen, {hours} Stunden, {minutes} Minuten und {seconds} Sekunden",
|
|
217
|
+
'Open studio': "Studio frei",
|
|
218
|
+
'Episode record in live': "Live-Aufnahme",
|
|
219
|
+
'In a moment': "Gleich verfügbar",
|
|
220
|
+
'Live to be': "In Kürze verfügbar",
|
|
221
|
+
'Live terminated': "Live-Übertragung beendet",
|
|
222
|
+
'Next live date': "Die nächste Live-Übertragung ist am {date}.",
|
|
223
|
+
'Not recording': "Nicht aufgezeichnet",
|
|
224
|
+
'This live is not started yet': "Live-Übertragung hat noch nicht begonnen",
|
|
225
|
+
'A live can start any moment': "Live-Übertragung beginnt gleich",
|
|
226
|
+
'Recorded in live': "Live-Aufnahme",
|
|
227
|
+
'Podcast linked to waiting live': "Podcast ist mit geplanter Live-Übertragung verbunden",
|
|
228
|
+
Playlists: "Wiedergabelisten",
|
|
229
|
+
Playlist: "Wiedergabeliste",
|
|
230
|
+
'All playlists': "Alle Wiedergabelisten",
|
|
231
|
+
'Look for playlist name': "Wiedergabeliste nach Titel suchen",
|
|
232
|
+
'Number playlists': "{NB} Wiedergabelisten",
|
|
233
|
+
'Playlist have not podcasts': "In der Wiedergabeliste gibt es keinen Podcast.",
|
|
234
|
+
"Playlist doesn't exist": "Gesuchte Wiedergabeliste nicht gefunden",
|
|
235
|
+
'Playlist name image': "Wiedergabeliste {name}",
|
|
236
|
+
'Create playlist': "Wiedergabeliste erstellen",
|
|
237
|
+
'Podcasts in the playlist': "Alle Podcasts in der Wiedergabeliste",
|
|
238
|
+
'No podcasts in the playlist': "Keine Podcasts in der Wiedergabeliste",
|
|
239
|
+
'Start in a while': "Beginnt gleich",
|
|
240
|
+
'All live emission button': "Alle Live-Übertragungen der Reihe",
|
|
241
|
+
'player parameters': "Player-Einstellungen",
|
|
242
|
+
'Start at': "Beginnt um",
|
|
243
|
+
'sort by score': "Nach Relevanz",
|
|
244
|
+
'sort by alphabetical': "In alphabetischer Reihenfolge",
|
|
245
|
+
'sort by date': "Nach Datum",
|
|
246
|
+
'Be the first to react': "Ersten Kommentar hinterlassen",
|
|
247
|
+
"Podcast's comments": "Kommentare zum Podcast",
|
|
248
|
+
'()': '({nb})',
|
|
249
|
+
'Write a comment': "Kommentar schreiben",
|
|
250
|
+
'Answer a comment': "Auf Kommentar antworten",
|
|
251
|
+
'See more comments': "Weitere Kommentare",
|
|
252
|
+
'To answer': "Antworten",
|
|
253
|
+
'Display answers': "Alle {nb} Antworten anzeigen",
|
|
254
|
+
'Hide answers': "Antworten verbergen",
|
|
255
|
+
'Read more': "Mehr anzeigen",
|
|
256
|
+
'Read less': "Verbergen",
|
|
257
|
+
'(nb valid comment answers)': "({nb} gültige Antworten auf Kommentare)",
|
|
258
|
+
'Welcome, thanks for your comment': "Willkommen, danke für Ihren Kommentar.",
|
|
259
|
+
"Let's get acquainted :": "Stellen Sie sich vor:",
|
|
260
|
+
'Your name': "Ihr Name",
|
|
261
|
+
'Send in progress': "Wird gesendet …",
|
|
262
|
+
'Error occurs while post your comment...':
|
|
263
|
+
"Bei der Veröffentlichung Ihres Kommentars ist ein Fehler aufgetreten",
|
|
264
|
+
'Comments loading error': "Beim Laden der Kommentare ist ein Fehler aufgetreten",
|
|
265
|
+
'Certified account': "Verifiziertes Konto",
|
|
266
|
+
'No comments': "Keine Kommentare",
|
|
267
|
+
'In response to': "Antwort auf",
|
|
268
|
+
'Please chose a productor': "Produzenten wählen",
|
|
269
|
+
'Podcast in ERROR, please contact Saooti':
|
|
270
|
+
"Bei der Verarbeitung dieses Podcasts ist ein Fehler aufgetreten. Wenden Sie sich bitte an Saooti.",
|
|
271
|
+
'Podcast still available':
|
|
272
|
+
"Podcast für Besucher verfügbar",
|
|
273
|
+
'Podcasts still available':
|
|
274
|
+
"Ausgeblendete Folgen sollen für Hörer verfügbar bleiben",
|
|
275
|
+
'Podcast image': "Bild zum Podcast",
|
|
276
|
+
'Recaptcha error':
|
|
277
|
+
"Google reCAPTCHA hält Sie für einen Roboter",
|
|
278
|
+
'Recaptcha not active': "Google CAPTCHA ist deaktiviert",
|
|
279
|
+
'Comment waiting':
|
|
280
|
+
"Der Kommentar ist für andere Besucher erst sichtbar, nachdem er validiert wurde.",
|
|
281
|
+
'Display all podcasts to validate': "Alle noch nicht validierten Podcasts anzeigen",
|
|
282
|
+
'Display my podcasts to validate': "Meine noch nicht validierten Podcasts anzeigen",
|
|
283
|
+
'Podcast not validated': "Nicht validierter Podcast",
|
|
284
|
+
'Podcast to validate': "Podcast noch nicht validiert",
|
|
285
|
+
'Change locale': "Französisch",
|
|
286
|
+
'Refresh': "Aktualisieren",
|
|
287
|
+
'See associated article':"Artikel lesen",
|
|
288
|
+
"Display associated article":"Zugehörigen Artikel anzeigen",
|
|
289
|
+
"Copy this page URL":"URL dieser Seite kopieren",
|
|
290
|
+
"Custom version":"Benutzerdefiniert",
|
|
291
|
+
"All":"Alle",
|
|
292
|
+
'By category': "Nach IAB-Kategorie",
|
|
293
|
+
"Add a sort criterion by topic":"Sortierkriterium nach Thema hinzufügen",
|
|
294
|
+
'Share QR Code': "QR-Code teilen",
|
|
295
|
+
"Download":"Herunterladen",
|
|
296
|
+
"Download started": "Lädt herunter",
|
|
297
|
+
'From RSS': "Aus RSS-Feed",
|
|
298
|
+
"User menu":"Benutzermenü",
|
|
299
|
+
'Podcast tags': "Podcast-Tags",
|
|
300
|
+
}
|
package/src/locale/en.ts
CHANGED
|
@@ -41,7 +41,7 @@ export default{
|
|
|
41
41
|
Cancel: 'Cancel',
|
|
42
42
|
'Most popular': 'Most popular',
|
|
43
43
|
'Last added': 'Last added',
|
|
44
|
-
'All podcast button': 'All the
|
|
44
|
+
'All podcast button': 'All the podcasts of "{name}"',
|
|
45
45
|
'Podcast search': 'Search in the podcasts',
|
|
46
46
|
'No podcast match your query':
|
|
47
47
|
'No podcast matches your query',
|
package/src/locale/es.ts
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
export default{
|
|
2
|
+
'Edit my profile': 'Mi perfil',
|
|
3
|
+
'Edit my organisation': 'Mi organización',
|
|
4
|
+
Logout: 'Desconexión',
|
|
5
|
+
Login: 'Inicio de sesión',
|
|
6
|
+
'Animated by': 'Presentado por',
|
|
7
|
+
Home: 'Página de inicio',
|
|
8
|
+
Podcasts: 'Episodios',
|
|
9
|
+
Emissions: 'Programas',
|
|
10
|
+
Productors: 'Productores',
|
|
11
|
+
Productor: 'Productor',
|
|
12
|
+
Speakers: 'Participantes',
|
|
13
|
+
Guests: 'Invitados',
|
|
14
|
+
Favorites: 'Favoritos',
|
|
15
|
+
Distributor: 'Distribuidor',
|
|
16
|
+
Image: 'Imagen',
|
|
17
|
+
|
|
18
|
+
'See my statistics': "Informe de audiencia",
|
|
19
|
+
'Edit / Delete episodes': 'Mis episodios',
|
|
20
|
+
'Welcome in the Backoffice': 'Administración',
|
|
21
|
+
'Please set an animator': 'Selecciona o crea un/a presentador/a.',
|
|
22
|
+
'Term of use': "Condiciones de uso",
|
|
23
|
+
'Producted by : ': 'Producido por: ',
|
|
24
|
+
'Loading podcasts ...': 'Cargar pódcast...',
|
|
25
|
+
'Logo of main page': 'Logotipo de la página de inicio',
|
|
26
|
+
'All podcasts': 'Todos los pódcast',
|
|
27
|
+
Error: 'Error',
|
|
28
|
+
Upload: 'Cargar',
|
|
29
|
+
'Count more elements matched your query, please make a more specific search.':
|
|
30
|
+
'Tu búsqueda ha producido {count} resultado(s) más. Prueba con una búsqueda más específica.',
|
|
31
|
+
'Animator image': "Imagen del presentador/a",
|
|
32
|
+
Emission: 'Programa',
|
|
33
|
+
'Emission description': "Descripción del programa",
|
|
34
|
+
'Emission image': "Imagen del programa",
|
|
35
|
+
'Emission name': "Título del programa",
|
|
36
|
+
'No elements found. Consider changing the search query.':
|
|
37
|
+
'No hay resultados. Prueba con otros criterios de búsqueda.',
|
|
38
|
+
'Podcast is not visible for listeners':
|
|
39
|
+
"El público no puede visualizar este pódcast",
|
|
40
|
+
Validate: 'Validar',
|
|
41
|
+
Cancel: 'Cancelar',
|
|
42
|
+
'Most popular': 'Más popular',
|
|
43
|
+
'Last added': 'Últimas publicaciones',
|
|
44
|
+
'All podcast button': 'Todos los pódcast de "{name}"',
|
|
45
|
+
'Podcast search': 'Buscar en los pódcast',
|
|
46
|
+
'No podcast match your query':
|
|
47
|
+
'Tu búsqueda no ha dado resultados',
|
|
48
|
+
'Please type at least three characters': 'Introduce al menos tres caracteres',
|
|
49
|
+
'My space': 'Administración',
|
|
50
|
+
'All participants': 'Todos los participantes',
|
|
51
|
+
'All productors': 'Todos los productores',
|
|
52
|
+
'All emissions': 'Todos los programas',
|
|
53
|
+
'Filter by keyword : ': 'Filtrar por palabra clave: ',
|
|
54
|
+
'Look for participant name': 'Buscar por nombre del participante',
|
|
55
|
+
'Look for productor name': 'Buscar productores por título',
|
|
56
|
+
'Look for emission name': 'Buscar programas por título',
|
|
57
|
+
'Look for podcast name': 'Buscar pódcast por título',
|
|
58
|
+
'Type string to filter by organisation': 'Filtrar por organización',
|
|
59
|
+
'Type string to filter by emission': 'Filtrar por programa',
|
|
60
|
+
'Type string to filter by podcast': 'Filtrar por pódcast',
|
|
61
|
+
'No organisation filter': 'Sin filtro de organización',
|
|
62
|
+
'No emission filter': 'Sin filtro de programa',
|
|
63
|
+
'No podcast filter': 'Sin filtro de pódcast',
|
|
64
|
+
'Loading participants ...': 'Cargando participantes...',
|
|
65
|
+
'Loading productors ...': 'Cargando productores...',
|
|
66
|
+
'Loading emissions ...': 'Cargando programas...',
|
|
67
|
+
'Emission name image': "Imagen del programa {name}",
|
|
68
|
+
'Loading content ...': 'Cargando contenido...',
|
|
69
|
+
Episode: 'Episodio',
|
|
70
|
+
'Episode name image': "Imagen del episodio {name}",
|
|
71
|
+
'More episodes of this emission': "Más episodios de este programa",
|
|
72
|
+
'More episodes of this category : {name}': "Más episodios de esta categoría: {name}",
|
|
73
|
+
'All podcast serie button': "Todos los episodios del programa",
|
|
74
|
+
Duration: 'Duración: {duration}',
|
|
75
|
+
Animator: 'Presentador/a',
|
|
76
|
+
'No category filter': 'Sin filtro de categoría',
|
|
77
|
+
'Type string to filter by categories': 'Filtrar las categorías por título',
|
|
78
|
+
Search: 'Buscar',
|
|
79
|
+
Close: 'Cerrar',
|
|
80
|
+
Embed: 'Reproductor',
|
|
81
|
+
Share: 'Compartir esta página',
|
|
82
|
+
'Share the player': 'Compartir el reproductor',
|
|
83
|
+
'Share player': 'Compartir el reproductor',
|
|
84
|
+
'Copy code': 'Copiar el código',
|
|
85
|
+
Copy: 'Copiar',
|
|
86
|
+
Show: 'Mostrar',
|
|
87
|
+
'Last podcasts': 'Últimos podcasts',
|
|
88
|
+
Contact: 'Contacto',
|
|
89
|
+
'List is empty': 'La lista está vacía',
|
|
90
|
+
'Used libraries': 'Bibliotecas utilizadas',
|
|
91
|
+
Front: 'Sitio web',
|
|
92
|
+
Back: 'Backoffice',
|
|
93
|
+
'Look for library': 'Buscar biblioteca',
|
|
94
|
+
Yes: 'Sí',
|
|
95
|
+
No: 'No',
|
|
96
|
+
"Podcast doesn't exist": "Ese pódcast no existe",
|
|
97
|
+
"Emission doesn't exist": "Ese programa no existe",
|
|
98
|
+
"Animator doesn't exist": "Ese/a presentador/a no existe",
|
|
99
|
+
"Productor doesn't exist": "Ese productor no existe",
|
|
100
|
+
'Create an account': 'Crear una cuenta',
|
|
101
|
+
'Link in clipboard': 'Enlace copiado en el portapapeles',
|
|
102
|
+
'Data in clipboard': 'Datos en el portapapeles',
|
|
103
|
+
'check this box if you want to keep this filter for the rest of your visit':
|
|
104
|
+
'Marca esta casilla si quieres dejar activado este filtro durante toda la visita',
|
|
105
|
+
'No advertising': 'Sin anuncios',
|
|
106
|
+
'You cannot insert advertising':
|
|
107
|
+
'No está permitido incluir publicidad en este pódcast',
|
|
108
|
+
'Prohibited advertising': 'Publicidad no autorizada',
|
|
109
|
+
'Authorized advertising': 'Publicidad autorizada',
|
|
110
|
+
Distribute: 'Distribuir',
|
|
111
|
+
'Rss feed:': 'Canal RSS:',
|
|
112
|
+
'See more': 'Ver más',
|
|
113
|
+
'Search results': 'Resultados de la búsqueda de "{query}"',
|
|
114
|
+
'Search - no results': 'Búsqueda - no hay resultados para "{query}"',
|
|
115
|
+
Downloading: 'Descargando',
|
|
116
|
+
'Subscribe to this emission': "Subscríbete a este programa",
|
|
117
|
+
'Subscribe to this participant': "Subscríbete a estos participantes",
|
|
118
|
+
'Emission have not podcasts': "No hay pódcast para este programa",
|
|
119
|
+
'Participant have not podcasts':
|
|
120
|
+
'No hay pódcast para este participante',
|
|
121
|
+
'Default version': 'Versión por defecto',
|
|
122
|
+
'Large version': 'Versión ampliada',
|
|
123
|
+
'Emission version': 'Versión de programa',
|
|
124
|
+
'Large emission version': 'Versión de programa ampliada',
|
|
125
|
+
'Large suggestion version': 'Versión con sugerencias ampliada',
|
|
126
|
+
'Embed link': 'Integrar minirreproductor',
|
|
127
|
+
'Embedly link': 'Enlace al reproductor',
|
|
128
|
+
'Direct link': 'Enlace de audio',
|
|
129
|
+
'Advanced filters': 'Filtros avanzados',
|
|
130
|
+
Advertising: 'Publicidad',
|
|
131
|
+
'By topic': 'Por tema',
|
|
132
|
+
'By rubric': 'Por sección',
|
|
133
|
+
'Type string to filter by rubrics': 'Filtrar por sección',
|
|
134
|
+
'No rubric filter': 'Sin filtro de sección',
|
|
135
|
+
'From the :': 'De:',
|
|
136
|
+
'To the :': "A:",
|
|
137
|
+
Visible: 'Visible',
|
|
138
|
+
'In creation': 'Procesando',
|
|
139
|
+
'Publish in future': 'Ver los episodios no disponibles para el público',
|
|
140
|
+
'In error': 'Error',
|
|
141
|
+
'Emission with episode published :':
|
|
142
|
+
'Programa con episodios publicados desde:',
|
|
143
|
+
Sort: 'Clasificado',
|
|
144
|
+
Filter: 'Filtro',
|
|
145
|
+
'Sort score': 'Clasificación por pertinencia',
|
|
146
|
+
'Sort name': 'Clasificación por título',
|
|
147
|
+
'Sort last': 'Clasificación por fecha más reciente',
|
|
148
|
+
'Choose color': 'Elegir color',
|
|
149
|
+
'Choose theme': 'Elegir tema',
|
|
150
|
+
'Podcast no visible': 'Este pódcast no puede visualizarse',
|
|
151
|
+
'Display episodes': 'Mostrar episodios',
|
|
152
|
+
'Podcast published in future': 'Pódcast pendiente de publicación',
|
|
153
|
+
'Podcast in process': 'Pódcast en proceso de producción',
|
|
154
|
+
'Podcast in error': 'Error en el pódcast',
|
|
155
|
+
'See podcasts no visible':
|
|
156
|
+
'Mostrar los pódcast no disponibles para el público',
|
|
157
|
+
'Number podcasts': '{nb} de pódcast',
|
|
158
|
+
'Number emissions': '{nb} de programas',
|
|
159
|
+
'Number participants': '{nb} de participantes',
|
|
160
|
+
'Number productors': '{nb} de productores',
|
|
161
|
+
'Display next': 'Mostrar los siguientes episodios',
|
|
162
|
+
'Display previous': 'Mostrar episodios anteriores',
|
|
163
|
+
Play: 'Reproducir',
|
|
164
|
+
Pause: 'Pausa',
|
|
165
|
+
'Show description': 'Mostrar la descripción',
|
|
166
|
+
'Hide description': 'Ocultar la descripción',
|
|
167
|
+
'open left Menu': 'Abrir/Cerrar menú',
|
|
168
|
+
Participant: 'Participante',
|
|
169
|
+
'Number of player podcasts': "Número de pódcast en el reproductor",
|
|
170
|
+
'Proceed reading': 'Seguir escuchando',
|
|
171
|
+
'Without topic': 'Sin tema',
|
|
172
|
+
'Without rubric': 'Sin sección',
|
|
173
|
+
'Consider podcasts no visible':
|
|
174
|
+
'Incluir los pódcast no disponibles para el público',
|
|
175
|
+
'Hosted by': 'Presentado por',
|
|
176
|
+
TutoMag: 'TutoMag',
|
|
177
|
+
News: 'Noticias',
|
|
178
|
+
'Known issues': 'Temas conocidos',
|
|
179
|
+
Help: 'Ayuda',
|
|
180
|
+
'Podcast play error': 'Se ha producido un error al reproducir el pódcast',
|
|
181
|
+
'More episodes': 'Más episodios',
|
|
182
|
+
Stop: 'Detener',
|
|
183
|
+
'Share this page without edit and share blocks':
|
|
184
|
+
"Compartir esta página sin editar y compartir bloques",
|
|
185
|
+
'Podcast in cancelled status': 'Pódcast cancelado',
|
|
186
|
+
'Show every episode': 'Mostrar cada episodio',
|
|
187
|
+
'Subscribe emission': "Subscribir el programa",
|
|
188
|
+
'Rss feed parameters': 'Ajustes del canal RSS',
|
|
189
|
+
'Not share episodes before':
|
|
190
|
+
'No compartir episodios anteriores al',
|
|
191
|
+
'Not share episodes after':
|
|
192
|
+
'No compartir episodios a partir del',
|
|
193
|
+
hours: 'hora(s)',
|
|
194
|
+
days: 'día(s)',
|
|
195
|
+
Live: 'Directo',
|
|
196
|
+
'In live': 'Directo',
|
|
197
|
+
'Launch a new live': 'Crear un nuevo directo',
|
|
198
|
+
'Loading lives...': 'Cargar directos...',
|
|
199
|
+
'No live currently': "No hay directos disponibles actualmente",
|
|
200
|
+
'live upcoming': 'El directo comenzará en breves instantes',
|
|
201
|
+
"live in few time":"Retransmisión en directo próximamente",
|
|
202
|
+
Debriefing: 'Comentando la emisión',
|
|
203
|
+
Publishing: 'En proceso de publicación',
|
|
204
|
+
'select productor': 'Seleccionar productor',
|
|
205
|
+
'Share newsletter': "Compartir newsletter",
|
|
206
|
+
Configuration: 'Configuración',
|
|
207
|
+
'HTML Code': 'Código HTML',
|
|
208
|
+
'Listen this episode': 'Escuchar este episodio',
|
|
209
|
+
'Display emission name': "Mostrar el título del programa",
|
|
210
|
+
'Display participants list': 'Mostrar la lista de participantes',
|
|
211
|
+
'Choose main color': 'Elegir el color principal',
|
|
212
|
+
'Octopus is ACPM Podcast accredited': 'Octopus ha recibido la certificación ACPM',
|
|
213
|
+
'Live episode': 'Episodios en directo ahora',
|
|
214
|
+
'This live will start': 'La retransmisión en directo va a comenzar',
|
|
215
|
+
'In days hours minutes seconds':
|
|
216
|
+
'En {days} días {hours} horas {minutes} minutos y {seconds} segundos',
|
|
217
|
+
'Open studio': 'Estudio abierto',
|
|
218
|
+
'Episode record in live': 'Episodio grabado en directo',
|
|
219
|
+
'In a moment': 'En breves instantes',
|
|
220
|
+
'Live to be': 'Próximamente',
|
|
221
|
+
'Live terminated': 'La retransmisión en directo ha terminado',
|
|
222
|
+
'Next live date': 'El próximo directo será el {date}',
|
|
223
|
+
'Not recording': 'Grabación no disponible',
|
|
224
|
+
'This live is not started yet': "La retransmisión en directo no ha comenzado todavía",
|
|
225
|
+
'A live can start any moment': 'Una retransmisión en directo podría comenzar en breves instantes',
|
|
226
|
+
'Recorded in live': 'Grabación en directo',
|
|
227
|
+
'Podcast linked to waiting live': 'Pódcast pendiente de una próxima retransmisión en directo',
|
|
228
|
+
Playlists: 'Listas de reproducción',
|
|
229
|
+
Playlist: 'Lista de reproducción',
|
|
230
|
+
'All playlists': 'Todas las listas de reproducción',
|
|
231
|
+
'Look for playlist name': 'Buscar lista de reproducción por título',
|
|
232
|
+
'Number playlists': '{nb} listas de reproducción',
|
|
233
|
+
'Playlist have not podcasts': "Esta lista de reproducción no contiene pódcast",
|
|
234
|
+
"Playlist doesn't exist": "La lista de reproducción solicitada no existe",
|
|
235
|
+
'Playlist name image': 'Título de la lista de reproducción {name}',
|
|
236
|
+
'Create playlist': 'Crear lista de reproducción',
|
|
237
|
+
'Podcasts in the playlist': 'Todos los pódcast de la lista de reproducción',
|
|
238
|
+
'No podcasts in the playlist': "Lista de reproducción sin pódcast",
|
|
239
|
+
'Start in a while': 'Comienza en breves instantes',
|
|
240
|
+
'All live emission button': "Todos los directos del programa",
|
|
241
|
+
'player parameters': 'Configuración del reproductor',
|
|
242
|
+
'Start at': 'Hora de inicio',
|
|
243
|
+
'sort by score': 'clasificar por orden de relevancia',
|
|
244
|
+
'sort by alphabetical': 'clasificar por orden alfabético',
|
|
245
|
+
'sort by date': 'clasificar por fecha',
|
|
246
|
+
'Be the first to react': 'Sé el primero en opinar',
|
|
247
|
+
"Podcast's comments": "Comentarios sobre el pódcast",
|
|
248
|
+
'()': '({nb})',
|
|
249
|
+
'Write a comment': 'Escribir un comentario',
|
|
250
|
+
'Answer a comment': 'Contestar a un comentario',
|
|
251
|
+
'See more comments': 'Mostrar más comentarios',
|
|
252
|
+
'To answer': 'Para responder',
|
|
253
|
+
'Display answers': 'Mostrar las {nb} respuestas',
|
|
254
|
+
'Hide answers': 'Ocultar respuestas',
|
|
255
|
+
'Read more': 'Leer más',
|
|
256
|
+
'Read less': 'Ocultar',
|
|
257
|
+
'(nb valid comment answers)': '({nb} respuestas válidas a los comentarios)',
|
|
258
|
+
'Welcome, thanks for your comment': '¡Hola! Gracias por tu comentario',
|
|
259
|
+
"Let's get acquainted :": "Queremos conocerte:",
|
|
260
|
+
'Your name': 'Tu nombre',
|
|
261
|
+
'Send in progress': 'Enviando...',
|
|
262
|
+
'Error occurs while post your comment...':
|
|
263
|
+
"Se ha producido un error al publicar el comentario",
|
|
264
|
+
'Comments loading error': 'Se ha producido un error al cargar los comentarios',
|
|
265
|
+
'Certified account': 'Cuenta certificada',
|
|
266
|
+
'No comments': 'Sin comentarios',
|
|
267
|
+
'In response to': 'En respuesta a',
|
|
268
|
+
'Please chose a productor': 'Seleccionar un productor',
|
|
269
|
+
'Podcast in ERROR, please contact Saooti':
|
|
270
|
+
"Se ha producido un error al procesar este pódcast; ponte en contacto con Saooti.",
|
|
271
|
+
'Podcast still available':
|
|
272
|
+
'Pódcast disponible para el público',
|
|
273
|
+
'Podcasts still available':
|
|
274
|
+
'Dar acceso al público a los episodios ocultos',
|
|
275
|
+
'Podcast image': "Imagen del pódcast",
|
|
276
|
+
'Recaptcha error':
|
|
277
|
+
'Google Recaptcha no cree que seas una persona',
|
|
278
|
+
'Recaptcha not active': 'El Captcha de Google está desactivado',
|
|
279
|
+
'Comment waiting':
|
|
280
|
+
"Los demás usuarios podrán ver el comentario tras su validación",
|
|
281
|
+
'Display all podcasts to validate': 'Mostrar todos los pódcast pendientes de validación',
|
|
282
|
+
'Display my podcasts to validate': 'Mostrar mis pódcast pendientes de validación',
|
|
283
|
+
'Podcast not validated': "Pódcast no validado",
|
|
284
|
+
'Podcast to validate': 'Pódcast pendiente de validación',
|
|
285
|
+
'Change locale': 'En français',
|
|
286
|
+
'Refresh': 'Volver a cargar',
|
|
287
|
+
'See associated article':"Leer el artículo",
|
|
288
|
+
"Display associated article":"Mostrar el artículo asociado",
|
|
289
|
+
"Copy this page URL":"Copiar la URL de esta página",
|
|
290
|
+
"Custom version":"Versión personalizada",
|
|
291
|
+
"All":"Todos",
|
|
292
|
+
'By category': 'Por categoría IAB',
|
|
293
|
+
"Add a sort criterion by topic":"Añadir un criterio de clasificación por tema",
|
|
294
|
+
'Share QR Code': "Compartir código QR",
|
|
295
|
+
"Download":"Descargar",
|
|
296
|
+
"Download started": 'Descarga iniciada',
|
|
297
|
+
'From RSS': "Desde un canal RSS",
|
|
298
|
+
"User menu":"Menú de usuario",
|
|
299
|
+
'Podcast tags': 'Etiquetas de pódcast',
|
|
300
|
+
}
|
package/src/locale/messages.ts
CHANGED
|
@@ -3,10 +3,16 @@ import educationfr from './educationfr';
|
|
|
3
3
|
import educationen from './educationen';
|
|
4
4
|
import en from './en';
|
|
5
5
|
import it from './it';
|
|
6
|
+
import sl from './sl';
|
|
7
|
+
import es from './es';
|
|
8
|
+
import de from './de';
|
|
6
9
|
export default{
|
|
7
10
|
fr: fr,
|
|
8
11
|
en: en,
|
|
9
12
|
it: it,
|
|
13
|
+
sl: sl,
|
|
14
|
+
es: es,
|
|
15
|
+
de: de,
|
|
10
16
|
educationfr: educationfr,
|
|
11
17
|
educationen: educationen,
|
|
12
18
|
};
|
package/src/locale/sl.ts
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
export default{
|
|
2
|
+
'Edit my profile': 'Moj profil',
|
|
3
|
+
'Edit my organisation': 'Moja organizacija',
|
|
4
|
+
Logout: 'Odjava',
|
|
5
|
+
Login: 'Prijava',
|
|
6
|
+
'Animated by': 'Gostitelj',
|
|
7
|
+
Home: 'Domača stran',
|
|
8
|
+
Podcasts: 'Epizode',
|
|
9
|
+
Emissions: 'Oddaje',
|
|
10
|
+
Productors: 'Producenti',
|
|
11
|
+
Productor: 'Producent',
|
|
12
|
+
Speakers: 'Napovedovalci',
|
|
13
|
+
Guests: 'Gostje',
|
|
14
|
+
Favorites: 'Priljubljeno',
|
|
15
|
+
Distributor: 'Ponudnik vsebin',
|
|
16
|
+
Image: 'Fotografija',
|
|
17
|
+
|
|
18
|
+
'See my statistics': 'Ciljna skupina',
|
|
19
|
+
'Edit / Delete episodes': 'Moje epizode',
|
|
20
|
+
'Welcome in the Backoffice': 'Nastavitve',
|
|
21
|
+
'Please set an animator': 'Izberite ali ustvarite napovedovalca',
|
|
22
|
+
'Term of use': 'Pogoji uporabe',
|
|
23
|
+
'Producted by : ': 'Producent: ',
|
|
24
|
+
'Loading podcasts ...': 'Nalaganje podkastov...',
|
|
25
|
+
'Logo of main page': 'Logotip glavne strani',
|
|
26
|
+
'All podcasts': 'Vsi podkasti',
|
|
27
|
+
Error: 'Napaka',
|
|
28
|
+
Upload: 'Nalaganje',
|
|
29
|
+
'Count more elements matched your query, please make a more specific search.':
|
|
30
|
+
'Vašemu iskanju ustreza še {count} zadetkov. Vnesite podrobnejše podatke za iskanje.',
|
|
31
|
+
'Animator image': "Slika napovedovalca",
|
|
32
|
+
Emission: 'Oddaja',
|
|
33
|
+
'Emission description': 'Opis oddaje',
|
|
34
|
+
'Emission image': 'Slika oddaje',
|
|
35
|
+
'Emission name': 'Naslov oddaje',
|
|
36
|
+
'No elements found. Consider changing the search query.':
|
|
37
|
+
'Ni zadetkov. Spremenite poizvedbo',
|
|
38
|
+
'Podcast is not visible for listeners':
|
|
39
|
+
'Za poslušalce skrit podkast',
|
|
40
|
+
Validate: 'Potrdi',
|
|
41
|
+
Cancel: 'Prekliči',
|
|
42
|
+
'Most popular': 'Najbolj priljubljeno',
|
|
43
|
+
'Last added': 'Nazadnje dodano',
|
|
44
|
+
'All podcast button': 'Vsi podkasti "{name}"',
|
|
45
|
+
'Podcast search': 'Išči v podkastih',
|
|
46
|
+
'No podcast match your query':
|
|
47
|
+
'Ni zadetkov',
|
|
48
|
+
'Please type at least three characters': 'Prosimo, vpišite najmanj tri znake',
|
|
49
|
+
'My space': 'Upravljanje',
|
|
50
|
+
'All participants': 'Vsi govorniki',
|
|
51
|
+
'All productors': 'Vsi producenti',
|
|
52
|
+
'All emissions': 'Vse oddaje',
|
|
53
|
+
'Filter by keyword : ': 'Razvrsti po ključni besedi: ',
|
|
54
|
+
'Look for participant name': 'Išči sodelujočega po imenu',
|
|
55
|
+
'Look for productor name': 'Išči producenta po naslovu',
|
|
56
|
+
'Look for emission name': 'Išči oddajo po naslovu',
|
|
57
|
+
'Look for podcast name': 'Išči podkast po naslovu',
|
|
58
|
+
'Type string to filter by organisation': 'Išči po organizaciji',
|
|
59
|
+
'Type string to filter by emission': 'Išči po oddaji',
|
|
60
|
+
'Type string to filter by podcast': 'Išči po podkastu',
|
|
61
|
+
'No organisation filter': 'Brez filtra za organizacije',
|
|
62
|
+
'No emission filter': 'Brez filtra za oddaje',
|
|
63
|
+
'No podcast filter': 'Brez filtra za podkaste',
|
|
64
|
+
'Loading participants ...': 'Nalaganje napovedovalcev...',
|
|
65
|
+
'Loading productors ...': 'Nalaganje producentov...',
|
|
66
|
+
'Loading emissions ...': 'Nalaganje oddaj...',
|
|
67
|
+
'Emission name image': "Slika oddaje {name}",
|
|
68
|
+
'Loading content ...': 'Nalaganje vsebine...',
|
|
69
|
+
Episode: 'Epizoda',
|
|
70
|
+
'Episode name image': "Slika epizode {name}",
|
|
71
|
+
'More episodes of this emission': "Več oddaj iz tega niza",
|
|
72
|
+
'More episodes of this category : ': 'Več oddaj iz te kategorije", {name}',
|
|
73
|
+
'All podcast emission buttonn': "Vsi podkasti iz tega sklopa",
|
|
74
|
+
Duration: 'Trajanje: {duration}',
|
|
75
|
+
Animator: 'Napovedovalec',
|
|
76
|
+
'No category filter': 'Brez filtra za kategorijo',
|
|
77
|
+
'Type string to filter by categories': 'Razvrsti po kategorijah',
|
|
78
|
+
Search: 'Išči',
|
|
79
|
+
Close: 'Zapri',
|
|
80
|
+
Embed: 'Predvajalnik',
|
|
81
|
+
Share: 'Deli to stran',
|
|
82
|
+
'Share the player': 'Deli predvajalnik',
|
|
83
|
+
'Share player': 'Deli predvajalnik',
|
|
84
|
+
'Copy code': 'Kopiraj kodo',
|
|
85
|
+
Copy: 'Kopiraj',
|
|
86
|
+
Show: 'Prikaži',
|
|
87
|
+
'Last podcasts': 'Zadnji podkasti',
|
|
88
|
+
Contact: 'Kontakt',
|
|
89
|
+
'List is empty': 'Seznam je prazen',
|
|
90
|
+
'Used libraries': 'Uporabljene knjižnice',
|
|
91
|
+
Front: 'Spletno mesto',
|
|
92
|
+
Back: 'Podporne storitve',
|
|
93
|
+
'Look for library': 'Poišči knjižnico',
|
|
94
|
+
Yes: 'Da',
|
|
95
|
+
No: 'Ne',
|
|
96
|
+
"Podcast doesn't exist": "Podkast ne obstaja",
|
|
97
|
+
"Emission doesn't exist": "Oddaja ne obstaja",
|
|
98
|
+
"Animator doesn't exist": "Napovedovalec ne obstaja",
|
|
99
|
+
"Productor doesn't exist": "Producent ne obstaja",
|
|
100
|
+
'Create an account': 'Ustvari račun',
|
|
101
|
+
'Link in clipboard': 'Povezava kopirana v odložišče',
|
|
102
|
+
'Data in clipboard': 'Podatki v odložišču',
|
|
103
|
+
'check this box if you want to keep this filter for the rest of your visit':
|
|
104
|
+
'Če želite filter obdržati ves čas obiska na strani, odkljukajte okvirček',
|
|
105
|
+
'No advertising': 'Brez oglaševanja',
|
|
106
|
+
'You cannot insert advertising':
|
|
107
|
+
'Za ta podkast ni mogoče vnesti oglasa',
|
|
108
|
+
'Prohibited advertising': 'Oglaševanje prepovedano',
|
|
109
|
+
'Authorized advertising': 'Oglaševanje dovoljeno',
|
|
110
|
+
Distribute: 'Deli',
|
|
111
|
+
'Rss feed:': 'Vir RSS:',
|
|
112
|
+
'See more': 'Več',
|
|
113
|
+
'Search results': 'Rezultati iskanja za "{query}"',
|
|
114
|
+
'Search - no results': 'Iskanje – ni rezultatov za "{query}"',
|
|
115
|
+
Downloading: 'Prenos',
|
|
116
|
+
'Subscribe to this emission': "Naroči se na to oddajo",
|
|
117
|
+
'Subscribe to this participant': "Naroči se na te napovedovalce",
|
|
118
|
+
'Emission have not podcasts': "Ta oddaja nima podkastov",
|
|
119
|
+
'Participant have not podcasts':
|
|
120
|
+
'Napovedovalec ni povezan z nobenim podkastom',
|
|
121
|
+
'Default version': 'Privzeta različica',
|
|
122
|
+
'Large version': 'Velika različica',
|
|
123
|
+
'Emission version': 'Različica oddaje',
|
|
124
|
+
'Large emission version': 'Velika različica oddaje',
|
|
125
|
+
'Large suggestion version': 'Velika različica predlogov prevajanja',
|
|
126
|
+
'Embed link': 'Vgradi mini predvajalnik',
|
|
127
|
+
'Embedly link': 'Povezava do predvajalnika',
|
|
128
|
+
'Direct link': 'Povezava do zvočnega posnetka',
|
|
129
|
+
'Advanced filters': 'Napredni filtri',
|
|
130
|
+
Advertising: 'Oglaševanje',
|
|
131
|
+
'By topic': 'Po temi',
|
|
132
|
+
'By rubric': 'Po rubriki',
|
|
133
|
+
'Type string to filter by rubrics': 'Razvrsti po rubrikah',
|
|
134
|
+
'No rubric filter': 'Brez filtra po rubriki',
|
|
135
|
+
'From the :': 'Od:',
|
|
136
|
+
'To the :': "Do:",
|
|
137
|
+
Visible: 'Vidno',
|
|
138
|
+
'In creation': 'Obdelava',
|
|
139
|
+
'Publish in future': 'Prikaži epizode, ki jih občinstvo ne vidi',
|
|
140
|
+
'In error': 'Napaka',
|
|
141
|
+
'Emission with episode published :':
|
|
142
|
+
'Epizode oddaje objavljene od:',
|
|
143
|
+
Sort: 'Razvrščeno',
|
|
144
|
+
Filter: 'Filter',
|
|
145
|
+
'Sort score': 'Razvrščeno po relevantnosti',
|
|
146
|
+
'Sort name': 'Naslov',
|
|
147
|
+
'Sort last': 'Zadnje',
|
|
148
|
+
'Choose color': 'Izberi barvo',
|
|
149
|
+
'Choose theme': 'Izberi temo',
|
|
150
|
+
'Podcast no visible': 'Podkast je skrit',
|
|
151
|
+
'Display episodes': 'Prikaži epizode',
|
|
152
|
+
'Podcast published in future': 'Podkast bo objavljen v prihodnje',
|
|
153
|
+
'Podcast in process': 'Podcast v obdelavi',
|
|
154
|
+
'Podcast in error': 'Napaka v podkastu',
|
|
155
|
+
'See podcasts no visible':
|
|
156
|
+
'Prikaži občinstvu skrite podkaste',
|
|
157
|
+
'Number podcasts': '{nb} podkastov',
|
|
158
|
+
'Number emissions': '{nb} oddaj',
|
|
159
|
+
'Number participants': '{nb} napovedovalcev',
|
|
160
|
+
'Number productors': '{nb} producentov',
|
|
161
|
+
'Display next': 'Prikaže naslednje epizode',
|
|
162
|
+
'Display previous': 'Prikaži prejšnjo epizodo',
|
|
163
|
+
Play: 'Predvajaj',
|
|
164
|
+
Pause: 'Premor',
|
|
165
|
+
'Show description': 'Prikaži opis',
|
|
166
|
+
'Hide description': 'Skrij opis',
|
|
167
|
+
'open left Menu': 'Meni odpri/zapri',
|
|
168
|
+
Participant: 'Sodelujoči',
|
|
169
|
+
'Number of player podcasts': "Število podkastov v predvajalniku",
|
|
170
|
+
'Proceed reading': 'Nadaljuj s poslušanjem',
|
|
171
|
+
'Without topic': 'Brez teme',
|
|
172
|
+
'Without rubric': 'Brez rubrike',
|
|
173
|
+
'Consider podcasts no visible':
|
|
174
|
+
'Občinstvu skriti podkasti',
|
|
175
|
+
'Hosted by': 'Platforma',
|
|
176
|
+
TutoMag: 'TutoMag',
|
|
177
|
+
News: 'Informacije',
|
|
178
|
+
'Known issues': 'Pogoste težave',
|
|
179
|
+
Help: 'Pomoč',
|
|
180
|
+
'Podcast play error': 'Pri predvajanju podkasta je prišlo do napake',
|
|
181
|
+
'More episodes': 'Več epizod',
|
|
182
|
+
Stop: 'Stop',
|
|
183
|
+
'Share this page without edit and share blocks':
|
|
184
|
+
"Deli stran brez možnosti za urejanje in deljenje",
|
|
185
|
+
'Podcast in cancelled status': 'Podkast ima status „odpovedan“',
|
|
186
|
+
'Show every episode': 'Prikaži vse epizode',
|
|
187
|
+
'Subscribe emission': "Naroči se na oddajo",
|
|
188
|
+
'Rss feed parameters': 'Nastavitve vira RSS',
|
|
189
|
+
'Not share episodes before':
|
|
190
|
+
'Ne deli epizod pred',
|
|
191
|
+
'Not share episodes after':
|
|
192
|
+
'Ne deli epizod po',
|
|
193
|
+
hours: 'uro/uri/urah',
|
|
194
|
+
days: 'dneh',
|
|
195
|
+
Live: 'V živo',
|
|
196
|
+
'In live': 'V živo',
|
|
197
|
+
'Launch a new live': 'Ustvari nov prenos v živo',
|
|
198
|
+
'Loading lives...': 'Nalaganje prenosov v živo...',
|
|
199
|
+
'No live currently': "Prenosi v živo trenutno niso na voljo",
|
|
200
|
+
'live upcoming': 'Prenos v živo se bo začel kmalu',
|
|
201
|
+
"live in few time":"Prenos v živo kmalu",
|
|
202
|
+
Debriefing: 'Pogovor',
|
|
203
|
+
Publishing: 'Objava',
|
|
204
|
+
'select productor': 'Izberi producenta',
|
|
205
|
+
'Share newsletter': "Deli glasilo",
|
|
206
|
+
Configuration: 'Konfiguracija',
|
|
207
|
+
'HTML Code': 'Koda HTML',
|
|
208
|
+
'Listen this episode': 'Poslušajte to epizodo',
|
|
209
|
+
'Display emission name': "Prikaži naslov oddaje",
|
|
210
|
+
'Display participants list': 'Prikaži seznam sodelujočih',
|
|
211
|
+
'Choose main color': 'Izberi glavno barvo',
|
|
212
|
+
'Octopus is ACPM Podcast accredited': 'Octopus je akreditiran pri organizaciji ACPM',
|
|
213
|
+
'Live episode': 'Trenutne epizode v živo',
|
|
214
|
+
'This live will start': 'Prenos v živo se bo začel',
|
|
215
|
+
'In days hours minutes seconds':
|
|
216
|
+
'čez {days} dni {hours} ur {minutes} minut in{seconds} sekund',
|
|
217
|
+
'Open studio': 'Studio odprt',
|
|
218
|
+
'Episode record in live': 'Posnetek prenosa v živo',
|
|
219
|
+
'In a moment': 'Na voljo takoj',
|
|
220
|
+
'Live to be': 'Kmalu',
|
|
221
|
+
'Live terminated': 'Prenos v živo prekinjen',
|
|
222
|
+
'Next live date': 'Naslednji prenos v živo bo {date}',
|
|
223
|
+
'Not recording': 'Ni posneto',
|
|
224
|
+
'This live is not started yet': "Prenos v živo se še ni začel",
|
|
225
|
+
'A live can start any moment': 'Prenos v živo se bo začel čez nekaj trenutkov',
|
|
226
|
+
'Recorded in live': 'Posnetek prenosa v živo',
|
|
227
|
+
'Podcast linked to waiting live': 'Podkast prihodnjega prenosa v živo',
|
|
228
|
+
Playlists: 'Seznam predvajanja',
|
|
229
|
+
Playlist: 'Seznam predvajanja',
|
|
230
|
+
'All playlists': 'Vsi seznami predvajanja',
|
|
231
|
+
'Look for playlist name': 'Poišči seznam predvajanja po naslovu',
|
|
232
|
+
'Number playlists': '{nb} seznamov predvajanja?',
|
|
233
|
+
'Playlist have not podcasts': "Seznam predvajanja ne vsebuje podkastov",
|
|
234
|
+
"Playlist doesn't exist": "Zahtevani seznam predvajanja ne obstaja",
|
|
235
|
+
'Playlist name image': 'Naslov seznama predvajanja {name}',
|
|
236
|
+
'Create playlist': 'Ustvari seznam predvajanja',
|
|
237
|
+
'Podcasts in the playlist': 'Vsi podkasti na seznamu predvajanja',
|
|
238
|
+
'No podcasts in the playlist': "Na seznamu predvajanja ni podkastov",
|
|
239
|
+
'Start in a while': 'Začetek čez nekaj minut',
|
|
240
|
+
'All live emission button': "Vsi prenosi v živo te oddaje",
|
|
241
|
+
'player parameters': 'Nastavitev predvajalnika',
|
|
242
|
+
'Start at': 'Začetek ob',
|
|
243
|
+
'sort by score': 'po relevantnosti',
|
|
244
|
+
'sort by alphabetical':'po abecednem vrstnem redu',
|
|
245
|
+
'sort by date': 'po datumu',
|
|
246
|
+
'Be the first to react': 'Komentirajte prvi',
|
|
247
|
+
"Podcast's comments": 'Komentarji o podkastu',
|
|
248
|
+
'()': '({nb})',
|
|
249
|
+
'Write a comment': 'Napiši komentar',
|
|
250
|
+
'Answer a comment': 'Odgovori na komentar',
|
|
251
|
+
'See more comments': 'Preberi več komentarjev',
|
|
252
|
+
'To answer': 'Odgovori',
|
|
253
|
+
'Display answers': 'Prikaži {nb} odgovorov',
|
|
254
|
+
'Hide answers': 'Skrij odgovore',
|
|
255
|
+
'Read more': 'Preberi več',
|
|
256
|
+
'Read less': 'Skrij',
|
|
257
|
+
'(nb valid comment answers)': '({nb} odgovorov)',
|
|
258
|
+
'Welcome, thanks for your comment': 'Dobrodošli, hvala za komentar',
|
|
259
|
+
"Let's get acquainted :": "Spoznajmo se:",
|
|
260
|
+
'Your name': 'Vaše ime',
|
|
261
|
+
'Send in progress': 'Pošiljanje v teku...',
|
|
262
|
+
'Error occurs while post your comment...':
|
|
263
|
+
"Pri objavi komentarja je prišlo do napake",
|
|
264
|
+
'Comments loading error': 'Pri nalaganju komentarjev je prišlo do napake',
|
|
265
|
+
'Certified account': 'Potrjen račun',
|
|
266
|
+
'No comments': 'Ni komentarjev',
|
|
267
|
+
'In response to': 'Odgovor',
|
|
268
|
+
'Please chose a productor': 'Izberite producenta',
|
|
269
|
+
'Podcast in ERROR, please contact Saooti':
|
|
270
|
+
"Pri obdelavi podkasta je prišlo do napake, obrnite se na Saooti.",
|
|
271
|
+
'Podcast still available':
|
|
272
|
+
"Podkast je na voljo za javnost",
|
|
273
|
+
'Podcasts still available':
|
|
274
|
+
'Skrite epizode naj bodo na voljo poslušalcem',
|
|
275
|
+
'Podcast image': "Slika podkasta",
|
|
276
|
+
'Recaptcha error':
|
|
277
|
+
'Google Recaptcha meni, da niste človek',
|
|
278
|
+
'Recaptcha not active': 'Captcha google je deaktiviran',
|
|
279
|
+
'Comment waiting':
|
|
280
|
+
"Komentar je do potrditve skrit za druge uporabnike",
|
|
281
|
+
'Display all podcasts to validate': 'Prikaži vse podkaste, ki jih je treba potrditi',
|
|
282
|
+
'Display my podcasts to validate': 'Prikaži moje podkaste za potrditev',
|
|
283
|
+
'Podcast not validated': "Podkasti niso potrjeni",
|
|
284
|
+
'Podcast to validate': 'Podkasti, ki jih je treba potrditi',
|
|
285
|
+
'Change locale': 'FR',
|
|
286
|
+
'Refresh': 'Osveži',
|
|
287
|
+
'See associated article':"Read the article",
|
|
288
|
+
"Display associated article": "Prikaži povezan vir",
|
|
289
|
+
"Copy this page URL": "Kopiraj URL te strani",
|
|
290
|
+
"Custom version": "Prilagojena različica",
|
|
291
|
+
"All":"Vse",
|
|
292
|
+
'By category': 'Po kategoriji IAB',
|
|
293
|
+
"Add a sort criterion by topic":"Dodaj kriterij za razvrstitev po temi",
|
|
294
|
+
'Share QR Code': "Deli kodo QR",
|
|
295
|
+
"Download":"Prenesi",
|
|
296
|
+
"Download started": 'Prenos se je začel',
|
|
297
|
+
'From RSS': "Z vira RSS",
|
|
298
|
+
"User menu":"Uporabniški meni",
|
|
299
|
+
'Podcast tags': 'Oznake podkastov',
|
|
300
|
+
}
|
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.staging.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.staging.saooti.org/',
|
|
30
30
|
ouestFranceStyle: false,
|
|
31
31
|
downloadButton: false,
|
|
32
|
-
hlsUri: 'https://hls.
|
|
32
|
+
hlsUri: 'https://hls.staging.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.staging.saooti.org/',
|
|
89
|
+
commentsUrl: 'http://comments.staging.saooti.org/',
|
|
90
|
+
studioUrl: 'http://studio.staging.saooti.org/',
|
|
91
|
+
playerUrl: 'https://playerbeta.staging.saooti.org/',
|
|
92
92
|
organisationId: undefined,
|
|
93
93
|
rubriqueIdFilter: undefined,
|
|
94
94
|
},
|