@saooti/octopus-sdk 37.0.5 → 37.0.7
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 +2 -2
- package/index.html +1 -0
- package/index.ts +21 -21
- package/package.json +26 -20
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +1 -1
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/montserrat/Montserrat-Black.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BlackItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Bold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-BoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLight.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ExtraLightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Italic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Light.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-LightItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Medium.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-MediumItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Regular.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBold.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-SemiBoldItalic.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-Thin.ttf +0 -0
- package/public/css/fonts/montserrat/Montserrat-ThinItalic.ttf +0 -0
- package/public/css/fonts/montserrat/style.css +28 -0
- package/public/css/fonts/style.css +5 -5
- package/src/App.vue +69 -60
- package/src/api/classicCrud.ts +12 -12
- package/src/api/initialize.ts +1 -1
- package/src/assets/bootstrap.scss +9 -0
- package/src/assets/general.scss +1 -1
- package/src/assets/share.scss +1 -1
- package/src/components/display/aggregator/RssSection.vue +3 -3
- package/src/components/display/categories/CategoryChooser.vue +73 -60
- package/src/components/display/categories/CategoryFilter.vue +134 -90
- package/src/components/display/categories/CategoryList.vue +76 -62
- package/src/components/display/comments/AddCommentModal.vue +44 -44
- package/src/components/display/comments/CommentBasicView.vue +38 -30
- package/src/components/display/comments/CommentInput.vue +122 -110
- package/src/components/display/comments/CommentItem.vue +144 -102
- package/src/components/display/comments/CommentList.vue +117 -85
- package/src/components/display/comments/CommentParentInfo.vue +18 -15
- package/src/components/display/comments/CommentPlayer.vue +39 -41
- package/src/components/display/comments/CommentSection.vue +68 -53
- package/src/components/display/edit/EditBox.vue +7 -7
- package/src/components/display/edit/EditBoxRadio.vue +3 -4
- package/src/components/display/edit/EditCommentBox.vue +34 -36
- package/src/components/display/emission/EmissionInlineList.vue +75 -63
- package/src/components/display/emission/EmissionItem.vue +47 -35
- package/src/components/display/emission/EmissionList.vue +111 -83
- package/src/components/display/emission/EmissionPlayerItem.vue +89 -89
- package/src/components/display/filter/AdvancedSearch.vue +81 -73
- package/src/components/display/filter/CategorySearchFilter.vue +27 -25
- package/src/components/display/filter/DateFilter.vue +38 -38
- package/src/components/display/filter/MonetizableFilter.vue +16 -14
- package/src/components/display/filter/ProductorSearch.vue +55 -47
- package/src/components/display/filter/RubriqueChoice.vue +42 -27
- package/src/components/display/filter/RubriqueFilter.vue +130 -85
- package/src/components/display/filter/SearchOrder.vue +16 -11
- package/src/components/display/list/ListPaginate.vue +72 -70
- package/src/components/display/list/PaginateParams.vue +29 -30
- package/src/components/display/list/PaginateSection.vue +210 -0
- package/src/components/display/list/SwiperList.vue +28 -32
- package/src/components/display/live/CountDown.vue +12 -14
- package/src/components/display/live/LiveHorizontalList.vue +60 -50
- package/src/components/display/live/LiveItem.vue +42 -26
- package/src/components/display/live/LiveList.vue +92 -65
- package/src/components/display/live/RadioCurrently.vue +47 -42
- package/src/components/display/live/RadioImage.vue +40 -42
- package/src/components/display/live/RadioItem.vue +15 -22
- package/src/components/display/live/RadioList.vue +24 -21
- package/src/components/display/live/RadioPlanning.vue +105 -68
- package/src/components/display/organisation/OrganisationChooser.vue +58 -42
- package/src/components/display/organisation/OrganisationChooserLight.vue +27 -19
- package/src/components/display/participant/ParticipantItem.vue +89 -76
- package/src/components/display/participant/ParticipantList.vue +90 -60
- package/src/components/display/playlist/PlaylistItem.vue +32 -35
- package/src/components/display/playlist/PlaylistList.vue +70 -52
- package/src/components/display/playlist/PodcastList.vue +61 -50
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +47 -38
- package/src/components/display/podcasts/AnimatorsItem.vue +17 -15
- package/src/components/display/podcasts/ParticipantDescription.vue +21 -22
- package/src/components/display/podcasts/PodcastFilterList.vue +28 -26
- package/src/components/display/podcasts/PodcastImage.vue +129 -138
- package/src/components/display/podcasts/PodcastInlineList.vue +33 -29
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +91 -71
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +94 -85
- package/src/components/display/podcasts/PodcastItem.vue +96 -90
- package/src/components/display/podcasts/PodcastItemInfo.vue +63 -65
- package/src/components/display/podcasts/PodcastList.vue +115 -84
- package/src/components/display/podcasts/PodcastModuleBox.vue +95 -104
- package/src/components/display/podcasts/PodcastPlayBar.vue +45 -32
- package/src/components/display/podcasts/PodcastSwiperList.vue +65 -55
- package/src/components/display/podcasts/TagList.vue +33 -37
- package/src/components/display/rubriques/RubriqueChooser.vue +70 -51
- package/src/components/display/rubriques/RubriqueList.vue +117 -89
- package/src/components/display/sharing/PlayerParameters.vue +45 -42
- package/src/components/display/sharing/QrCode.vue +52 -46
- package/src/components/display/sharing/ShareButtons.vue +25 -27
- package/src/components/display/sharing/ShareButtonsIntern.vue +182 -155
- package/src/components/display/sharing/ShareDistribution.vue +101 -67
- package/src/components/display/sharing/SharePlayer.vue +207 -127
- package/src/components/display/sharing/SharePlayerColors.vue +15 -15
- package/src/components/display/sharing/SharePlayerRadio.vue +62 -39
- package/src/components/display/sharing/SharePlayerTypes.vue +93 -55
- package/src/components/display/sharing/SubscribeButtons.vue +83 -32
- package/src/components/display/studio/RecordingItemButton.vue +3 -3
- package/src/components/form/ClassicCheckbox.vue +32 -31
- package/src/components/form/ClassicDatePicker.vue +47 -49
- package/src/components/form/ClassicInputText.vue +99 -98
- package/src/components/form/ClassicLoading.vue +11 -14
- package/src/components/form/ClassicMultiselect.vue +125 -126
- package/src/components/form/ClassicRadio.vue +15 -18
- package/src/components/form/ClassicSearch.vue +17 -23
- package/src/components/form/ClassicSelect.vue +35 -27
- package/src/components/form/{Wysiwyg.vue → ClassicWysiwyg.vue} +94 -109
- package/src/components/misc/AcpmImage.vue +26 -0
- package/src/components/misc/ClassicAccordion.vue +69 -0
- package/src/components/misc/ClassicNav.vue +117 -0
- package/src/components/misc/ClassicPopover.vue +212 -0
- package/src/components/misc/{Spinner.vue → ClassicSpinner.vue} +14 -15
- package/src/components/misc/ErrorMessage.vue +9 -17
- package/src/components/misc/FooterSection.vue +198 -0
- package/src/components/misc/HomeDropdown.vue +67 -64
- package/src/components/misc/LeftMenu.vue +115 -79
- package/src/components/misc/ProgressBar.vue +36 -32
- package/src/components/misc/SnackBar.vue +169 -0
- package/src/components/misc/TopBar.vue +161 -115
- package/src/components/misc/modal/ClassicModal.vue +99 -103
- package/src/components/misc/modal/ClipboardModal.vue +21 -23
- package/src/components/misc/modal/MessageModal.vue +22 -28
- package/src/components/misc/modal/NewsletterModal.vue +139 -113
- package/src/components/misc/modal/QrCodeModal.vue +14 -17
- package/src/components/misc/modal/ShareModalPlayer.vue +44 -60
- package/src/components/misc/player/PlayerCompact.vue +47 -62
- package/src/components/misc/player/{Player.vue → PlayerComponent.vue} +54 -46
- package/src/components/misc/player/PlayerLarge.vue +66 -62
- package/src/components/misc/player/PlayerProgressBar.vue +40 -30
- package/src/components/misc/player/PlayerTimeline.vue +32 -36
- package/src/components/misc/player/radio/RadioHistory.vue +62 -59
- package/src/components/misc/player/radio/RadioProgressBar.vue +44 -35
- package/src/components/mixins/cookies.ts +11 -10
- package/src/components/mixins/displayMethods.ts +5 -4
- package/src/components/mixins/handle403.ts +9 -9
- package/src/components/mixins/imageProxy.ts +14 -7
- package/src/components/mixins/init.ts +31 -16
- package/src/components/mixins/orgaComputed.ts +7 -7
- package/src/components/mixins/organisationFilter.ts +36 -22
- package/src/components/mixins/player/playerComment.ts +46 -37
- package/src/components/mixins/player/playerDisplay.ts +122 -87
- package/src/components/mixins/player/playerLive.ts +65 -43
- package/src/components/mixins/player/playerLogic.ts +133 -88
- package/src/components/mixins/player/playerTranscript.ts +48 -30
- package/src/components/mixins/radio/fetchRadioData.ts +40 -23
- package/src/components/mixins/selenium.ts +2 -2
- package/src/components/mixins/tagOfMixins.ts +11 -11
- package/src/components/pages/CategoryPage.vue +43 -0
- package/src/components/pages/{Emission.vue → EmissionPage.vue} +98 -67
- package/src/components/pages/{Emissions.vue → EmissionsPage.vue} +51 -44
- package/src/components/pages/Error403Page.vue +20 -19
- package/src/components/pages/HomePage.vue +144 -0
- package/src/components/pages/LivesPage.vue +66 -0
- package/src/components/pages/PageNotFound.vue +33 -22
- package/src/components/pages/{Participant.vue → ParticipantPage.vue} +63 -49
- package/src/components/pages/{Participants.vue → ParticipantsPage.vue} +9 -9
- package/src/components/pages/PlaylistPage.vue +175 -0
- package/src/components/pages/{Playlists.vue → PlaylistsPage.vue} +16 -14
- package/src/components/pages/PodcastPage.vue +365 -0
- package/src/components/pages/PodcastsPage.vue +152 -0
- package/src/components/pages/RadioPage.vue +131 -0
- package/src/components/pages/RubriquePage.vue +45 -0
- package/src/components/pages/{Search.vue → SearchPage.vue} +19 -19
- package/src/helper/dom.ts +1 -1
- package/src/helper/duration.ts +10 -4
- package/src/helper/useEventListener.ts +7 -8
- package/src/i18n.ts +31 -30
- package/src/locale/de.ts +263 -257
- package/src/locale/educationen.ts +13 -13
- package/src/locale/educationfr.ts +1 -1
- package/src/locale/en.ts +323 -324
- package/src/locale/es.ts +325 -318
- package/src/locale/fr.ts +330 -324
- package/src/locale/it.ts +332 -328
- package/src/locale/messages.ts +9 -9
- package/src/locale/sl.ts +315 -319
- package/src/main.ts +28 -31
- package/src/router/router.ts +218 -198
- package/src/shims-tsx.d.ts +1 -1
- package/src/shims-vue.d.ts +1 -1
- package/src/stores/ApiStore.ts +44 -44
- package/src/stores/AuthStore.ts +24 -16
- package/src/stores/CommentStore.ts +13 -11
- package/src/stores/FilterStore.ts +25 -15
- package/src/stores/GeneralStore.ts +15 -15
- package/src/stores/ParamSdkStore.ts +179 -137
- package/src/stores/PlayerStore.ts +139 -125
- package/src/stores/class/adserver/adserverConfig.ts +1 -1
- package/src/stores/class/adserver/adserverOtherEmission.ts +9 -9
- package/src/stores/class/cartouchier/cartouche.ts +4 -4
- package/src/stores/class/cartouchier/cartouchier.ts +2 -2
- package/src/stores/class/conference/conference.ts +10 -9
- package/src/stores/class/conference/conferenceMessage.ts +2 -2
- package/src/stores/class/conference/conferenceParticipant.ts +1 -1
- package/src/stores/class/conference/studioCall.ts +6 -6
- package/src/stores/class/contract/contractOrganisation.ts +5 -5
- package/src/stores/class/ftp/ftpEmission.ts +9 -9
- package/src/stores/class/ftp/testFtpEmission.ts +4 -4
- package/src/stores/class/general/audioView.ts +19 -19
- package/src/stores/class/general/category.ts +1 -1
- package/src/stores/class/general/classicSelectType.ts +2 -3
- package/src/stores/class/general/customPlayer.ts +8 -8
- package/src/stores/class/general/emission.ts +20 -21
- package/src/stores/class/general/fetchParam.ts +8 -2
- package/src/stores/class/general/initState.ts +31 -31
- package/src/stores/class/general/interfacePageable.ts +13 -13
- package/src/stores/class/general/ituneCategory.ts +4 -4
- package/src/stores/class/general/listReturn.ts +12 -12
- package/src/stores/class/general/media.ts +7 -7
- package/src/stores/class/general/organisation.ts +9 -10
- package/src/stores/class/general/pageable.ts +10 -10
- package/src/stores/class/general/participant.ts +7 -7
- package/src/stores/class/general/player.ts +30 -28
- package/src/stores/class/general/playlist.ts +17 -19
- package/src/stores/class/general/podcast.ts +19 -19
- package/src/stores/class/general/sortPageable.ts +4 -4
- package/src/stores/class/general/soundcastCategory.ts +7 -7
- package/src/stores/class/ouestFrance/ofTag.ts +34 -34
- package/src/stores/class/ouestFrance/ofTagInfo.ts +9 -9
- package/src/stores/class/ouestFrance/ofTagPage.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagSeo.ts +7 -7
- package/src/stores/class/ouestFrance/ofTagVente.ts +6 -6
- package/src/stores/class/ouestFrance/ofTagWithParents.ts +20 -20
- package/src/stores/class/radio/canal.ts +4 -4
- package/src/stores/class/radio/live.ts +6 -6
- package/src/stores/class/radio/mix.ts +16 -16
- package/src/stores/class/radio/playlistMedia.ts +7 -7
- package/src/stores/class/radio/recurrence.ts +54 -54
- package/src/stores/class/rss/rssEmission.ts +13 -13
- package/src/stores/class/rss/rssInfo.ts +7 -7
- package/src/stores/class/rubrique/rubriquage.ts +2 -2
- package/src/stores/class/rubrique/rubrique.ts +1 -1
- package/src/stores/class/stat/statArrayIncome.ts +5 -5
- package/src/stores/class/stat/statArrayObject.ts +26 -26
- package/src/stores/class/stat/statGraph.ts +6 -6
- package/src/stores/class/user/person.ts +4 -2
- package/src/stores/class/user/profile.ts +4 -2
- package/src/stores/class/user/userKeycloak.ts +4 -5
- package/src/components/display/list/Paginate.vue +0 -181
- package/src/components/misc/Accordion.vue +0 -78
- package/src/components/misc/Footer.vue +0 -165
- package/src/components/misc/Nav.vue +0 -119
- package/src/components/misc/Popover.vue +0 -193
- package/src/components/misc/Snackbar.vue +0 -168
- package/src/components/pages/Category.vue +0 -41
- package/src/components/pages/Home.vue +0 -125
- package/src/components/pages/Lives.vue +0 -64
- package/src/components/pages/Playlist.vue +0 -164
- package/src/components/pages/Podcast.vue +0 -307
- package/src/components/pages/Podcasts.vue +0 -146
- package/src/components/pages/Radio.vue +0 -122
- package/src/components/pages/Rubrique.vue +0 -42
package/src/locale/en.ts
CHANGED
|
@@ -1,338 +1,337 @@
|
|
|
1
|
-
export default{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Logout:
|
|
5
|
-
Login:
|
|
6
|
-
|
|
7
|
-
Home:
|
|
8
|
-
Podcasts:
|
|
9
|
-
Emissions:
|
|
10
|
-
Productors:
|
|
11
|
-
Productor:
|
|
12
|
-
Speakers:
|
|
13
|
-
Guests:
|
|
14
|
-
Favorites:
|
|
15
|
-
Distributor:
|
|
16
|
-
Image:
|
|
1
|
+
export default {
|
|
2
|
+
"Edit my profile": "My profile",
|
|
3
|
+
"Edit my organisation": "My organization",
|
|
4
|
+
Logout: "Logout",
|
|
5
|
+
Login: "Login",
|
|
6
|
+
"Animated by": "Hosted by",
|
|
7
|
+
Home: "Homepage",
|
|
8
|
+
Podcasts: "Episodes",
|
|
9
|
+
Emissions: "Series",
|
|
10
|
+
Productors: "Producers",
|
|
11
|
+
Productor: "Producer",
|
|
12
|
+
Speakers: "Speakers",
|
|
13
|
+
Guests: "Guests",
|
|
14
|
+
Favorites: "Favorites",
|
|
15
|
+
Distributor: "Distributor",
|
|
16
|
+
Image: "Image",
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Error:
|
|
28
|
-
Upload:
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
Emission:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
18
|
+
"See my statistics": "Audience Report",
|
|
19
|
+
"Edit / Delete episodes": "My episodes",
|
|
20
|
+
"Welcome in the Backoffice": "Administration",
|
|
21
|
+
"Please set an animator": "Please select or create a facilitator.",
|
|
22
|
+
"Term of use": "Terms of use",
|
|
23
|
+
"Producted by : ": "Produced by : ",
|
|
24
|
+
"Loading podcasts ...": "Loading podcasts ...",
|
|
25
|
+
"Logo of main page": "Main page logo",
|
|
26
|
+
"All podcasts": "All podcasts",
|
|
27
|
+
Error: "Error",
|
|
28
|
+
Upload: "Upload",
|
|
29
|
+
"Count more elements matched your query, please make a more specific search.":
|
|
30
|
+
"There are still {count} item (s) matching your search. Please do a more specific search.",
|
|
31
|
+
"Animator image": "Host image",
|
|
32
|
+
Emission: "Serie",
|
|
33
|
+
"Emission description": "Serie description",
|
|
34
|
+
"Emission image": "Serie image",
|
|
35
|
+
"Emission name": "Serie title",
|
|
36
|
+
"No elements found. Consider changing the search query.":
|
|
37
|
+
"No elements found. Consider changing the search query.",
|
|
38
|
+
"Podcast is not visible for listeners":
|
|
39
39
|
"Podcast is not visible for listeners",
|
|
40
|
-
Validate:
|
|
41
|
-
Cancel:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
Episode:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
Copy:
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
40
|
+
Validate: "Validate",
|
|
41
|
+
Cancel: "Cancel",
|
|
42
|
+
"Most popular": "Most popular",
|
|
43
|
+
"Last added": "Last added",
|
|
44
|
+
"All podcast button": 'All the podcasts from "{name}"',
|
|
45
|
+
"Podcast search": "Search in the podcasts",
|
|
46
|
+
"No podcast match your query": "No podcast matches your query",
|
|
47
|
+
"Please type at least three characters":
|
|
48
|
+
"Please type at least three characters",
|
|
49
|
+
"My space": "Administration",
|
|
50
|
+
"All participants": "All speakers",
|
|
51
|
+
"All productors": "All producers",
|
|
52
|
+
"All emissions": "All series",
|
|
53
|
+
"Filter by keyword : ": "Filter by keyword : ",
|
|
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
|
+
"Type string to filter by organisation": "Filter by organization",
|
|
59
|
+
"Type string to filter by emission": "Filter by series",
|
|
60
|
+
"Type string to filter by podcast": "Filter by podcast",
|
|
61
|
+
"No organisation filter": "No organization filter",
|
|
62
|
+
"No emission filter": "No series filter",
|
|
63
|
+
"No podcast filter": "No podcast filter",
|
|
64
|
+
"Loading participants ...": "Loading speakers...",
|
|
65
|
+
"Loading productors ...": "Loading Producers...",
|
|
66
|
+
"Loading emissions ...": "Loading series...",
|
|
67
|
+
"Emission name image": "Image for the series {name}",
|
|
68
|
+
"Loading content ...": "Loading content...",
|
|
69
|
+
Episode: "Episode",
|
|
70
|
+
"Episode name image": "Episode {name} image",
|
|
71
|
+
"More episodes of this emission": "More episodes from this series",
|
|
72
|
+
"More episodes of this category : {name}":
|
|
73
|
+
"More episodes from this category : {name}",
|
|
74
|
+
"All podcast emission button": "All podcasts from this series",
|
|
75
|
+
Duration: "Duration : {duration}",
|
|
76
|
+
Animator: "Host",
|
|
77
|
+
"No category filter": "No category filter",
|
|
78
|
+
"Type string to filter by categories": "Filter categories by title",
|
|
79
|
+
Search: "Search",
|
|
80
|
+
Close: "Close",
|
|
81
|
+
Embed: "Player",
|
|
82
|
+
Share: "Share this page",
|
|
83
|
+
"Share the player": "Share the player",
|
|
84
|
+
"Share player": "Share the player",
|
|
85
|
+
"Copy code": "Copy the code",
|
|
86
|
+
Copy: "Copy",
|
|
87
|
+
Show: "Show the ",
|
|
88
|
+
"Last podcasts": "Latest podcasts",
|
|
89
|
+
Contact: "Contact",
|
|
90
|
+
"List is empty": "The list is empty",
|
|
91
|
+
"Used libraries": "Libraries used",
|
|
92
|
+
Front: "Front",
|
|
93
|
+
Back: "Back",
|
|
94
|
+
"Look for library": "Look for library",
|
|
95
|
+
Yes: "Yes",
|
|
96
|
+
No: "No",
|
|
97
|
+
"This episode is not available for (re)listening":
|
|
98
|
+
"This episode is not available for (re)listening",
|
|
97
99
|
"Emission doesn't exist": "Serie doesn't exist",
|
|
98
100
|
"Animator doesn't exist": "Host doesn't exist",
|
|
99
101
|
"Productor doesn't exist": "Producer doesn't exist",
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
Distribute:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
Downloading:
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
Sort:
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
'More episodes': 'More episodes',
|
|
183
|
-
Stop: 'Stop',
|
|
184
|
-
'Share this page without edit and share blocks':
|
|
102
|
+
"Create an account": "Create an account",
|
|
103
|
+
"Link in clipboard": "Link copied in clipboard",
|
|
104
|
+
"Data in clipboard": "Data in clipboard",
|
|
105
|
+
"check this box if you want to keep this filter for the rest of your visit":
|
|
106
|
+
"Check this box if you want to keep this filter for the rest of your visit",
|
|
107
|
+
"No advertising": "No advertising",
|
|
108
|
+
"You cannot insert advertising":
|
|
109
|
+
"You cannot insert advertising for this podcast",
|
|
110
|
+
"Prohibited advertising": "Advertising Prohibited",
|
|
111
|
+
"Authorized advertising": "Advertising Authorized",
|
|
112
|
+
Distribute: "Distribute",
|
|
113
|
+
"Rss feed:": "RSS Feed:",
|
|
114
|
+
"See more": "See more",
|
|
115
|
+
"Search results": 'Search results for "{query}"',
|
|
116
|
+
"Search - no results": 'Search - no results for "{query}"',
|
|
117
|
+
Downloading: "Downloading",
|
|
118
|
+
"Subscribe to this emission": "Subscribe to this series",
|
|
119
|
+
"Subscribe to this participant": "Subscribe to this speakers",
|
|
120
|
+
"Subscribe to this RSS feed": "Subscribe to this RSS feed",
|
|
121
|
+
"Emission have not podcasts": "This series does not have any podcasts",
|
|
122
|
+
"Participant have not podcasts": "Speaker is not associated to any podcasts",
|
|
123
|
+
"Default version": "Default version",
|
|
124
|
+
"Large version": "Large version",
|
|
125
|
+
"Emission version": "Serie version",
|
|
126
|
+
"Large emission version": "Large series version",
|
|
127
|
+
"Large suggestion version": "Large suggestion version",
|
|
128
|
+
"Embed link": "Embed miniplayer",
|
|
129
|
+
"Embedly link": "Player link",
|
|
130
|
+
"Direct link": "Audio link",
|
|
131
|
+
"Advanced filters": "Advanced filters",
|
|
132
|
+
Advertising: "Advertising",
|
|
133
|
+
"By topic": "By topic",
|
|
134
|
+
"By rubric": "By rubric",
|
|
135
|
+
"Type string to filter by rubrics": "Filter by rubrics",
|
|
136
|
+
"No rubric filter": "No rubric filter",
|
|
137
|
+
"From the :": "From the :",
|
|
138
|
+
"To the :": "To the :",
|
|
139
|
+
Visible: "Visible",
|
|
140
|
+
"In creation": "Processing",
|
|
141
|
+
"Publish in future": "See the episodes hidden from the audience",
|
|
142
|
+
"In error": "In error",
|
|
143
|
+
"Emission with episode published :": "Serie with episode published since :",
|
|
144
|
+
Sort: "Sorted",
|
|
145
|
+
Filter: "Filter",
|
|
146
|
+
"Sort score": "Sorted by relevancy score",
|
|
147
|
+
"Sort name": "Sorted title",
|
|
148
|
+
"Sort last": "Sorted last",
|
|
149
|
+
"Choose color": "Choose color",
|
|
150
|
+
"Choose theme": "Choose theme",
|
|
151
|
+
"Podcast no visible": "Podcast not visible",
|
|
152
|
+
"Display episodes": "Display episodes",
|
|
153
|
+
"Podcast published in future": "Podcast published in the future",
|
|
154
|
+
"Podcast in process": "Podcast in process",
|
|
155
|
+
"Podcast in error": "Podcast in error",
|
|
156
|
+
"See podcasts no visible": "See podcasts not visible to the audience",
|
|
157
|
+
"Number podcasts": "{nb} podcasts",
|
|
158
|
+
"Number emissions": "{nb} series",
|
|
159
|
+
"Number participants": "{nb} speakers",
|
|
160
|
+
"Number productors": "{nb} Producers",
|
|
161
|
+
"Display next": "Display the following episodes",
|
|
162
|
+
"Display previous": "Display previous episodes",
|
|
163
|
+
Play: "Play",
|
|
164
|
+
Pause: "Pause",
|
|
165
|
+
"Show description": "Show the description",
|
|
166
|
+
"Hide description": "Hide the description",
|
|
167
|
+
"open left Menu": "Open/Close Menu",
|
|
168
|
+
Participant: "Speaker",
|
|
169
|
+
"Number of player podcasts": "Number of podcasts in the player ",
|
|
170
|
+
"Proceed reading": "Continue Listening",
|
|
171
|
+
"Without topic": "Without a topic",
|
|
172
|
+
"Without rubric": "Without a rubric",
|
|
173
|
+
"Consider podcasts no visible":
|
|
174
|
+
"Consider podcasts not visible for the audience",
|
|
175
|
+
"Hosted by": "Hosted by",
|
|
176
|
+
TutoMag: "TutoMag",
|
|
177
|
+
News: "News",
|
|
178
|
+
"Known issues": "Known issues",
|
|
179
|
+
Help: "Help",
|
|
180
|
+
"Podcast play error": "An error occured while playing Podcast",
|
|
181
|
+
"More episodes": "More episodes",
|
|
182
|
+
Stop: "Stop",
|
|
183
|
+
"Share this page without edit and share blocks":
|
|
185
184
|
"Share this page without edit and share blocks",
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
'Number playlists': '{nb} playlists',
|
|
231
|
-
'Playlist have not podcasts': "Playlist does not have any podcasts",
|
|
185
|
+
"Podcast in cancelled status": "Podcast has a cancelled status",
|
|
186
|
+
"Show every episode": "Show every episode",
|
|
187
|
+
"Subscribe emission": "Subscribe to the series",
|
|
188
|
+
"Rss feed parameters": "RSS Feed settings",
|
|
189
|
+
"Not share episodes before": "Do not share episodes before",
|
|
190
|
+
"Not share episodes after": "Do not share episodes after",
|
|
191
|
+
hours: "hour(s)",
|
|
192
|
+
days: "day(s)",
|
|
193
|
+
Live: "Live",
|
|
194
|
+
"In live": "In live",
|
|
195
|
+
"Launch a new live": "Create a new live",
|
|
196
|
+
"Loading lives...": "Loading lives...",
|
|
197
|
+
"No live currently": "No lives currently available",
|
|
198
|
+
"live upcoming": "Live will start any minute",
|
|
199
|
+
"live in few time": "Live in the near future",
|
|
200
|
+
Debriefing: "Debriefing",
|
|
201
|
+
Publishing: "Publishing",
|
|
202
|
+
"select productor": "Select Producer",
|
|
203
|
+
"Share newsletter": "Share a newsletter",
|
|
204
|
+
Configuration: "Configuration",
|
|
205
|
+
"HTML Code": "HTML Code",
|
|
206
|
+
"Listen this episode": "Listen to this episode",
|
|
207
|
+
"Display emission name": "Display the series title",
|
|
208
|
+
"Display participants list": "Display the speakers list",
|
|
209
|
+
"Choose main color": "Choose the main color",
|
|
210
|
+
"Octopus is ACPM Podcast accredited": "Octopus is ACPM accredited",
|
|
211
|
+
"Live episode": "Current Live episodes",
|
|
212
|
+
"This live will start": "This live will start",
|
|
213
|
+
"In days hours minutes seconds":
|
|
214
|
+
"In {days} days {hours} hours {minutes} minutes and {seconds} seconds",
|
|
215
|
+
"Open studio": "Open studio",
|
|
216
|
+
"Episode record in live": "Episode recorded in live",
|
|
217
|
+
"In a moment": "In a moment",
|
|
218
|
+
"Next live date": "The next live will be at {date}",
|
|
219
|
+
"Not recording": "Not recorded",
|
|
220
|
+
"A live can start any moment": "A live can start any moment",
|
|
221
|
+
"Recorded in live": "Recorded in live",
|
|
222
|
+
"Podcast linked to waiting live": "Podcast linked to an awaiting live",
|
|
223
|
+
Playlists: "Playlists",
|
|
224
|
+
Playlist: "Playlist",
|
|
225
|
+
"All playlists": "All playlists",
|
|
226
|
+
"Look for playlist name": "Look for playlist by title",
|
|
227
|
+
"Number playlists": "{nb} playlists",
|
|
228
|
+
"Playlist have not podcasts": "Playlist does not have any podcasts",
|
|
232
229
|
"Playlist doesn't exist": "The playlist requested doesn't exist",
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
230
|
+
"Playlist name image": "Playlist title {name}",
|
|
231
|
+
"Create playlist": "Create playlist",
|
|
232
|
+
"Podcasts in the playlist": "All the Podcasts in the playlist",
|
|
233
|
+
"No podcasts in the playlist": "No podcasts in the playlist",
|
|
234
|
+
"Start in a while": "Starts any minute",
|
|
235
|
+
"All live emission button": "All lives in the series",
|
|
236
|
+
"player parameters": "Setting of player",
|
|
237
|
+
"Start at": "Start at",
|
|
238
|
+
"sort by score": "by relevancy score",
|
|
239
|
+
"sort by alphabetical": "sorted alphabetically",
|
|
240
|
+
"sort by date": "sorted by date",
|
|
241
|
+
"Be the first to react": "Be the first to react",
|
|
245
242
|
"Podcast's comments": "Podcast's comments",
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
243
|
+
"()": "({nb})",
|
|
244
|
+
"Write a comment": "Write a comment",
|
|
245
|
+
"Answer a comment": "Respond to the comment",
|
|
246
|
+
"See more comments": "See more comments",
|
|
247
|
+
"To answer": "To answer",
|
|
248
|
+
"Display answers": "Display the {nb} answers",
|
|
249
|
+
"Hide answers": "Hide answers",
|
|
250
|
+
"Read more": "Read more",
|
|
251
|
+
"Read less": "Hide",
|
|
252
|
+
"(nb valid comment answers)": "({nb} valide comment answers)",
|
|
253
|
+
"Welcome, thanks for your comment": "Welcome, thanks for your comment",
|
|
257
254
|
"Let's get acquainted :": "Let's get acquainted :",
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
255
|
+
"Your name": "Your name",
|
|
256
|
+
"Send in progress": "Send in progress...",
|
|
257
|
+
"Error occurs while post your comment...":
|
|
261
258
|
"An error occured while posting your comment",
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
259
|
+
"Comments loading error": "An error occured while loading the Comments",
|
|
260
|
+
"Certified account": "Certified account",
|
|
261
|
+
"No comments": "No comments",
|
|
262
|
+
"In response to": "In response to",
|
|
263
|
+
"Please chose a productor": "Please chose a Producer",
|
|
264
|
+
"Podcast in ERROR, please contact Saooti":
|
|
268
265
|
"An error occured while processing this Podcast, please contact Saooti.",
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
'The Google Recaptcha does not think you are a human',
|
|
276
|
-
'Recaptcha not active': 'The captcha google is deactivated',
|
|
277
|
-
'Comment waiting':
|
|
266
|
+
"Podcast still available": "Podcast available for the audience",
|
|
267
|
+
"Podcasts still available": "Keep hidden episodes available to listeners",
|
|
268
|
+
"Podcast image": "Podcast image",
|
|
269
|
+
"Recaptcha error": "The Google Recaptcha does not think you are a human",
|
|
270
|
+
"Recaptcha not active": "The captcha google is deactivated",
|
|
271
|
+
"Comment waiting":
|
|
278
272
|
"The comment will not be visible to other users until it has been validated",
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
"Display associated article":"Display associated article",
|
|
287
|
-
"Copy this page URL":"Copy link",
|
|
288
|
-
"Custom version":"Custom version",
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
"Add a sort criterion by topic":"Add a sort criterion by topic",
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
"Download started":
|
|
295
|
-
|
|
296
|
-
"User menu":"User menu",
|
|
297
|
-
|
|
298
|
-
"You do not have the right to access this page":
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"Go to
|
|
310
|
-
"Go to
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
"
|
|
316
|
-
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
|
|
273
|
+
"Display all podcasts to validate": "Display all podcasts to validate",
|
|
274
|
+
"Display my podcasts to validate": "Display my podcasts to validate",
|
|
275
|
+
"Podcast not validated": "Podcast not validated",
|
|
276
|
+
"Podcast to validate": "Podcast to validate",
|
|
277
|
+
"Change locale": "Change the language",
|
|
278
|
+
Refresh: "Refresh",
|
|
279
|
+
"See associated article": "Read the article",
|
|
280
|
+
"Display associated article": "Display associated article",
|
|
281
|
+
"Copy this page URL": "Copy link",
|
|
282
|
+
"Custom version": "Custom version",
|
|
283
|
+
All: "All",
|
|
284
|
+
"By category": "By IAB category",
|
|
285
|
+
"Add a sort criterion by topic": "Add a sort criterion by topic",
|
|
286
|
+
"Share QR Code": "Share QR Code",
|
|
287
|
+
Download: "Download",
|
|
288
|
+
"Download started": "Download started",
|
|
289
|
+
"From RSS": "From an RSS feed",
|
|
290
|
+
"User menu": "User menu",
|
|
291
|
+
"Podcast tags": "Podcast tags",
|
|
292
|
+
"You do not have the right to access this page":
|
|
293
|
+
"You do not have the right to access this page",
|
|
294
|
+
Enlarge: "Enlarge",
|
|
295
|
+
Reduce: "Reduce",
|
|
296
|
+
"Use organization color": "Use organization color",
|
|
297
|
+
Oops: "Oups",
|
|
298
|
+
"The page you are looking for cannot be found":
|
|
299
|
+
"The page you are looking for cannot be found",
|
|
300
|
+
"Back to home": "Back to home",
|
|
301
|
+
"Items per page :": "Items per page :",
|
|
302
|
+
"Showing items number": "Page {page} of {totalPage}",
|
|
303
|
+
"Go to first page": "Go to first page",
|
|
304
|
+
"Go to last page": "Go to last page",
|
|
305
|
+
"Go to next page": "Go to next page",
|
|
306
|
+
"Go to previous page": "Go to previous page",
|
|
307
|
+
Warning: "Warning",
|
|
308
|
+
Visual: "Visual of {name}",
|
|
309
|
+
"If the transcript is available, show it":
|
|
310
|
+
"If the transcript is available, show it",
|
|
311
|
+
"Photo credits": "Photo credits",
|
|
312
|
+
"Audio credits": "Audio credits",
|
|
313
|
+
"View transcript": "View transcript",
|
|
314
|
+
"Suggested listening": "Suggested listening",
|
|
315
|
+
More: "More",
|
|
316
|
+
"Social networks": "Social networks",
|
|
317
|
+
Newsletter: "Newsletter",
|
|
318
|
+
"QR Code": "QR Code",
|
|
322
319
|
"Rss feed": "Rss feed",
|
|
323
|
-
"Multiselect max options":
|
|
324
|
-
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
"
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
"
|
|
336
|
-
|
|
337
|
-
|
|
320
|
+
"Multiselect max options":
|
|
321
|
+
"Maximum of {max} concurrent options. Please first remove an option to be able to select a new one",
|
|
322
|
+
"Mix of episodes": "Mix of episodes",
|
|
323
|
+
"Radio & Live": "Radio & Live",
|
|
324
|
+
"Selection by status": "Selection by status",
|
|
325
|
+
"All lives": "All lives",
|
|
326
|
+
"In debriefing": "In debriefing",
|
|
327
|
+
"In the process of being published": "In the process of being published",
|
|
328
|
+
Radio: "Radio",
|
|
329
|
+
Currently: "Currently",
|
|
330
|
+
Program: "Program",
|
|
331
|
+
"No programming": "No programming",
|
|
332
|
+
"Canal name image": "Channel image {name}",
|
|
333
|
+
"Show animated wave": "Show animated wave",
|
|
334
|
+
"Characters number calculated over HTML code":
|
|
335
|
+
'The number of characters is calculated from the HTML code generated by this editor. You can see this code using the "html" button.',
|
|
336
|
+
Previously: "Previously",
|
|
338
337
|
};
|