@saooti/octopus-sdk 0.28.16 → 1.1.1
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 +188 -2
- package/index.ts +45 -11
- package/package.json +46 -48
- package/public/config.ts +4 -0
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +129 -0
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/style.css +185 -1266
- package/public/img/403.jpeg +0 -0
- package/public/img/404.svg +242 -0
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +45 -24
- package/src/api/classicCrud.ts +34 -0
- package/src/api/initialize.ts +4 -2
- package/src/assets/bootstrap-diff.scss +197 -0
- package/src/assets/form.scss +77 -77
- package/src/assets/general.scss +287 -301
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +43 -50
- package/src/assets/multiselect.scss +522 -590
- package/src/assets/octopus-library.scss +17 -4
- package/src/assets/share.scss +150 -250
- package/src/assets/transition.scss +98 -2
- package/src/components/display/aggregator/RssSection.vue +4 -6
- package/src/components/display/categories/CategoryChooser.vue +100 -79
- package/src/components/display/categories/CategoryFilter.vue +117 -37
- package/src/components/display/categories/CategoryList.vue +121 -108
- package/src/components/display/comments/AddCommentModal.vue +98 -94
- package/src/components/display/comments/CommentBasicView.vue +95 -0
- package/src/components/display/comments/CommentInput.vue +175 -155
- package/src/components/display/comments/CommentItem.vue +152 -168
- package/src/components/display/comments/CommentList.vue +123 -229
- package/src/components/display/comments/CommentParentInfo.vue +26 -58
- package/src/components/display/comments/CommentPlayer.vue +51 -49
- package/src/components/display/comments/CommentSection.vue +44 -67
- package/src/components/display/edit/EditBox.vue +11 -5
- package/src/components/display/edit/EditCommentBox.vue +121 -29
- package/src/components/display/emission/EmissionChooser.vue +73 -81
- package/src/components/display/emission/EmissionInlineList.vue +130 -128
- package/src/components/display/emission/EmissionItem.vue +68 -109
- package/src/components/display/emission/EmissionList.vue +140 -146
- package/src/components/display/emission/EmissionPlayerItem.vue +186 -148
- package/src/components/display/filter/AdvancedSearch.vue +192 -273
- package/src/components/display/filter/CategoryFilter.vue +51 -59
- package/src/components/display/filter/MonetizableFilter.vue +17 -16
- package/src/components/display/filter/ProductorSearch.vue +149 -149
- package/src/components/display/filter/RubriqueChoice.vue +33 -37
- package/src/components/display/filter/RubriqueFilter.vue +132 -122
- package/src/components/display/list/ListPaginate.vue +145 -0
- package/src/components/display/list/Paginate.vue +218 -0
- package/src/components/display/live/CountDown.vue +19 -12
- package/src/components/display/live/LiveHorizontalList.vue +78 -55
- package/src/components/display/live/LiveItem.vue +136 -121
- package/src/components/display/live/LiveList.vue +172 -276
- package/src/components/display/organisation/OrganisationChooser.vue +104 -122
- package/src/components/display/organisation/OrganisationChooserLight.vue +46 -37
- package/src/components/display/participant/ParticipantItem.vue +91 -115
- package/src/components/display/participant/ParticipantList.vue +131 -117
- package/src/components/display/playlist/PlaylistItem.vue +54 -78
- package/src/components/display/playlist/PlaylistList.vue +91 -83
- package/src/components/display/playlist/PodcastList.vue +113 -128
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +28 -39
- package/src/components/display/podcasts/ParticipantDescription.vue +62 -74
- package/src/components/display/podcasts/PodcastFilterList.vue +47 -89
- package/src/components/display/podcasts/PodcastImage.vue +195 -229
- package/src/components/display/podcasts/PodcastInlineList.vue +64 -282
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
- package/src/components/display/podcasts/PodcastItem.vue +93 -227
- package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
- package/src/components/display/podcasts/PodcastList.vue +115 -134
- package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
- package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
- package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
- package/src/components/display/podcasts/TagList.vue +60 -39
- package/src/components/display/rubriques/RubriqueChooser.vue +114 -95
- package/src/components/display/rubriques/RubriqueList.vue +111 -106
- package/src/components/display/sharing/PlayerParameters.vue +90 -151
- package/src/components/display/sharing/QrCode.vue +40 -27
- package/src/components/display/sharing/ShareButtons.vue +64 -299
- package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
- package/src/components/display/sharing/ShareDistribution.vue +99 -140
- package/src/components/display/sharing/SharePlayer.vue +155 -370
- package/src/components/display/sharing/SharePlayerColors.vue +78 -0
- package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
- package/src/components/display/sharing/SplitButton.vue +42 -0
- package/src/components/display/sharing/SubscribeButtons.vue +62 -179
- package/src/components/display/studio/RecordingItemButton.vue +4 -6
- package/src/components/form/ClassicCheckbox.vue +66 -0
- package/src/components/form/ClassicLoading.vue +28 -0
- package/src/components/form/ClassicRadio.vue +66 -0
- package/src/components/form/ClassicSearch.vue +86 -0
- package/src/components/form/ClassicSelect.vue +65 -0
- package/src/components/misc/ErrorMessage.vue +27 -14
- package/src/components/misc/Footer.vue +132 -127
- package/src/components/misc/HomeDropdown.vue +93 -150
- package/src/components/misc/LeftMenu.vue +121 -192
- package/src/components/misc/Popover.vue +118 -0
- package/src/components/misc/Snackbar.vue +70 -35
- package/src/components/misc/TopBar.vue +192 -308
- package/src/components/misc/modal/ClipboardModal.vue +35 -50
- package/src/components/misc/modal/MessageModal.vue +71 -48
- package/src/components/misc/modal/NewsletterModal.vue +260 -231
- package/src/components/misc/modal/QrCodeModal.vue +42 -60
- package/src/components/misc/modal/ShareModalPlayer.vue +136 -70
- package/src/components/misc/player/Player.vue +146 -0
- package/src/components/misc/player/PlayerCompact.vue +154 -0
- package/src/components/misc/player/PlayerLarge.vue +166 -0
- package/src/components/misc/player/PlayerProgressBar.vue +112 -0
- package/src/components/misc/player/PlayerTimeline.vue +61 -0
- package/src/components/mixins/functions.ts +11 -43
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/mixins/init.ts +8 -6
- package/src/components/mixins/orgaComputed.ts +15 -0
- package/src/components/mixins/organisationFilter.ts +35 -18
- package/src/components/mixins/player/playerComment.ts +98 -0
- package/src/components/mixins/player/playerDisplay.ts +113 -0
- package/src/components/mixins/player/playerLive.ts +111 -0
- package/src/components/mixins/player/playerLogic.ts +225 -0
- package/src/components/mixins/tagOfMixins.ts +19 -0
- package/src/components/pages/Category.vue +21 -26
- package/src/components/pages/Emission.vue +136 -162
- package/src/components/pages/Emissions.vue +60 -93
- package/src/components/pages/Error403Page.vue +60 -0
- package/src/components/pages/Home.vue +32 -39
- package/src/components/pages/Lives.vue +40 -46
- package/src/components/pages/PageNotFound.vue +55 -0
- package/src/components/pages/Participant.vue +110 -113
- package/src/components/pages/Participants.vue +21 -45
- package/src/components/pages/Playlist.vue +84 -75
- package/src/components/pages/Playlists.vue +29 -47
- package/src/components/pages/Podcast.vue +203 -434
- package/src/components/pages/Podcasts.vue +75 -134
- package/src/components/pages/Rubrique.vue +21 -29
- package/src/components/pages/Search.vue +33 -79
- package/src/helper/dom.ts +1 -1
- package/src/helper/duration.ts +1 -1
- package/src/helper/useEventListener.ts +18 -0
- package/src/i18n.ts +36 -0
- package/src/locale/de.ts +309 -0
- package/src/locale/educationen.ts +1 -1
- package/src/locale/educationfr.ts +1 -1
- package/src/locale/en.ts +45 -28
- package/src/locale/es.ts +309 -0
- package/src/locale/fr.ts +25 -8
- package/src/locale/it.ts +307 -0
- package/src/locale/messages.ts +9 -2
- package/src/locale/sl.ts +309 -0
- package/src/main.ts +59 -85
- package/src/router/router.ts +60 -39
- package/src/sass/_variables.scss +10 -8
- package/src/shims-tsx.d.ts +2 -0
- package/src/shims-vue-recaptcha-v3.d.ts +9 -0
- package/src/shims-vue.d.ts +5 -4
- package/src/store/AppStore.ts +8 -9
- package/src/store/class/adserver/adserverConfig.ts +9 -0
- package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
- package/src/store/class/adserver/adserverTiming.ts +10 -0
- package/src/store/class/cartouchier/cartouche.ts +15 -0
- package/src/store/class/cartouchier/cartouchier.ts +9 -0
- package/src/store/class/conference/conference.ts +35 -0
- package/src/store/class/conference/conferenceMessage.ts +10 -0
- package/src/store/class/conference/conferenceParticipant.ts +18 -0
- package/src/store/class/conference/pad.ts +15 -0
- package/src/store/class/conference/studioCall.ts +7 -0
- package/src/store/class/contract/contract.ts +7 -0
- package/src/store/class/contract/contractOrganisation.ts +7 -0
- package/src/store/class/ftp/ftpEmission.ts +41 -0
- package/src/store/class/ftp/ftpParam.ts +12 -0
- package/src/store/class/ftp/testFtpEmission.ts +5 -0
- package/src/store/class/general/audioView.ts +21 -0
- package/src/store/class/general/category.ts +10 -0
- package/src/store/class/general/comment.ts +16 -0
- package/src/store/class/general/customPlayer.ts +9 -0
- package/src/store/class/general/emission.ts +23 -0
- package/src/store/class/general/fetchParam.ts +3 -0
- package/src/store/class/general/initState.ts +25 -0
- package/src/store/class/general/interfacePageable.ts +16 -0
- package/src/store/class/general/ituneCategory.ts +5 -0
- package/src/store/class/general/media.ts +14 -0
- package/src/store/class/general/organisation.ts +20 -0
- package/src/store/class/general/pageable.ts +13 -0
- package/src/store/class/general/participant.ts +12 -0
- package/src/store/class/{player.ts → general/player.ts} +5 -3
- package/src/store/class/general/playlist.ts +13 -0
- package/src/store/class/general/podcast.ts +43 -0
- package/src/store/class/general/sortPageable.ts +5 -0
- package/src/store/class/general/soundcastCategory.ts +8 -0
- package/src/store/class/ouestFrance/ofTag.ts +36 -0
- package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
- package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
- package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
- package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
- package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
- package/src/store/class/rss/aggregator.ts +28 -0
- package/src/store/class/rss/rssEmission.ts +14 -0
- package/src/store/class/rss/rssInfo.ts +8 -0
- package/src/store/class/rubrique/rubriquage.ts +10 -0
- package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
- package/src/store/class/rubrique/rubrique.ts +9 -0
- package/src/store/class/stat/statArrayIncome.ts +6 -0
- package/src/store/class/stat/statArrayObject.ts +34 -0
- package/src/store/class/stat/statGraph.ts +7 -0
- package/src/store/class/user/person.ts +15 -0
- package/src/store/class/user/profile.ts +12 -0
- package/src/store/class/user/userKeycloak.ts +24 -0
- package/src/store/paramStore.ts +221 -241
- package/src/store/typeAppStore.ts +45 -28
- package/src/vuex-shim.d.ts +8 -0
- package/tsconfig.json +2 -1
- package/vue.config.js +3 -1
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -840
- package/public/css/fonts/saooti-ui.ttf +0 -0
- package/public/css/fonts/saooti-ui.woff +0 -0
- package/public/css/fonts/stitcher-logo.svg +0 -83
- package/public/img/article.png +0 -0
- package/src/api/comments.ts +0 -7
- package/src/api/emissions.ts +0 -7
- package/src/api/podcasts.ts +0 -7
- package/src/api/profile.ts +0 -8
- package/src/api/studio.ts +0 -8
- package/src/assets/bootstrap_scss/_alert.scss +0 -51
- package/src/assets/bootstrap_scss/_badge.scss +0 -54
- package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
- package/src/assets/bootstrap_scss/_button-group.scss +0 -164
- package/src/assets/bootstrap_scss/_buttons.scss +0 -298
- package/src/assets/bootstrap_scss/_card.scss +0 -278
- package/src/assets/bootstrap_scss/_carousel.scss +0 -197
- package/src/assets/bootstrap_scss/_close.scss +0 -41
- package/src/assets/bootstrap_scss/_code.scss +0 -48
- package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
- package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
- package/src/assets/bootstrap_scss/_forms.scss +0 -352
- package/src/assets/bootstrap_scss/_functions.scss +0 -134
- package/src/assets/bootstrap_scss/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/_images.scss +0 -42
- package/src/assets/bootstrap_scss/_input-group.scss +0 -191
- package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
- package/src/assets/bootstrap_scss/_list-group.scss +0 -158
- package/src/assets/bootstrap_scss/_media.scss +0 -8
- package/src/assets/bootstrap_scss/_mixins.scss +0 -47
- package/src/assets/bootstrap_scss/_modal.scss +0 -243
- package/src/assets/bootstrap_scss/_nav.scss +0 -120
- package/src/assets/bootstrap_scss/_navbar.scss +0 -324
- package/src/assets/bootstrap_scss/_pagination.scss +0 -74
- package/src/assets/bootstrap_scss/_popover.scss +0 -170
- package/src/assets/bootstrap_scss/_print.scss +0 -141
- package/src/assets/bootstrap_scss/_progress.scss +0 -46
- package/src/assets/bootstrap_scss/_reboot.scss +0 -482
- package/src/assets/bootstrap_scss/_root.scss +0 -20
- package/src/assets/bootstrap_scss/_spinners.scss +0 -55
- package/src/assets/bootstrap_scss/_tables.scss +0 -185
- package/src/assets/bootstrap_scss/_toasts.scss +0 -44
- package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
- package/src/assets/bootstrap_scss/_transitions.scss +0 -20
- package/src/assets/bootstrap_scss/_type.scss +0 -125
- package/src/assets/bootstrap_scss/_utilities.scss +0 -17
- package/src/assets/bootstrap_scss/_variables.scss +0 -1145
- package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
- package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
- package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
- package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
- package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
- package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
- package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
- package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
- package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
- package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
- package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
- package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
- package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
- package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
- package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
- package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
- package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
- package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
- package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
- package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
- package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
- package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
- package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
- package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
- package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
- package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
- package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
- package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
- package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
- package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
- package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
- package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
- package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
- package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
- package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
- package/src/components/misc/Player.vue +0 -772
- package/src/store/class/category.ts +0 -8
- package/src/store/class/comment.ts +0 -17
- package/src/store/class/conference.ts +0 -27
- package/src/store/class/customPlayer.ts +0 -8
- package/src/store/class/emission.ts +0 -20
- package/src/store/class/media.ts +0 -13
- package/src/store/class/organisation.ts +0 -19
- package/src/store/class/participant.ts +0 -12
- package/src/store/class/person.ts +0 -13
- package/src/store/class/playlist.ts +0 -15
- package/src/store/class/podcast.ts +0 -37
- package/src/store/class/rubriquage.ts +0 -9
- package/src/store/class/rubriquageFilter.ts +0 -5
- package/src/store/class/rubrique.ts +0 -8
package/src/locale/de.ts
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
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 emission 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
|
+
'Subscribe to this RSS feed': "Abonnieren Sie diesen RSS-Feed",
|
|
119
|
+
'Emission have not podcasts': "In dieser Reihe gibt es keine Podcasts.",
|
|
120
|
+
'Participant have not podcasts':
|
|
121
|
+
"Dieser Sprecher ist keinem Podcast zugeordnet.",
|
|
122
|
+
'Default version': "Standard-Player",
|
|
123
|
+
'Large version': "Großer Player",
|
|
124
|
+
'Emission version': "Player für Reihe",
|
|
125
|
+
'Large emission version': "Großer Player für Reihe",
|
|
126
|
+
'Large suggestion version': "Großer Player mit Hörvorschlägen",
|
|
127
|
+
'Embed link': "Miniplayer einbetten",
|
|
128
|
+
'Embedly link': "Link zum Player",
|
|
129
|
+
'Direct link': "Link zum Audio",
|
|
130
|
+
'Advanced filters': "Erweiterte Filter",
|
|
131
|
+
Advertising: "Werbung",
|
|
132
|
+
'By topic': "Nach Thema",
|
|
133
|
+
'By rubric': "Nach Rubrik",
|
|
134
|
+
'Type string to filter by rubrics': "Nach Rubriken filtern",
|
|
135
|
+
'No rubric filter': "Keine Rubrik",
|
|
136
|
+
'From the :': "Vom:",
|
|
137
|
+
'To the :': "Bis zum:",
|
|
138
|
+
Visible: "Sichtbar",
|
|
139
|
+
'In creation': "In Arbeit",
|
|
140
|
+
'Publish in future': "Folgen anzeigen, die für Besucher verborgen sind",
|
|
141
|
+
'In error': "Fehler",
|
|
142
|
+
'Emission with episode published :':
|
|
143
|
+
"Reihe zu dieser Folge veröffentlicht am: ",
|
|
144
|
+
Sort: "Sortiert",
|
|
145
|
+
Filter: "Filter",
|
|
146
|
+
'Sort score': "Nach Relevanz",
|
|
147
|
+
'Sort name': "Nach Titel",
|
|
148
|
+
'Sort last': "Nach Datum",
|
|
149
|
+
'Choose color': "Farbe wählen",
|
|
150
|
+
'Choose theme': "Design wählen",
|
|
151
|
+
'Podcast no visible': "Podcast nicht sichtbar",
|
|
152
|
+
'Display episodes': "Folgen anzeigen",
|
|
153
|
+
'Podcast published in future': "Podcast geplant",
|
|
154
|
+
'Podcast in process': "Podcast in Arbeit",
|
|
155
|
+
'Podcast in error': "Podcast fehlerhaft",
|
|
156
|
+
'See podcasts no visible':
|
|
157
|
+
"Für Besucher verborgene Podcasts sehen",
|
|
158
|
+
'Number podcasts': "{nb} Podcasts",
|
|
159
|
+
'Number emissions': "{nb} Reihen",
|
|
160
|
+
'Number participants': "{nb} Sprecher",
|
|
161
|
+
'Number productors': "{nb} Produzenten",
|
|
162
|
+
'Display next': "Spätere Folgen anzeigen",
|
|
163
|
+
'Display previous': "Frühere Folgen anzeigen",
|
|
164
|
+
Play: "Abspielen",
|
|
165
|
+
Pause: "Pause",
|
|
166
|
+
'Show description': "Beschreibung anzeigen",
|
|
167
|
+
'Hide description': "Beschreibung ausblenden",
|
|
168
|
+
'open left Menu': "Menü öffnen/schließen",
|
|
169
|
+
Participant: "Sprecher",
|
|
170
|
+
'Number of player podcasts': "Anzahl der Podcasts im Player",
|
|
171
|
+
'Proceed reading': "Weiterhören",
|
|
172
|
+
'Without topic': "Ohne Thema",
|
|
173
|
+
'Without rubric': "Ohne Rubrik",
|
|
174
|
+
'Consider podcasts no visible':
|
|
175
|
+
"Auch Podcasts anzeigen, die für Besucher verborgen sind",
|
|
176
|
+
'Hosted by': "Erstellt von",
|
|
177
|
+
TutoMag: "TutoMag",
|
|
178
|
+
News: "Aktuelles",
|
|
179
|
+
'Known issues': "Bekannte Themen",
|
|
180
|
+
Help: "Hilfe",
|
|
181
|
+
'Podcast play error': "Beim Abspielen des Podcasts ist ein Fehler aufgetreten.",
|
|
182
|
+
'More episodes': "Mehr Folgen",
|
|
183
|
+
Stop: "Anhalten",
|
|
184
|
+
'Share this page without edit and share blocks':
|
|
185
|
+
"Diese Seite ohne Bearbeitungsblöcke teilen",
|
|
186
|
+
'Podcast in cancelled status': "Dieser Podcast wurde gestrichen",
|
|
187
|
+
'Show every episode': "Alle Folgen anzeigen",
|
|
188
|
+
'Subscribe emission': "Reihe abonnieren",
|
|
189
|
+
'Rss feed parameters': "RSS-Feed-Einstellungen",
|
|
190
|
+
'Not share episodes before':
|
|
191
|
+
"Folgen erst teilen ab",
|
|
192
|
+
'Not share episodes after':
|
|
193
|
+
"Folgen nicht mehr teilen ab",
|
|
194
|
+
hours: "Stunde(n)",
|
|
195
|
+
days: "Tag(e)",
|
|
196
|
+
Live: "Live-Übertragung",
|
|
197
|
+
'In live': "Auf Sendung",
|
|
198
|
+
'Launch a new live': "Neue Live-Übertragung erstellen",
|
|
199
|
+
'Loading lives...': "Live-Übertragungen laden …",
|
|
200
|
+
'No live currently': "Derzeit keine Live-Übertragung verfügbar",
|
|
201
|
+
'live upcoming': "Live-Übertragung beginnt gleich",
|
|
202
|
+
"live in few time":"Live-Übertragung bald verfügbar",
|
|
203
|
+
Debriefing: "Nachbereitung",
|
|
204
|
+
Publishing: "Veröffentlichen",
|
|
205
|
+
'select productor': "Produzenten wählen",
|
|
206
|
+
'Share newsletter': "Einen Newsletter teilen",
|
|
207
|
+
Configuration: "Konfiguration",
|
|
208
|
+
'HTML Code': "HTML-Code",
|
|
209
|
+
'Listen this episode': "Diese Folge anhören",
|
|
210
|
+
'Display emission name': "Titel der Reihe anzeigen",
|
|
211
|
+
'Display participants list': "Liste der Sprecher anzeigen",
|
|
212
|
+
'Choose main color': "Wählen Sie die Hauptfarbe",
|
|
213
|
+
'Octopus is ACPM Podcast accredited': "Octopus ist von der ACPM zertifiziert",
|
|
214
|
+
'Live episode': "Aktuelle Live-Übertragungen",
|
|
215
|
+
'This live will start': "Diese Live-Übertragung beginnt",
|
|
216
|
+
'In days hours minutes seconds':
|
|
217
|
+
"in {days} Tagen, {hours} Stunden, {minutes} Minuten und {seconds} Sekunden",
|
|
218
|
+
'Open studio': "Studio frei",
|
|
219
|
+
'Episode record in live': "Live-Aufnahme",
|
|
220
|
+
'In a moment': "Gleich verfügbar",
|
|
221
|
+
'Live to be': "In Kürze verfügbar",
|
|
222
|
+
'Live terminated': "Live-Übertragung beendet",
|
|
223
|
+
'Next live date': "Die nächste Live-Übertragung ist am {date}.",
|
|
224
|
+
'Not recording': "Nicht aufgezeichnet",
|
|
225
|
+
'This live is not started yet': "Live-Übertragung hat noch nicht begonnen",
|
|
226
|
+
'A live can start any moment': "Live-Übertragung beginnt gleich",
|
|
227
|
+
'Recorded in live': "Live-Aufnahme",
|
|
228
|
+
'Podcast linked to waiting live': "Podcast ist mit geplanter Live-Übertragung verbunden",
|
|
229
|
+
Playlists: "Wiedergabelisten",
|
|
230
|
+
Playlist: "Wiedergabeliste",
|
|
231
|
+
'All playlists': "Alle Wiedergabelisten",
|
|
232
|
+
'Look for playlist name': "Wiedergabeliste nach Titel suchen",
|
|
233
|
+
'Number playlists': "{NB} Wiedergabelisten",
|
|
234
|
+
'Playlist have not podcasts': "In der Wiedergabeliste gibt es keinen Podcast.",
|
|
235
|
+
"Playlist doesn't exist": "Gesuchte Wiedergabeliste nicht gefunden",
|
|
236
|
+
'Playlist name image': "Wiedergabeliste {name}",
|
|
237
|
+
'Create playlist': "Wiedergabeliste erstellen",
|
|
238
|
+
'Podcasts in the playlist': "Alle Podcasts in der Wiedergabeliste",
|
|
239
|
+
'No podcasts in the playlist': "Keine Podcasts in der Wiedergabeliste",
|
|
240
|
+
'Start in a while': "Beginnt gleich",
|
|
241
|
+
'All live emission button': "Alle Live-Übertragungen der Reihe",
|
|
242
|
+
'player parameters': "Player-Einstellungen",
|
|
243
|
+
'Start at': "Beginnt um",
|
|
244
|
+
'sort by score': "nach Relevanz",
|
|
245
|
+
'sort by alphabetical': "in alphabetischer Reihenfolge",
|
|
246
|
+
'sort by date': "nach Datum",
|
|
247
|
+
'Be the first to react': "Ersten Kommentar hinterlassen",
|
|
248
|
+
"Podcast's comments": "Kommentare zum Podcast",
|
|
249
|
+
'()': '({nb})',
|
|
250
|
+
'Write a comment': "Kommentar schreiben",
|
|
251
|
+
'Answer a comment': "Auf Kommentar antworten",
|
|
252
|
+
'See more comments': "Weitere Kommentare",
|
|
253
|
+
'To answer': "Antworten",
|
|
254
|
+
'Display answers': "Alle {nb} Antworten anzeigen",
|
|
255
|
+
'Hide answers': "Antworten verbergen",
|
|
256
|
+
'Read more': "Mehr anzeigen",
|
|
257
|
+
'Read less': "Verbergen",
|
|
258
|
+
'(nb valid comment answers)': "({nb} gültige Antworten auf Kommentare)",
|
|
259
|
+
'Welcome, thanks for your comment': "Willkommen, danke für Ihren Kommentar.",
|
|
260
|
+
"Let's get acquainted :": "Stellen Sie sich vor:",
|
|
261
|
+
'Your name': "Ihr Name",
|
|
262
|
+
'Send in progress': "Wird gesendet …",
|
|
263
|
+
'Error occurs while post your comment...':
|
|
264
|
+
"Bei der Veröffentlichung Ihres Kommentars ist ein Fehler aufgetreten",
|
|
265
|
+
'Comments loading error': "Beim Laden der Kommentare ist ein Fehler aufgetreten",
|
|
266
|
+
'Certified account': "Verifiziertes Konto",
|
|
267
|
+
'No comments': "Keine Kommentare",
|
|
268
|
+
'In response to': "Antwort auf",
|
|
269
|
+
'Please chose a productor': "Produzenten wählen",
|
|
270
|
+
'Podcast in ERROR, please contact Saooti':
|
|
271
|
+
"Bei der Verarbeitung dieses Podcasts ist ein Fehler aufgetreten. Wenden Sie sich bitte an Saooti.",
|
|
272
|
+
'Podcast still available':
|
|
273
|
+
"Podcast für Besucher verfügbar",
|
|
274
|
+
'Podcasts still available':
|
|
275
|
+
"Ausgeblendete Folgen sollen für Hörer verfügbar bleiben",
|
|
276
|
+
'Podcast image': "Bild zum Podcast",
|
|
277
|
+
'Recaptcha error':
|
|
278
|
+
"Google reCAPTCHA hält Sie für einen Roboter",
|
|
279
|
+
'Recaptcha not active': "Google CAPTCHA ist deaktiviert",
|
|
280
|
+
'Comment waiting':
|
|
281
|
+
"Der Kommentar ist für andere Besucher erst sichtbar, nachdem er validiert wurde.",
|
|
282
|
+
'Display all podcasts to validate': "Alle noch nicht validierten Podcasts anzeigen",
|
|
283
|
+
'Display my podcasts to validate': "Meine noch nicht validierten Podcasts anzeigen",
|
|
284
|
+
'Podcast not validated': "Nicht validierter Podcast",
|
|
285
|
+
'Podcast to validate': "Podcast noch nicht validiert",
|
|
286
|
+
'Change locale': "Ändere die Sprache",
|
|
287
|
+
'Refresh': "Aktualisieren",
|
|
288
|
+
'See associated article':"Artikel lesen",
|
|
289
|
+
"Display associated article":"Zugehörigen Artikel anzeigen",
|
|
290
|
+
"Copy this page URL":"URL dieser Seite kopieren",
|
|
291
|
+
"Custom version":"Benutzerdefiniert",
|
|
292
|
+
"All":"Alle",
|
|
293
|
+
'By category': "Nach IAB-Kategorie",
|
|
294
|
+
"Add a sort criterion by topic":"Sortierkriterium nach Thema hinzufügen",
|
|
295
|
+
'Share QR Code': "QR-Code teilen",
|
|
296
|
+
"Download":"Herunterladen",
|
|
297
|
+
"Download started": "Lädt herunter",
|
|
298
|
+
'From RSS': "Aus RSS-Feed",
|
|
299
|
+
"User menu":"Benutzermenü",
|
|
300
|
+
'Podcast tags': "Podcast-Tags",
|
|
301
|
+
"Enlarge":"Vergrößern",
|
|
302
|
+
"Reduce":"Reduzieren",
|
|
303
|
+
"Use organization color":"Verwenden Sie die Organisationsfarbe",
|
|
304
|
+
"Oops":"Oups",
|
|
305
|
+
"The page you are looking for cannot be found":"Die gesuchte Seite kann nicht gefunden werden",
|
|
306
|
+
'Back to home': "Zurück zur Startseite",
|
|
307
|
+
"Warning":"Warnung",
|
|
308
|
+
"Visual":"Bild von {name}",
|
|
309
|
+
}
|
package/src/locale/en.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export default
|
|
1
|
+
export default{
|
|
2
2
|
'Edit my profile': 'My profile',
|
|
3
3
|
'Edit my organisation': 'My organization',
|
|
4
4
|
Logout: 'Logout',
|
|
@@ -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 from "{name}"',
|
|
45
45
|
'Podcast search': 'Search in the podcasts',
|
|
46
46
|
'No podcast match your query':
|
|
47
47
|
'No podcast matches your query',
|
|
@@ -51,26 +51,26 @@ export default {
|
|
|
51
51
|
'All productors': 'All producers',
|
|
52
52
|
'All emissions': 'All series',
|
|
53
53
|
'Filter by keyword : ': 'Filter by keyword : ',
|
|
54
|
-
'Look for participant name': 'Search for speaker by name',
|
|
55
|
-
'Look for productor name': 'Search for
|
|
56
|
-
'Look for emission name': 'Search for
|
|
57
|
-
'Look for podcast name': 'Search for podcast by title',
|
|
54
|
+
'Look for participant name': 'Search for a speaker by name',
|
|
55
|
+
'Look for productor name': 'Search for a producer by title',
|
|
56
|
+
'Look for emission name': 'Search for a series by title',
|
|
57
|
+
'Look for podcast name': 'Search for a podcast by title',
|
|
58
58
|
'Type string to filter by organisation': 'Filter by organization',
|
|
59
|
-
'Type string to filter by emission': 'Filter by
|
|
59
|
+
'Type string to filter by emission': 'Filter by series',
|
|
60
60
|
'Type string to filter by podcast': 'Filter by podcast',
|
|
61
61
|
'No organisation filter': 'No organization filter',
|
|
62
|
-
'No emission filter': 'No
|
|
62
|
+
'No emission filter': 'No series filter',
|
|
63
63
|
'No podcast filter': 'No podcast filter',
|
|
64
64
|
'Loading participants ...': 'Loading speakers...',
|
|
65
65
|
'Loading productors ...': 'Loading Producers...',
|
|
66
66
|
'Loading emissions ...': 'Loading series...',
|
|
67
|
-
'Emission name image': "Image for the
|
|
67
|
+
'Emission name image': "Image for the series {name}",
|
|
68
68
|
'Loading content ...': 'Loading content...',
|
|
69
69
|
Episode: 'Episode',
|
|
70
70
|
'Episode name image': "Episode {name} image",
|
|
71
|
-
'More episodes of this emission': "More episodes
|
|
72
|
-
'More episodes of this category : {name}': "More episodes
|
|
73
|
-
'All podcast
|
|
71
|
+
'More episodes of this emission': "More episodes from this series",
|
|
72
|
+
'More episodes of this category : {name}': "More episodes from this category : {name}",
|
|
73
|
+
'All podcast emission button': "All podcasts from this series",
|
|
74
74
|
Duration: 'Duration : {duration}',
|
|
75
75
|
Animator: 'Host',
|
|
76
76
|
'No category filter': 'No category filter',
|
|
@@ -108,20 +108,21 @@ export default {
|
|
|
108
108
|
'Prohibited advertising': 'Advertising Prohibited',
|
|
109
109
|
'Authorized advertising': 'Advertising Authorized',
|
|
110
110
|
Distribute: 'Distribute',
|
|
111
|
-
'Rss feed:': 'RSS Feed
|
|
111
|
+
'Rss feed:': 'RSS Feed:',
|
|
112
112
|
'See more': 'See more',
|
|
113
113
|
'Search results': 'Search results for "{query}"',
|
|
114
114
|
'Search - no results': 'Search - no results for "{query}"',
|
|
115
115
|
Downloading: 'Downloading',
|
|
116
|
-
'Subscribe to this emission': "Subscribe to this
|
|
116
|
+
'Subscribe to this emission': "Subscribe to this series",
|
|
117
117
|
'Subscribe to this participant': "Subscribe to this speakers",
|
|
118
|
-
'
|
|
118
|
+
'Subscribe to this RSS feed': "Subscribe to this RSS feed",
|
|
119
|
+
'Emission have not podcasts': "This series does not have any podcasts",
|
|
119
120
|
'Participant have not podcasts':
|
|
120
121
|
'Speaker is not associated to any podcasts',
|
|
121
122
|
'Default version': 'Default version',
|
|
122
123
|
'Large version': 'Large version',
|
|
123
124
|
'Emission version': 'Serie version',
|
|
124
|
-
'Large emission version': 'Large
|
|
125
|
+
'Large emission version': 'Large series version',
|
|
125
126
|
'Large suggestion version': 'Large suggestion version',
|
|
126
127
|
'Embed link': 'Embed miniplayer',
|
|
127
128
|
'Embedly link': 'Player link',
|
|
@@ -154,10 +155,10 @@ export default {
|
|
|
154
155
|
'Podcast in error': 'Podcast in error',
|
|
155
156
|
'See podcasts no visible':
|
|
156
157
|
'See podcasts not visible to the audience',
|
|
157
|
-
'Number podcasts': '{nb}
|
|
158
|
-
'Number emissions': '{nb}
|
|
159
|
-
'Number participants': '{nb}
|
|
160
|
-
'Number productors': '{nb}
|
|
158
|
+
'Number podcasts': '{nb} podcasts',
|
|
159
|
+
'Number emissions': '{nb} series',
|
|
160
|
+
'Number participants': '{nb} speakers',
|
|
161
|
+
'Number productors': '{nb} Producers',
|
|
161
162
|
'Display next': 'Display the following episodes',
|
|
162
163
|
'Display previous': 'Display previous episodes',
|
|
163
164
|
Play: 'Play',
|
|
@@ -184,7 +185,7 @@ export default {
|
|
|
184
185
|
"Share this page without edit and share blocks",
|
|
185
186
|
'Podcast in cancelled status': 'Podcast has a cancelled status',
|
|
186
187
|
'Show every episode': 'Show every episode',
|
|
187
|
-
'Subscribe emission': "Subscribe to the
|
|
188
|
+
'Subscribe emission': "Subscribe to the series",
|
|
188
189
|
'Rss feed parameters': 'RSS Feed settings',
|
|
189
190
|
'Not share episodes before':
|
|
190
191
|
'Do not share episodes before',
|
|
@@ -206,7 +207,7 @@ export default {
|
|
|
206
207
|
Configuration: 'Configuration',
|
|
207
208
|
'HTML Code': 'HTML Code',
|
|
208
209
|
'Listen this episode': 'Listen to this episode',
|
|
209
|
-
'Display emission name': "Display the
|
|
210
|
+
'Display emission name': "Display the series title",
|
|
210
211
|
'Display participants list': 'Display the speakers list',
|
|
211
212
|
'Choose main color': 'Choose the main color',
|
|
212
213
|
'Octopus is ACPM Podcast accredited': 'Octopus is ACPM accredited',
|
|
@@ -237,12 +238,12 @@ export default {
|
|
|
237
238
|
'Podcasts in the playlist': 'All the Podcasts in the playlist',
|
|
238
239
|
'No podcasts in the playlist': "No podcasts in the playlist",
|
|
239
240
|
'Start in a while': 'Starts any minute',
|
|
240
|
-
'All live emission button': "All lives in the
|
|
241
|
+
'All live emission button': "All lives in the series",
|
|
241
242
|
'player parameters': 'Setting of player',
|
|
242
243
|
'Start at': 'Start at',
|
|
243
|
-
'sort by score': '
|
|
244
|
-
'sort by alphabetical': '
|
|
245
|
-
'sort by date': '
|
|
244
|
+
'sort by score': 'by relevancy score',
|
|
245
|
+
'sort by alphabetical': 'sorted alphabetically',
|
|
246
|
+
'sort by date': 'sorted by date',
|
|
246
247
|
'Be the first to react': 'Be the first to react',
|
|
247
248
|
"Podcast's comments": "Podcast's comments",
|
|
248
249
|
'()': '({nb})',
|
|
@@ -282,12 +283,11 @@ export default {
|
|
|
282
283
|
'Display my podcasts to validate': 'Display my podcasts to validate',
|
|
283
284
|
'Podcast not validated': "Podcast not validated",
|
|
284
285
|
'Podcast to validate': 'Podcast to validate',
|
|
285
|
-
'Change locale': '
|
|
286
|
+
'Change locale': 'Change the language',
|
|
286
287
|
'Refresh': 'Refresh',
|
|
287
288
|
'See associated article':"Read the article",
|
|
288
289
|
"Display associated article":"Display associated article",
|
|
289
290
|
"Copy this page URL":"Copy this page URL",
|
|
290
|
-
"Use beta version":"Use beta version player",
|
|
291
291
|
"Custom version":"Custom version",
|
|
292
292
|
"All":"All",
|
|
293
293
|
'By category': 'By IAB category',
|
|
@@ -296,4 +296,21 @@ export default {
|
|
|
296
296
|
"Download":"Download",
|
|
297
297
|
"Download started": 'Download started',
|
|
298
298
|
'From RSS': "From an RSS feed",
|
|
299
|
+
"User menu":"User menu",
|
|
300
|
+
'Podcast tags': 'Podcast tags',
|
|
301
|
+
"You do not have the right to access this page":"You do not have the right to access this page",
|
|
302
|
+
"Enlarge":"Enlarge",
|
|
303
|
+
"Reduce":"Reduce",
|
|
304
|
+
"Use organization color":"Use organization color",
|
|
305
|
+
"Oops":"Oups",
|
|
306
|
+
"The page you are looking for cannot be found":"The page you are looking for cannot be found",
|
|
307
|
+
'Back to home': 'Back to home',
|
|
308
|
+
"Items per page :":"Items per page :",
|
|
309
|
+
'Showing items number': "Page {page} of {totalPage}",
|
|
310
|
+
"Go to first page":"Go to first page",
|
|
311
|
+
"Go to last page":"Go to last page",
|
|
312
|
+
"Go to next page":"Go to next page",
|
|
313
|
+
"Go to previous page":"Go to previous page",
|
|
314
|
+
"Warning":"Warning",
|
|
315
|
+
"Visual":"Visual of {name}",
|
|
299
316
|
};
|