@saooti/octopus-sdk 1.0.0 → 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 +261 -0
- package/index.d.ts +4 -0
- package/index.ts +55 -3
- package/package.json +53 -45
- 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 +186 -1224
- package/public/img/403.jpeg +0 -0
- package/public/img/404.svg +242 -0
- package/public/img/ACPM.png +0 -0
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +102 -31
- package/src/api/classicCrud.ts +34 -0
- package/src/api/initialize.ts +5 -2
- package/src/assets/bootstrap-diff.scss +197 -0
- package/src/assets/form.scss +77 -77
- package/src/assets/general.scss +284 -272
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +43 -50
- package/src/assets/multiselect.scss +522 -573
- package/src/assets/octopus-library.scss +18 -4
- package/src/assets/share.scss +243 -0
- package/src/assets/transition.scss +98 -2
- package/src/components/display/aggregator/RssSection.vue +3 -5
- package/src/components/display/categories/CategoryChooser.vue +151 -114
- package/src/components/display/categories/CategoryFilter.vue +162 -0
- package/src/components/display/categories/CategoryList.vue +149 -117
- package/src/components/display/comments/AddCommentModal.vue +103 -108
- package/src/components/display/comments/CommentBasicView.vue +95 -0
- package/src/components/display/comments/CommentInput.vue +195 -183
- package/src/components/display/comments/CommentItem.vue +170 -208
- package/src/components/display/comments/CommentList.vue +134 -228
- package/src/components/display/comments/CommentParentInfo.vue +28 -62
- package/src/components/display/comments/CommentPlayer.vue +53 -56
- package/src/components/display/comments/CommentSection.vue +52 -83
- package/src/components/display/edit/EditBox.vue +10 -4
- package/src/components/display/edit/EditCommentBox.vue +124 -38
- package/src/components/display/emission/EmissionChooser.vue +88 -108
- package/src/components/display/emission/EmissionInlineList.vue +156 -157
- package/src/components/display/emission/EmissionItem.vue +72 -226
- package/src/components/display/emission/EmissionList.vue +159 -201
- package/src/components/display/emission/EmissionPlayerItem.vue +203 -174
- package/src/components/display/filter/AdvancedSearch.vue +224 -432
- package/src/components/display/filter/CategoryFilter.vue +105 -0
- package/src/components/display/filter/MonetizableFilter.vue +18 -15
- package/src/components/display/filter/ProductorSearch.vue +153 -176
- package/src/components/display/filter/RubriqueChoice.vue +97 -0
- package/src/components/display/filter/RubriqueFilter.vue +232 -0
- 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 +31 -30
- package/src/components/display/live/LiveHorizontalList.vue +84 -62
- package/src/components/display/live/LiveItem.vue +161 -186
- package/src/components/display/live/LiveList.vue +184 -295
- package/src/components/display/organisation/OrganisationChooser.vue +124 -162
- package/src/components/display/organisation/OrganisationChooserLight.vue +53 -56
- package/src/components/display/participant/ParticipantItem.vue +91 -128
- package/src/components/display/participant/ParticipantList.vue +134 -121
- package/src/components/display/playlist/PlaylistItem.vue +60 -97
- package/src/components/display/playlist/PlaylistList.vue +99 -92
- package/src/components/display/playlist/PodcastList.vue +117 -132
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +29 -37
- package/src/components/display/podcasts/ParticipantDescription.vue +82 -0
- package/src/components/display/podcasts/PodcastFilterList.vue +49 -102
- package/src/components/display/podcasts/PodcastImage.vue +208 -225
- package/src/components/display/podcasts/PodcastInlineList.vue +62 -355
- 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 +94 -218
- package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
- package/src/components/display/podcasts/PodcastList.vue +127 -178
- 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 -38
- package/src/components/display/rubriques/RubriqueChooser.vue +144 -131
- package/src/components/display/rubriques/RubriqueList.vue +216 -0
- package/src/components/display/sharing/PlayerParameters.vue +111 -153
- package/src/components/display/sharing/QrCode.vue +96 -0
- package/src/components/display/sharing/ShareButtons.vue +63 -233
- package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
- package/src/components/display/sharing/ShareDistribution.vue +102 -166
- package/src/components/display/sharing/SharePlayer.vue +189 -353
- 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 +65 -118
- package/src/components/display/studio/RecordingItemButton.vue +3 -5
- 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 -18
- package/src/components/misc/Footer.vue +151 -108
- package/src/components/misc/HomeDropdown.vue +95 -154
- package/src/components/misc/LeftMenu.vue +137 -206
- package/src/components/misc/Popover.vue +118 -0
- package/src/components/misc/Snackbar.vue +73 -37
- package/src/components/misc/TopBar.vue +211 -314
- package/src/components/misc/modal/ClipboardModal.vue +34 -47
- package/src/components/misc/modal/MessageModal.vue +74 -53
- package/src/components/misc/modal/NewsletterModal.vue +272 -224
- package/src/components/misc/modal/QrCodeModal.vue +58 -0
- package/src/components/misc/modal/ShareModalPlayer.vue +140 -74
- 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 +21 -18
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/mixins/init.ts +24 -0
- package/src/components/mixins/orgaComputed.ts +15 -0
- package/src/components/mixins/organisationFilter.ts +41 -0
- 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 +24 -28
- package/src/components/pages/Emission.vue +144 -177
- package/src/components/pages/Emissions.vue +94 -110
- package/src/components/pages/Error403Page.vue +60 -0
- package/src/components/pages/Home.vue +74 -21
- package/src/components/pages/Lives.vue +53 -58
- package/src/components/pages/PageNotFound.vue +55 -0
- package/src/components/pages/Participant.vue +113 -129
- package/src/components/pages/Participants.vue +25 -41
- package/src/components/pages/Playlist.vue +86 -86
- package/src/components/pages/Playlists.vue +33 -52
- package/src/components/pages/Podcast.vue +206 -478
- package/src/components/pages/Podcasts.vue +112 -156
- package/src/components/pages/Rubrique.vue +21 -27
- package/src/components/pages/Search.vue +37 -94
- package/src/helper/dom.ts +2 -2
- package/src/helper/duration.ts +18 -8
- 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 +14 -0
- package/src/locale/en.ts +316 -1
- package/src/locale/es.ts +309 -0
- package/src/locale/fr.ts +47 -15
- package/src/locale/it.ts +307 -0
- package/src/locale/messages.ts +11 -2
- package/src/locale/sl.ts +309 -0
- package/src/main.ts +64 -55
- package/src/router/router.ts +192 -159
- package/src/sass/_variables.scss +10 -8
- package/src/shims-tsx.d.ts +15 -0
- package/src/shims-vue-recaptcha-v3.d.ts +9 -0
- package/src/shims-vue.d.ts +5 -6
- package/src/store/AppStore.ts +41 -173
- 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/general/player.ts +14 -0
- 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 +222 -217
- package/src/store/typeAppStore.ts +186 -235
- package/src/vuex-shim.d.ts +8 -0
- package/tsconfig.json +4 -0
- package/vue.config.js +16 -0
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -829
- 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/ACPM.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 -1
- 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 -291
- 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 -792
- package/src/shims-vuex.d.ts +0 -7
- package/src/views/Home.vue +0 -18
package/src/locale/en.ts
CHANGED
|
@@ -1 +1,316 @@
|
|
|
1
|
-
export default
|
|
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
|
+
|
|
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
|
+
"Podcast is not visible for listeners",
|
|
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':
|
|
47
|
+
'No podcast matches your query',
|
|
48
|
+
'Please type at least three characters': '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}': "More episodes from this category : {name}",
|
|
73
|
+
'All podcast emission button': "All podcasts from this series",
|
|
74
|
+
Duration: 'Duration : {duration}',
|
|
75
|
+
Animator: 'Host',
|
|
76
|
+
'No category filter': 'No category filter',
|
|
77
|
+
'Type string to filter by categories': 'Filter categories by title',
|
|
78
|
+
Search: 'Search',
|
|
79
|
+
Close: 'Close',
|
|
80
|
+
Embed: 'Player',
|
|
81
|
+
Share: 'Share this page',
|
|
82
|
+
'Share the player': 'Share the player',
|
|
83
|
+
'Share player': 'Share the player',
|
|
84
|
+
'Copy code': 'Copy the code',
|
|
85
|
+
Copy: 'Copy',
|
|
86
|
+
Show: 'Show the ',
|
|
87
|
+
'Last podcasts': 'Latest podcasts',
|
|
88
|
+
Contact: 'Contact',
|
|
89
|
+
'List is empty': 'The list is empty',
|
|
90
|
+
'Used libraries': 'Libraries used',
|
|
91
|
+
Front: 'Front',
|
|
92
|
+
Back: 'Back',
|
|
93
|
+
'Look for library': 'Look for library',
|
|
94
|
+
Yes: 'Yes',
|
|
95
|
+
No: 'No',
|
|
96
|
+
"Podcast doesn't exist": "Podcast doesn't exist",
|
|
97
|
+
"Emission doesn't exist": "Serie doesn't exist",
|
|
98
|
+
"Animator doesn't exist": "Host doesn't exist",
|
|
99
|
+
"Productor doesn't exist": "Producer doesn't exist",
|
|
100
|
+
'Create an account': 'Create an account',
|
|
101
|
+
'Link in clipboard': 'Link copied in clipboard',
|
|
102
|
+
'Data in clipboard': 'Data in clipboard',
|
|
103
|
+
'check this box if you want to keep this filter for the rest of your visit':
|
|
104
|
+
'Check this box if you want to keep this filter for the rest of your visit',
|
|
105
|
+
'No advertising': 'No advertising',
|
|
106
|
+
'You cannot insert advertising':
|
|
107
|
+
'You cannot insert advertising for this podcast',
|
|
108
|
+
'Prohibited advertising': 'Advertising Prohibited',
|
|
109
|
+
'Authorized advertising': 'Advertising Authorized',
|
|
110
|
+
Distribute: 'Distribute',
|
|
111
|
+
'Rss feed:': 'RSS Feed:',
|
|
112
|
+
'See more': 'See more',
|
|
113
|
+
'Search results': 'Search results for "{query}"',
|
|
114
|
+
'Search - no results': 'Search - no results for "{query}"',
|
|
115
|
+
Downloading: 'Downloading',
|
|
116
|
+
'Subscribe to this emission': "Subscribe to this series",
|
|
117
|
+
'Subscribe to this participant': "Subscribe to this speakers",
|
|
118
|
+
'Subscribe to this RSS feed': "Subscribe to this RSS feed",
|
|
119
|
+
'Emission have not podcasts': "This series does not have any podcasts",
|
|
120
|
+
'Participant have not podcasts':
|
|
121
|
+
'Speaker is not associated to any podcasts',
|
|
122
|
+
'Default version': 'Default version',
|
|
123
|
+
'Large version': 'Large version',
|
|
124
|
+
'Emission version': 'Serie version',
|
|
125
|
+
'Large emission version': 'Large series version',
|
|
126
|
+
'Large suggestion version': 'Large suggestion version',
|
|
127
|
+
'Embed link': 'Embed miniplayer',
|
|
128
|
+
'Embedly link': 'Player link',
|
|
129
|
+
'Direct link': 'Audio link',
|
|
130
|
+
'Advanced filters': 'Advanced filters',
|
|
131
|
+
Advertising: 'Advertising',
|
|
132
|
+
'By topic': 'By topic',
|
|
133
|
+
'By rubric': 'By rubric',
|
|
134
|
+
'Type string to filter by rubrics': 'Filter by rubrics',
|
|
135
|
+
'No rubric filter': 'No rubric filter',
|
|
136
|
+
'From the :': 'From the :',
|
|
137
|
+
'To the :': "To the :",
|
|
138
|
+
Visible: 'Visible',
|
|
139
|
+
'In creation': 'Processing',
|
|
140
|
+
'Publish in future': 'See the episodes hidden from the audience',
|
|
141
|
+
'In error': 'In error',
|
|
142
|
+
'Emission with episode published :':
|
|
143
|
+
'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':
|
|
157
|
+
'See podcasts not visible to the audience',
|
|
158
|
+
'Number podcasts': '{nb} podcasts',
|
|
159
|
+
'Number emissions': '{nb} series',
|
|
160
|
+
'Number participants': '{nb} speakers',
|
|
161
|
+
'Number productors': '{nb} Producers',
|
|
162
|
+
'Display next': 'Display the following episodes',
|
|
163
|
+
'Display previous': 'Display previous episodes',
|
|
164
|
+
Play: 'Play',
|
|
165
|
+
Pause: 'Pause',
|
|
166
|
+
'Show description': 'Show the description',
|
|
167
|
+
'Hide description': 'Hide the description',
|
|
168
|
+
'open left Menu': 'Open/Close Menu',
|
|
169
|
+
Participant: 'Speaker',
|
|
170
|
+
'Number of player podcasts': "Number of podcasts in the player ",
|
|
171
|
+
'Proceed reading': 'Continue Listening',
|
|
172
|
+
'Without topic': 'Without a topic',
|
|
173
|
+
'Without rubric': 'Without a rubric',
|
|
174
|
+
'Consider podcasts no visible':
|
|
175
|
+
'Consider podcasts not visible for the audience',
|
|
176
|
+
'Hosted by': 'Hosted by',
|
|
177
|
+
TutoMag: 'TutoMag',
|
|
178
|
+
News: 'News',
|
|
179
|
+
'Known issues': 'Known issues',
|
|
180
|
+
Help: 'Help',
|
|
181
|
+
'Podcast play error': 'An error occured while playing Podcast',
|
|
182
|
+
'More episodes': 'More episodes',
|
|
183
|
+
Stop: 'Stop',
|
|
184
|
+
'Share this page without edit and share blocks':
|
|
185
|
+
"Share this page without edit and share blocks",
|
|
186
|
+
'Podcast in cancelled status': 'Podcast has a cancelled status',
|
|
187
|
+
'Show every episode': 'Show every episode',
|
|
188
|
+
'Subscribe emission': "Subscribe to the series",
|
|
189
|
+
'Rss feed parameters': 'RSS Feed settings',
|
|
190
|
+
'Not share episodes before':
|
|
191
|
+
'Do not share episodes before',
|
|
192
|
+
'Not share episodes after':
|
|
193
|
+
'Do not share episodes after',
|
|
194
|
+
hours: 'hour(s)',
|
|
195
|
+
days: 'day(s)',
|
|
196
|
+
Live: 'Live',
|
|
197
|
+
'In live': 'In live',
|
|
198
|
+
'Launch a new live': 'Create a new live',
|
|
199
|
+
'Loading lives...': 'Loading lives...',
|
|
200
|
+
'No live currently': "No lives currently available",
|
|
201
|
+
'live upcoming': 'live will start any minute',
|
|
202
|
+
"live in few time":"live in the near future",
|
|
203
|
+
Debriefing: 'Debriefing',
|
|
204
|
+
Publishing: 'Publishing',
|
|
205
|
+
'select productor': 'Select Producer',
|
|
206
|
+
'Share newsletter': "Share a newsletter",
|
|
207
|
+
Configuration: 'Configuration',
|
|
208
|
+
'HTML Code': 'HTML Code',
|
|
209
|
+
'Listen this episode': 'Listen to this episode',
|
|
210
|
+
'Display emission name': "Display the series title",
|
|
211
|
+
'Display participants list': 'Display the speakers list',
|
|
212
|
+
'Choose main color': 'Choose the main color',
|
|
213
|
+
'Octopus is ACPM Podcast accredited': 'Octopus is ACPM accredited',
|
|
214
|
+
'Live episode': 'Current Live episodes',
|
|
215
|
+
'This live will start': 'This live will start',
|
|
216
|
+
'In days hours minutes seconds':
|
|
217
|
+
'In {days} days {hours} hours {minutes} minutes and {seconds} seconds',
|
|
218
|
+
'Open studio': 'Open studio',
|
|
219
|
+
'Episode record in live': 'Episode recorded in live',
|
|
220
|
+
'In a moment': 'In a moment',
|
|
221
|
+
'Live to be': 'Coming soon',
|
|
222
|
+
'Live terminated': 'Live terminated',
|
|
223
|
+
'Next live date': 'The next live will be at {date}',
|
|
224
|
+
'Not recording': 'Not recorded',
|
|
225
|
+
'This live is not started yet': "This live has not started yet",
|
|
226
|
+
'A live can start any moment': 'A live can start any moment',
|
|
227
|
+
'Recorded in live': 'Recorded in live',
|
|
228
|
+
'Podcast linked to waiting live': 'Podcast linked to an awaiting live',
|
|
229
|
+
Playlists: 'Playlists',
|
|
230
|
+
Playlist: 'Playlist',
|
|
231
|
+
'All playlists': 'All playlists',
|
|
232
|
+
'Look for playlist name': 'Look for playlist by title',
|
|
233
|
+
'Number playlists': '{nb} playlists',
|
|
234
|
+
'Playlist have not podcasts': "Playlist does not have any podcasts",
|
|
235
|
+
"Playlist doesn't exist": "The playlist requested doesn't exist",
|
|
236
|
+
'Playlist name image': 'Playlist title {name}',
|
|
237
|
+
'Create playlist': 'Create playlist',
|
|
238
|
+
'Podcasts in the playlist': 'All the Podcasts in the playlist',
|
|
239
|
+
'No podcasts in the playlist': "No podcasts in the playlist",
|
|
240
|
+
'Start in a while': 'Starts any minute',
|
|
241
|
+
'All live emission button': "All lives in the series",
|
|
242
|
+
'player parameters': 'Setting of player',
|
|
243
|
+
'Start at': 'Start at',
|
|
244
|
+
'sort by score': 'by relevancy score',
|
|
245
|
+
'sort by alphabetical': 'sorted alphabetically',
|
|
246
|
+
'sort by date': 'sorted by date',
|
|
247
|
+
'Be the first to react': 'Be the first to react',
|
|
248
|
+
"Podcast's comments": "Podcast's comments",
|
|
249
|
+
'()': '({nb})',
|
|
250
|
+
'Write a comment': 'Write a comment',
|
|
251
|
+
'Answer a comment': 'Respond to the comment',
|
|
252
|
+
'See more comments': 'See more comments',
|
|
253
|
+
'To answer': 'To answer',
|
|
254
|
+
'Display answers': 'Display the {nb} answers',
|
|
255
|
+
'Hide answers': 'Hide answers',
|
|
256
|
+
'Read more': 'Read more',
|
|
257
|
+
'Read less': 'Hide',
|
|
258
|
+
'(nb valid comment answers)': '({nb} valide comment answers)',
|
|
259
|
+
'Welcome, thanks for your comment': 'Welcome, thanks for your comment',
|
|
260
|
+
"Let's get acquainted :": "Let's get acquainted :",
|
|
261
|
+
'Your name': 'Your name',
|
|
262
|
+
'Send in progress': 'Send in progress...',
|
|
263
|
+
'Error occurs while post your comment...':
|
|
264
|
+
"An error occured while posting your comment",
|
|
265
|
+
'Comments loading error': 'An error occured while loading the Comments',
|
|
266
|
+
'Certified account': 'Certified account',
|
|
267
|
+
'No comments': 'No comments',
|
|
268
|
+
'In response to': 'In response to',
|
|
269
|
+
'Please chose a productor': 'Please chose a Producer',
|
|
270
|
+
'Podcast in ERROR, please contact Saooti':
|
|
271
|
+
"An error occured while processing this Podcast, please contact Saooti.",
|
|
272
|
+
'Podcast still available':
|
|
273
|
+
"Podcast available for the audience",
|
|
274
|
+
'Podcasts still available':
|
|
275
|
+
'Keep hidden episodes available to listeners',
|
|
276
|
+
'Podcast image': "Podcast image",
|
|
277
|
+
'Recaptcha error':
|
|
278
|
+
'The Google Recaptcha does not think you are a human',
|
|
279
|
+
'Recaptcha not active': 'The captcha google is deactivated',
|
|
280
|
+
'Comment waiting':
|
|
281
|
+
"The comment will not be visible to other users until it has been validated",
|
|
282
|
+
'Display all podcasts to validate': 'Display all podcasts to validate',
|
|
283
|
+
'Display my podcasts to validate': 'Display my podcasts to validate',
|
|
284
|
+
'Podcast not validated': "Podcast not validated",
|
|
285
|
+
'Podcast to validate': 'Podcast to validate',
|
|
286
|
+
'Change locale': 'Change the language',
|
|
287
|
+
'Refresh': 'Refresh',
|
|
288
|
+
'See associated article':"Read the article",
|
|
289
|
+
"Display associated article":"Display associated article",
|
|
290
|
+
"Copy this page URL":"Copy this page URL",
|
|
291
|
+
"Custom version":"Custom version",
|
|
292
|
+
"All":"All",
|
|
293
|
+
'By category': 'By IAB category',
|
|
294
|
+
"Add a sort criterion by topic":"Add a sort criterion by topic",
|
|
295
|
+
'Share QR Code': "Share QR Code",
|
|
296
|
+
"Download":"Download",
|
|
297
|
+
"Download started": 'Download started',
|
|
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}",
|
|
316
|
+
};
|
package/src/locale/es.ts
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
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 emission 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
|
+
'Subscribe to this RSS feed': "Suscríbete a esta fuente RSS",
|
|
119
|
+
'Emission have not podcasts': "No hay pódcast para este programa",
|
|
120
|
+
'Participant have not podcasts':
|
|
121
|
+
'No hay pódcast para este participante',
|
|
122
|
+
'Default version': 'Versión por defecto',
|
|
123
|
+
'Large version': 'Versión ampliada',
|
|
124
|
+
'Emission version': 'Versión de programa',
|
|
125
|
+
'Large emission version': 'Versión de programa ampliada',
|
|
126
|
+
'Large suggestion version': 'Versión con sugerencias ampliada',
|
|
127
|
+
'Embed link': 'Integrar minirreproductor',
|
|
128
|
+
'Embedly link': 'Enlace al reproductor',
|
|
129
|
+
'Direct link': 'Enlace de audio',
|
|
130
|
+
'Advanced filters': 'Filtros avanzados',
|
|
131
|
+
Advertising: 'Publicidad',
|
|
132
|
+
'By topic': 'Por tema',
|
|
133
|
+
'By rubric': 'Por sección',
|
|
134
|
+
'Type string to filter by rubrics': 'Filtrar por sección',
|
|
135
|
+
'No rubric filter': 'Sin filtro de sección',
|
|
136
|
+
'From the :': 'De:',
|
|
137
|
+
'To the :': "A:",
|
|
138
|
+
Visible: 'Visible',
|
|
139
|
+
'In creation': 'Procesando',
|
|
140
|
+
'Publish in future': 'Ver los episodios no disponibles para el público',
|
|
141
|
+
'In error': 'Error',
|
|
142
|
+
'Emission with episode published :':
|
|
143
|
+
'Programa con episodios publicados desde:',
|
|
144
|
+
Sort: 'Clasificado',
|
|
145
|
+
Filter: 'Filtro',
|
|
146
|
+
'Sort score': 'Clasificación por pertinencia',
|
|
147
|
+
'Sort name': 'Clasificación por título',
|
|
148
|
+
'Sort last': 'Clasificación por fecha más reciente',
|
|
149
|
+
'Choose color': 'Elegir color',
|
|
150
|
+
'Choose theme': 'Elegir tema',
|
|
151
|
+
'Podcast no visible': 'Este pódcast no puede visualizarse',
|
|
152
|
+
'Display episodes': 'Mostrar episodios',
|
|
153
|
+
'Podcast published in future': 'Pódcast pendiente de publicación',
|
|
154
|
+
'Podcast in process': 'Pódcast en proceso de producción',
|
|
155
|
+
'Podcast in error': 'Error en el pódcast',
|
|
156
|
+
'See podcasts no visible':
|
|
157
|
+
'Mostrar los pódcast no disponibles para el público',
|
|
158
|
+
'Number podcasts': '{nb} de pódcast',
|
|
159
|
+
'Number emissions': '{nb} de programas',
|
|
160
|
+
'Number participants': '{nb} de participantes',
|
|
161
|
+
'Number productors': '{nb} de productores',
|
|
162
|
+
'Display next': 'Mostrar los siguientes episodios',
|
|
163
|
+
'Display previous': 'Mostrar episodios anteriores',
|
|
164
|
+
Play: 'Reproducir',
|
|
165
|
+
Pause: 'Pausa',
|
|
166
|
+
'Show description': 'Mostrar la descripción',
|
|
167
|
+
'Hide description': 'Ocultar la descripción',
|
|
168
|
+
'open left Menu': 'Abrir/Cerrar menú',
|
|
169
|
+
Participant: 'Participante',
|
|
170
|
+
'Number of player podcasts': "Número de pódcast en el reproductor",
|
|
171
|
+
'Proceed reading': 'Seguir escuchando',
|
|
172
|
+
'Without topic': 'Sin tema',
|
|
173
|
+
'Without rubric': 'Sin sección',
|
|
174
|
+
'Consider podcasts no visible':
|
|
175
|
+
'Incluir los pódcast no disponibles para el público',
|
|
176
|
+
'Hosted by': 'Presentado por',
|
|
177
|
+
TutoMag: 'TutoMag',
|
|
178
|
+
News: 'Noticias',
|
|
179
|
+
'Known issues': 'Temas conocidos',
|
|
180
|
+
Help: 'Ayuda',
|
|
181
|
+
'Podcast play error': 'Se ha producido un error al reproducir el pódcast',
|
|
182
|
+
'More episodes': 'Más episodios',
|
|
183
|
+
Stop: 'Detener',
|
|
184
|
+
'Share this page without edit and share blocks':
|
|
185
|
+
"Compartir esta página sin editar y compartir bloques",
|
|
186
|
+
'Podcast in cancelled status': 'Pódcast cancelado',
|
|
187
|
+
'Show every episode': 'Mostrar cada episodio',
|
|
188
|
+
'Subscribe emission': "Subscribir el programa",
|
|
189
|
+
'Rss feed parameters': 'Ajustes del canal RSS',
|
|
190
|
+
'Not share episodes before':
|
|
191
|
+
'No compartir episodios anteriores al',
|
|
192
|
+
'Not share episodes after':
|
|
193
|
+
'No compartir episodios a partir del',
|
|
194
|
+
hours: 'hora(s)',
|
|
195
|
+
days: 'día(s)',
|
|
196
|
+
Live: 'Directo',
|
|
197
|
+
'In live': 'Directo',
|
|
198
|
+
'Launch a new live': 'Crear un nuevo directo',
|
|
199
|
+
'Loading lives...': 'Cargar directos...',
|
|
200
|
+
'No live currently': "No hay directos disponibles actualmente",
|
|
201
|
+
'live upcoming': 'El directo comenzará en breves instantes',
|
|
202
|
+
"live in few time":"Retransmisión en directo próximamente",
|
|
203
|
+
Debriefing: 'Comentando la emisión',
|
|
204
|
+
Publishing: 'En proceso de publicación',
|
|
205
|
+
'select productor': 'Seleccionar productor',
|
|
206
|
+
'Share newsletter': "Compartir newsletter",
|
|
207
|
+
Configuration: 'Configuración',
|
|
208
|
+
'HTML Code': 'Código HTML',
|
|
209
|
+
'Listen this episode': 'Escuchar este episodio',
|
|
210
|
+
'Display emission name': "Mostrar el título del programa",
|
|
211
|
+
'Display participants list': 'Mostrar la lista de participantes',
|
|
212
|
+
'Choose main color': 'Elegir el color principal',
|
|
213
|
+
'Octopus is ACPM Podcast accredited': 'Octopus ha recibido la certificación ACPM',
|
|
214
|
+
'Live episode': 'Episodios en directo ahora',
|
|
215
|
+
'This live will start': 'La retransmisión en directo va a comenzar',
|
|
216
|
+
'In days hours minutes seconds':
|
|
217
|
+
'En {days} días {hours} horas {minutes} minutos y {seconds} segundos',
|
|
218
|
+
'Open studio': 'Estudio abierto',
|
|
219
|
+
'Episode record in live': 'Episodio grabado en directo',
|
|
220
|
+
'In a moment': 'En breves instantes',
|
|
221
|
+
'Live to be': 'Próximamente',
|
|
222
|
+
'Live terminated': 'La retransmisión en directo ha terminado',
|
|
223
|
+
'Next live date': 'El próximo directo será el {date}',
|
|
224
|
+
'Not recording': 'Grabación no disponible',
|
|
225
|
+
'This live is not started yet': "La retransmisión en directo no ha comenzado todavía",
|
|
226
|
+
'A live can start any moment': 'Una retransmisión en directo podría comenzar en breves instantes',
|
|
227
|
+
'Recorded in live': 'Grabación en directo',
|
|
228
|
+
'Podcast linked to waiting live': 'Pódcast pendiente de una próxima retransmisión en directo',
|
|
229
|
+
Playlists: 'Listas de reproducción',
|
|
230
|
+
Playlist: 'Lista de reproducción',
|
|
231
|
+
'All playlists': 'Todas las listas de reproducción',
|
|
232
|
+
'Look for playlist name': 'Buscar lista de reproducción por título',
|
|
233
|
+
'Number playlists': '{nb} listas de reproducción',
|
|
234
|
+
'Playlist have not podcasts': "Esta lista de reproducción no contiene pódcast",
|
|
235
|
+
"Playlist doesn't exist": "La lista de reproducción solicitada no existe",
|
|
236
|
+
'Playlist name image': 'Título de la lista de reproducción {name}',
|
|
237
|
+
'Create playlist': 'Crear lista de reproducción',
|
|
238
|
+
'Podcasts in the playlist': 'Todos los pódcast de la lista de reproducción',
|
|
239
|
+
'No podcasts in the playlist': "Lista de reproducción sin pódcast",
|
|
240
|
+
'Start in a while': 'Comienza en breves instantes',
|
|
241
|
+
'All live emission button': "Todos los directos del programa",
|
|
242
|
+
'player parameters': 'Configuración del reproductor',
|
|
243
|
+
'Start at': 'Hora de inicio',
|
|
244
|
+
'sort by score': 'clasificar por orden de relevancia',
|
|
245
|
+
'sort by alphabetical': 'clasificar por orden alfabético',
|
|
246
|
+
'sort by date': 'clasificar por fecha',
|
|
247
|
+
'Be the first to react': 'Sé el primero en opinar',
|
|
248
|
+
"Podcast's comments": "Comentarios sobre el pódcast",
|
|
249
|
+
'()': '({nb})',
|
|
250
|
+
'Write a comment': 'Escribir un comentario',
|
|
251
|
+
'Answer a comment': 'Contestar a un comentario',
|
|
252
|
+
'See more comments': 'Mostrar más comentarios',
|
|
253
|
+
'To answer': 'Para responder',
|
|
254
|
+
'Display answers': 'Mostrar las {nb} respuestas',
|
|
255
|
+
'Hide answers': 'Ocultar respuestas',
|
|
256
|
+
'Read more': 'Leer más',
|
|
257
|
+
'Read less': 'Ocultar',
|
|
258
|
+
'(nb valid comment answers)': '({nb} respuestas válidas a los comentarios)',
|
|
259
|
+
'Welcome, thanks for your comment': '¡Hola! Gracias por tu comentario',
|
|
260
|
+
"Let's get acquainted :": "Queremos conocerte:",
|
|
261
|
+
'Your name': 'Tu nombre',
|
|
262
|
+
'Send in progress': 'Enviando...',
|
|
263
|
+
'Error occurs while post your comment...':
|
|
264
|
+
"Se ha producido un error al publicar el comentario",
|
|
265
|
+
'Comments loading error': 'Se ha producido un error al cargar los comentarios',
|
|
266
|
+
'Certified account': 'Cuenta certificada',
|
|
267
|
+
'No comments': 'Sin comentarios',
|
|
268
|
+
'In response to': 'En respuesta a',
|
|
269
|
+
'Please chose a productor': 'Seleccionar un productor',
|
|
270
|
+
'Podcast in ERROR, please contact Saooti':
|
|
271
|
+
"Se ha producido un error al procesar este pódcast; ponte en contacto con Saooti.",
|
|
272
|
+
'Podcast still available':
|
|
273
|
+
'Pódcast disponible para el público',
|
|
274
|
+
'Podcasts still available':
|
|
275
|
+
'Dar acceso al público a los episodios ocultos',
|
|
276
|
+
'Podcast image': "Imagen del pódcast",
|
|
277
|
+
'Recaptcha error':
|
|
278
|
+
'Google Recaptcha no cree que seas una persona',
|
|
279
|
+
'Recaptcha not active': 'El Captcha de Google está desactivado',
|
|
280
|
+
'Comment waiting':
|
|
281
|
+
"Los demás usuarios podrán ver el comentario tras su validación",
|
|
282
|
+
'Display all podcasts to validate': 'Mostrar todos los pódcast pendientes de validación',
|
|
283
|
+
'Display my podcasts to validate': 'Mostrar mis pódcast pendientes de validación',
|
|
284
|
+
'Podcast not validated': "Pódcast no validado",
|
|
285
|
+
'Podcast to validate': 'Pódcast pendiente de validación',
|
|
286
|
+
'Change locale': 'Cambiar el idioma',
|
|
287
|
+
'Refresh': 'Volver a cargar',
|
|
288
|
+
'See associated article':"Leer el artículo",
|
|
289
|
+
"Display associated article":"Mostrar el artículo asociado",
|
|
290
|
+
"Copy this page URL":"Copiar la URL de esta página",
|
|
291
|
+
"Custom version":"Versión personalizada",
|
|
292
|
+
"All":"Todos",
|
|
293
|
+
'By category': 'Por categoría IAB',
|
|
294
|
+
"Add a sort criterion by topic":"Añadir un criterio de clasificación por tema",
|
|
295
|
+
'Share QR Code': "Compartir código QR",
|
|
296
|
+
"Download":"Descargar",
|
|
297
|
+
"Download started": 'Descarga iniciada',
|
|
298
|
+
'From RSS': "Desde un canal RSS",
|
|
299
|
+
"User menu":"Menú de usuario",
|
|
300
|
+
'Podcast tags': 'Etiquetas de pódcast',
|
|
301
|
+
"Enlarge":"Agrandar",
|
|
302
|
+
"Reduce":"Reducir",
|
|
303
|
+
"Use organization color":"Usar el color de la organización",
|
|
304
|
+
"Oops":"Oups",
|
|
305
|
+
"The page you are looking for cannot be found":"La página que busca no se encuentra",
|
|
306
|
+
'Back to home': 'Volver a la página de inicio',
|
|
307
|
+
"Warning":"Advertencia",
|
|
308
|
+
"Visual":"Imagen de {name}",
|
|
309
|
+
}
|