@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.
Files changed (317) hide show
  1. package/README.md +261 -0
  2. package/index.d.ts +4 -0
  3. package/index.ts +55 -3
  4. package/package.json +53 -45
  5. package/public/config.ts +4 -0
  6. package/public/css/fonts/icomoon.eot +0 -0
  7. package/public/css/fonts/icomoon.svg +129 -0
  8. package/public/css/fonts/icomoon.ttf +0 -0
  9. package/public/css/fonts/icomoon.woff +0 -0
  10. package/public/css/fonts/style.css +186 -1224
  11. package/public/img/403.jpeg +0 -0
  12. package/public/img/404.svg +242 -0
  13. package/public/img/ACPM.png +0 -0
  14. package/public/img/ouest_france_logo.svg +12 -0
  15. package/src/App.vue +102 -31
  16. package/src/api/classicCrud.ts +34 -0
  17. package/src/api/initialize.ts +5 -2
  18. package/src/assets/bootstrap-diff.scss +197 -0
  19. package/src/assets/form.scss +77 -77
  20. package/src/assets/general.scss +284 -272
  21. package/src/assets/live.scss +39 -0
  22. package/src/assets/modal.scss +43 -50
  23. package/src/assets/multiselect.scss +522 -573
  24. package/src/assets/octopus-library.scss +18 -4
  25. package/src/assets/share.scss +243 -0
  26. package/src/assets/transition.scss +98 -2
  27. package/src/components/display/aggregator/RssSection.vue +3 -5
  28. package/src/components/display/categories/CategoryChooser.vue +151 -114
  29. package/src/components/display/categories/CategoryFilter.vue +162 -0
  30. package/src/components/display/categories/CategoryList.vue +149 -117
  31. package/src/components/display/comments/AddCommentModal.vue +103 -108
  32. package/src/components/display/comments/CommentBasicView.vue +95 -0
  33. package/src/components/display/comments/CommentInput.vue +195 -183
  34. package/src/components/display/comments/CommentItem.vue +170 -208
  35. package/src/components/display/comments/CommentList.vue +134 -228
  36. package/src/components/display/comments/CommentParentInfo.vue +28 -62
  37. package/src/components/display/comments/CommentPlayer.vue +53 -56
  38. package/src/components/display/comments/CommentSection.vue +52 -83
  39. package/src/components/display/edit/EditBox.vue +10 -4
  40. package/src/components/display/edit/EditCommentBox.vue +124 -38
  41. package/src/components/display/emission/EmissionChooser.vue +88 -108
  42. package/src/components/display/emission/EmissionInlineList.vue +156 -157
  43. package/src/components/display/emission/EmissionItem.vue +72 -226
  44. package/src/components/display/emission/EmissionList.vue +159 -201
  45. package/src/components/display/emission/EmissionPlayerItem.vue +203 -174
  46. package/src/components/display/filter/AdvancedSearch.vue +224 -432
  47. package/src/components/display/filter/CategoryFilter.vue +105 -0
  48. package/src/components/display/filter/MonetizableFilter.vue +18 -15
  49. package/src/components/display/filter/ProductorSearch.vue +153 -176
  50. package/src/components/display/filter/RubriqueChoice.vue +97 -0
  51. package/src/components/display/filter/RubriqueFilter.vue +232 -0
  52. package/src/components/display/list/ListPaginate.vue +145 -0
  53. package/src/components/display/list/Paginate.vue +218 -0
  54. package/src/components/display/live/CountDown.vue +31 -30
  55. package/src/components/display/live/LiveHorizontalList.vue +84 -62
  56. package/src/components/display/live/LiveItem.vue +161 -186
  57. package/src/components/display/live/LiveList.vue +184 -295
  58. package/src/components/display/organisation/OrganisationChooser.vue +124 -162
  59. package/src/components/display/organisation/OrganisationChooserLight.vue +53 -56
  60. package/src/components/display/participant/ParticipantItem.vue +91 -128
  61. package/src/components/display/participant/ParticipantList.vue +134 -121
  62. package/src/components/display/playlist/PlaylistItem.vue +60 -97
  63. package/src/components/display/playlist/PlaylistList.vue +99 -92
  64. package/src/components/display/playlist/PodcastList.vue +117 -132
  65. package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
  66. package/src/components/display/podcasts/AnimatorsItem.vue +29 -37
  67. package/src/components/display/podcasts/ParticipantDescription.vue +82 -0
  68. package/src/components/display/podcasts/PodcastFilterList.vue +49 -102
  69. package/src/components/display/podcasts/PodcastImage.vue +208 -225
  70. package/src/components/display/podcasts/PodcastInlineList.vue +62 -355
  71. package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
  72. package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
  73. package/src/components/display/podcasts/PodcastItem.vue +94 -218
  74. package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
  75. package/src/components/display/podcasts/PodcastList.vue +127 -178
  76. package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
  77. package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
  78. package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
  79. package/src/components/display/podcasts/TagList.vue +60 -38
  80. package/src/components/display/rubriques/RubriqueChooser.vue +144 -131
  81. package/src/components/display/rubriques/RubriqueList.vue +216 -0
  82. package/src/components/display/sharing/PlayerParameters.vue +111 -153
  83. package/src/components/display/sharing/QrCode.vue +96 -0
  84. package/src/components/display/sharing/ShareButtons.vue +63 -233
  85. package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
  86. package/src/components/display/sharing/ShareDistribution.vue +102 -166
  87. package/src/components/display/sharing/SharePlayer.vue +189 -353
  88. package/src/components/display/sharing/SharePlayerColors.vue +78 -0
  89. package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
  90. package/src/components/display/sharing/SplitButton.vue +42 -0
  91. package/src/components/display/sharing/SubscribeButtons.vue +65 -118
  92. package/src/components/display/studio/RecordingItemButton.vue +3 -5
  93. package/src/components/form/ClassicCheckbox.vue +66 -0
  94. package/src/components/form/ClassicLoading.vue +28 -0
  95. package/src/components/form/ClassicRadio.vue +66 -0
  96. package/src/components/form/ClassicSearch.vue +86 -0
  97. package/src/components/form/ClassicSelect.vue +65 -0
  98. package/src/components/misc/ErrorMessage.vue +27 -18
  99. package/src/components/misc/Footer.vue +151 -108
  100. package/src/components/misc/HomeDropdown.vue +95 -154
  101. package/src/components/misc/LeftMenu.vue +137 -206
  102. package/src/components/misc/Popover.vue +118 -0
  103. package/src/components/misc/Snackbar.vue +73 -37
  104. package/src/components/misc/TopBar.vue +211 -314
  105. package/src/components/misc/modal/ClipboardModal.vue +34 -47
  106. package/src/components/misc/modal/MessageModal.vue +74 -53
  107. package/src/components/misc/modal/NewsletterModal.vue +272 -224
  108. package/src/components/misc/modal/QrCodeModal.vue +58 -0
  109. package/src/components/misc/modal/ShareModalPlayer.vue +140 -74
  110. package/src/components/misc/player/Player.vue +146 -0
  111. package/src/components/misc/player/PlayerCompact.vue +154 -0
  112. package/src/components/misc/player/PlayerLarge.vue +166 -0
  113. package/src/components/misc/player/PlayerProgressBar.vue +112 -0
  114. package/src/components/misc/player/PlayerTimeline.vue +61 -0
  115. package/src/components/mixins/functions.ts +21 -18
  116. package/src/components/mixins/handle403.ts +17 -0
  117. package/src/components/mixins/init.ts +24 -0
  118. package/src/components/mixins/orgaComputed.ts +15 -0
  119. package/src/components/mixins/organisationFilter.ts +41 -0
  120. package/src/components/mixins/player/playerComment.ts +98 -0
  121. package/src/components/mixins/player/playerDisplay.ts +113 -0
  122. package/src/components/mixins/player/playerLive.ts +111 -0
  123. package/src/components/mixins/player/playerLogic.ts +225 -0
  124. package/src/components/mixins/tagOfMixins.ts +19 -0
  125. package/src/components/pages/Category.vue +24 -28
  126. package/src/components/pages/Emission.vue +144 -177
  127. package/src/components/pages/Emissions.vue +94 -110
  128. package/src/components/pages/Error403Page.vue +60 -0
  129. package/src/components/pages/Home.vue +74 -21
  130. package/src/components/pages/Lives.vue +53 -58
  131. package/src/components/pages/PageNotFound.vue +55 -0
  132. package/src/components/pages/Participant.vue +113 -129
  133. package/src/components/pages/Participants.vue +25 -41
  134. package/src/components/pages/Playlist.vue +86 -86
  135. package/src/components/pages/Playlists.vue +33 -52
  136. package/src/components/pages/Podcast.vue +206 -478
  137. package/src/components/pages/Podcasts.vue +112 -156
  138. package/src/components/pages/Rubrique.vue +21 -27
  139. package/src/components/pages/Search.vue +37 -94
  140. package/src/helper/dom.ts +2 -2
  141. package/src/helper/duration.ts +18 -8
  142. package/src/helper/useEventListener.ts +18 -0
  143. package/src/i18n.ts +36 -0
  144. package/src/locale/de.ts +309 -0
  145. package/src/locale/educationen.ts +14 -0
  146. package/src/locale/en.ts +316 -1
  147. package/src/locale/es.ts +309 -0
  148. package/src/locale/fr.ts +47 -15
  149. package/src/locale/it.ts +307 -0
  150. package/src/locale/messages.ts +11 -2
  151. package/src/locale/sl.ts +309 -0
  152. package/src/main.ts +64 -55
  153. package/src/router/router.ts +192 -159
  154. package/src/sass/_variables.scss +10 -8
  155. package/src/shims-tsx.d.ts +15 -0
  156. package/src/shims-vue-recaptcha-v3.d.ts +9 -0
  157. package/src/shims-vue.d.ts +5 -6
  158. package/src/store/AppStore.ts +41 -173
  159. package/src/store/class/adserver/adserverConfig.ts +9 -0
  160. package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
  161. package/src/store/class/adserver/adserverTiming.ts +10 -0
  162. package/src/store/class/cartouchier/cartouche.ts +15 -0
  163. package/src/store/class/cartouchier/cartouchier.ts +9 -0
  164. package/src/store/class/conference/conference.ts +35 -0
  165. package/src/store/class/conference/conferenceMessage.ts +10 -0
  166. package/src/store/class/conference/conferenceParticipant.ts +18 -0
  167. package/src/store/class/conference/pad.ts +15 -0
  168. package/src/store/class/conference/studioCall.ts +7 -0
  169. package/src/store/class/contract/contract.ts +7 -0
  170. package/src/store/class/contract/contractOrganisation.ts +7 -0
  171. package/src/store/class/ftp/ftpEmission.ts +41 -0
  172. package/src/store/class/ftp/ftpParam.ts +12 -0
  173. package/src/store/class/ftp/testFtpEmission.ts +5 -0
  174. package/src/store/class/general/audioView.ts +21 -0
  175. package/src/store/class/general/category.ts +10 -0
  176. package/src/store/class/general/comment.ts +16 -0
  177. package/src/store/class/general/customPlayer.ts +9 -0
  178. package/src/store/class/general/emission.ts +23 -0
  179. package/src/store/class/general/fetchParam.ts +3 -0
  180. package/src/store/class/general/initState.ts +25 -0
  181. package/src/store/class/general/interfacePageable.ts +16 -0
  182. package/src/store/class/general/ituneCategory.ts +5 -0
  183. package/src/store/class/general/media.ts +14 -0
  184. package/src/store/class/general/organisation.ts +20 -0
  185. package/src/store/class/general/pageable.ts +13 -0
  186. package/src/store/class/general/participant.ts +12 -0
  187. package/src/store/class/general/player.ts +14 -0
  188. package/src/store/class/general/playlist.ts +13 -0
  189. package/src/store/class/general/podcast.ts +43 -0
  190. package/src/store/class/general/sortPageable.ts +5 -0
  191. package/src/store/class/general/soundcastCategory.ts +8 -0
  192. package/src/store/class/ouestFrance/ofTag.ts +36 -0
  193. package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
  194. package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
  195. package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
  196. package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
  197. package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
  198. package/src/store/class/rss/aggregator.ts +28 -0
  199. package/src/store/class/rss/rssEmission.ts +14 -0
  200. package/src/store/class/rss/rssInfo.ts +8 -0
  201. package/src/store/class/rubrique/rubriquage.ts +10 -0
  202. package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
  203. package/src/store/class/rubrique/rubrique.ts +9 -0
  204. package/src/store/class/stat/statArrayIncome.ts +6 -0
  205. package/src/store/class/stat/statArrayObject.ts +34 -0
  206. package/src/store/class/stat/statGraph.ts +7 -0
  207. package/src/store/class/user/person.ts +15 -0
  208. package/src/store/class/user/profile.ts +12 -0
  209. package/src/store/class/user/userKeycloak.ts +24 -0
  210. package/src/store/paramStore.ts +222 -217
  211. package/src/store/typeAppStore.ts +186 -235
  212. package/src/vuex-shim.d.ts +8 -0
  213. package/tsconfig.json +4 -0
  214. package/vue.config.js +16 -0
  215. package/public/css/fonts/saooti-ui.eot +0 -0
  216. package/public/css/fonts/saooti-ui.svg +0 -829
  217. package/public/css/fonts/saooti-ui.ttf +0 -0
  218. package/public/css/fonts/saooti-ui.woff +0 -0
  219. package/public/css/fonts/stitcher-logo.svg +0 -83
  220. package/public/img/ACPM.PNG +0 -0
  221. package/src/api/comments.ts +0 -7
  222. package/src/api/emissions.ts +0 -7
  223. package/src/api/podcasts.ts +0 -7
  224. package/src/api/profile.ts +0 -8
  225. package/src/api/studio.ts +0 -1
  226. package/src/assets/bootstrap_scss/_alert.scss +0 -51
  227. package/src/assets/bootstrap_scss/_badge.scss +0 -54
  228. package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
  229. package/src/assets/bootstrap_scss/_button-group.scss +0 -164
  230. package/src/assets/bootstrap_scss/_buttons.scss +0 -291
  231. package/src/assets/bootstrap_scss/_card.scss +0 -278
  232. package/src/assets/bootstrap_scss/_carousel.scss +0 -197
  233. package/src/assets/bootstrap_scss/_close.scss +0 -41
  234. package/src/assets/bootstrap_scss/_code.scss +0 -48
  235. package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
  236. package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
  237. package/src/assets/bootstrap_scss/_forms.scss +0 -352
  238. package/src/assets/bootstrap_scss/_functions.scss +0 -134
  239. package/src/assets/bootstrap_scss/_grid.scss +0 -69
  240. package/src/assets/bootstrap_scss/_images.scss +0 -42
  241. package/src/assets/bootstrap_scss/_input-group.scss +0 -191
  242. package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
  243. package/src/assets/bootstrap_scss/_list-group.scss +0 -158
  244. package/src/assets/bootstrap_scss/_media.scss +0 -8
  245. package/src/assets/bootstrap_scss/_mixins.scss +0 -47
  246. package/src/assets/bootstrap_scss/_modal.scss +0 -243
  247. package/src/assets/bootstrap_scss/_nav.scss +0 -120
  248. package/src/assets/bootstrap_scss/_navbar.scss +0 -324
  249. package/src/assets/bootstrap_scss/_pagination.scss +0 -74
  250. package/src/assets/bootstrap_scss/_popover.scss +0 -170
  251. package/src/assets/bootstrap_scss/_print.scss +0 -141
  252. package/src/assets/bootstrap_scss/_progress.scss +0 -46
  253. package/src/assets/bootstrap_scss/_reboot.scss +0 -482
  254. package/src/assets/bootstrap_scss/_root.scss +0 -20
  255. package/src/assets/bootstrap_scss/_spinners.scss +0 -55
  256. package/src/assets/bootstrap_scss/_tables.scss +0 -185
  257. package/src/assets/bootstrap_scss/_toasts.scss +0 -44
  258. package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
  259. package/src/assets/bootstrap_scss/_transitions.scss +0 -20
  260. package/src/assets/bootstrap_scss/_type.scss +0 -125
  261. package/src/assets/bootstrap_scss/_utilities.scss +0 -17
  262. package/src/assets/bootstrap_scss/_variables.scss +0 -1145
  263. package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
  264. package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
  265. package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
  266. package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
  267. package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
  268. package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
  269. package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
  270. package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
  271. package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
  272. package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
  273. package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
  274. package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
  275. package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
  276. package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
  277. package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
  278. package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
  279. package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
  280. package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
  281. package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
  282. package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
  283. package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
  284. package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
  285. package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
  286. package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
  287. package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
  288. package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
  289. package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
  290. package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
  291. package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
  292. package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
  293. package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
  294. package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
  295. package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
  296. package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
  297. package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
  298. package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
  299. package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
  300. package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
  301. package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
  302. package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
  303. package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
  304. package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
  305. package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
  306. package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
  307. package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
  308. package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
  309. package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
  310. package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
  311. package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
  312. package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
  313. package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
  314. package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
  315. package/src/components/misc/Player.vue +0 -792
  316. package/src/shims-vuex.d.ts +0 -7
  317. package/src/views/Home.vue +0 -18
package/src/locale/fr.ts CHANGED
@@ -1,9 +1,9 @@
1
- export default {
1
+ export default{
2
2
  'Edit my profile': 'Mon profil',
3
3
  'Edit my organisation': 'Mon organisation',
4
4
  Logout: 'Déconnexion',
5
5
  Login: 'Connexion',
6
- 'Animated by : ': 'Animé par : ',
6
+ 'Animated by': 'Animé par',
7
7
  Home: 'Accueil',
8
8
  Podcasts: 'Épisodes',
9
9
  Emissions: 'Émissions',
@@ -53,11 +53,11 @@ export default {
53
53
  'Filter by keyword : ': 'Rechercher : ',
54
54
  'Look for participant name': 'Rechercher un intervenant par nom',
55
55
  'Look for productor name': 'Rechercher un producteur par nom',
56
- 'Look for emission name': 'Rechercher une émission par nom',
57
- 'Look for podcast name': 'Rechercher un épisode par nom',
56
+ 'Look for emission name': 'Rechercher une émission par titre',
57
+ 'Look for podcast name': 'Rechercher un épisode par titre',
58
58
  'Type string to filter by organisation': 'Filtrer les producteurs par nom',
59
- 'Type string to filter by emission': 'Filtrer les émissions par nom',
60
- 'Type string to filter by podcast': 'Filtrer les épisodes par nom',
59
+ 'Type string to filter by emission': 'Filtrer les émissions par titre',
60
+ 'Type string to filter by podcast': 'Filtrer les épisodes par titre',
61
61
  'No organisation filter': 'Tous les producteurs',
62
62
  'No emission filter': 'Toutes les émissions',
63
63
  'No podcast filter': 'Tous les épisodes',
@@ -74,7 +74,7 @@ export default {
74
74
  Duration: 'Durée : {duration}',
75
75
  Animator: 'Intervenant',
76
76
  'No category filter': 'Toutes les thématiques',
77
- 'Type string to filter by categories': 'Filtrer les thématiques par nom',
77
+ 'Type string to filter by categories': 'Filtrer les thématiques par intitulé',
78
78
  Search: 'Rechercher',
79
79
  Close: 'Fermer',
80
80
  Embed: 'Player',
@@ -108,13 +108,14 @@ export default {
108
108
  'Prohibited advertising': 'Publicité interdite',
109
109
  'Authorized advertising': 'Publicité autorisée',
110
110
  Distribute: 'Distribuer',
111
- 'Rss feed:': 'Flux RSS:',
111
+ 'Rss feed:': 'Flux RSS :',
112
112
  'See more': 'Voir plus',
113
113
  'Search results': 'Résultat de la recherche "{query}"',
114
114
  'Search - no results': 'Aucun résultat pour la recherche "{query}"',
115
115
  Downloading: 'Téléchargement',
116
116
  'Subscribe to this emission': "S'abonner à cette émission",
117
117
  'Subscribe to this participant': "S'abonner à cet intervenant",
118
+ 'Subscribe to this RSS feed': "S'abonner à ce flux RSS",
118
119
  'Emission have not podcasts': "Cette émission n'a pas d'épisodes",
119
120
  'Participant have not podcasts':
120
121
  'Cet intervenant ne participe à aucun épisode',
@@ -130,7 +131,7 @@ export default {
130
131
  Advertising: 'Publicité',
131
132
  'By topic': 'Selon rubriquage',
132
133
  'By rubric': 'Par rubrique',
133
- 'Type string to filter by rubrics': 'Filtrer les rubriques par nom',
134
+ 'Type string to filter by rubrics': 'Filtrer les rubriques',
134
135
  'No rubric filter': 'Toutes les rubriques',
135
136
  'From the :': 'Depuis le :',
136
137
  'To the :': "Jusqu'au :",
@@ -184,7 +185,7 @@ export default {
184
185
  "Partager cette page sans afficher les blocs d'édition et d'intégration du player",
185
186
  'Podcast in cancelled status': 'Épisode avec un traitement qui a été annulé',
186
187
  'Show every episode': 'Afficher tous les épisodes',
187
- 'Subscribe emission': "Abonnement à l'émission",
188
+ 'Subscribe emission': "Écouter sur une plateforme de streaming",
188
189
  'Rss feed parameters': 'Paramètres du flux RSS',
189
190
  'Not share episodes before':
190
191
  'Ne pas partager les épisodes publiés il y a moins de',
@@ -198,6 +199,7 @@ export default {
198
199
  'Loading lives...': 'Chargement des lives...',
199
200
  'No live currently': "Il n'y a aucun live actuellement",
200
201
  'live upcoming': 'live imminent',
202
+ "live in few time":"live à venir",
201
203
  Debriefing: 'Debriefing',
202
204
  Publishing: 'Publication',
203
205
  'select productor': 'Choisir un producteur',
@@ -205,7 +207,7 @@ export default {
205
207
  Configuration: 'Configuration',
206
208
  'HTML Code': 'Code HTML',
207
209
  'Listen this episode': 'Écouter ce podcast',
208
- 'Display emission name': "Afficher le nom de l'émission",
210
+ 'Display emission name': "Afficher le titre de l'émission",
209
211
  'Display participants list': 'Afficher la liste des intervenants',
210
212
  'Choose main color': 'Choisir la couleur principale',
211
213
  'Octopus is ACPM Podcast accredited': 'Octopus est accrédité ACPM Podcasts',
@@ -227,7 +229,7 @@ export default {
227
229
  Playlists: 'Playlists',
228
230
  Playlist: 'Playlist',
229
231
  'All playlists': 'Toutes les playlists',
230
- 'Look for playlist name': 'Rechercher une playlist par nom',
232
+ 'Look for playlist name': 'Rechercher une playlist par titre',
231
233
  'Number playlists': '{nb} playlists',
232
234
  'Playlist have not podcasts': "Cette playlist n'a pas d'épisodes",
233
235
  "Playlist doesn't exist": "La playlist demandée n'existe pas",
@@ -239,9 +241,9 @@ export default {
239
241
  'All live emission button': "Tous les lives de l'émission",
240
242
  'player parameters': 'Paramètres du player',
241
243
  'Start at': 'Démarrer à',
242
- 'sort by score': ' triés par pertinence',
243
- 'sort by alphabetical': ' triés par ordre alphabétique',
244
- 'sort by date': ' triés par ordre antéchronologique',
244
+ 'sort by score': 'triés par pertinence',
245
+ 'sort by alphabetical': 'triés par ordre alphabétique',
246
+ 'sort by date': 'triés par ordre antéchronologique',
245
247
  'Be the first to react': 'Soyez le premier à réagir à ce podcast',
246
248
  "Podcast's comments": "Commentaires de l'épisode",
247
249
  '()': '({nb})',
@@ -281,4 +283,34 @@ export default {
281
283
  'Display my podcasts to validate': 'Afficher mes épisodes à valider',
282
284
  'Podcast not validated': "L'épisode n'est pas validé",
283
285
  'Podcast to validate': 'Épisode à valider',
286
+ 'Change locale': 'Changer la langue',
287
+ 'Refresh': 'Rafraichir',
288
+ 'See associated article':"Lire l'article",
289
+ "Display associated article":"Afficher l'article associé",
290
+ "Copy this page URL":"Copier l'adresse de cette page",
291
+ "Custom version":"Version customisée",
292
+ "All":"Tous",
293
+ 'By category': 'Selon la catégorie IAB',
294
+ "Add a sort criterion by topic":"Ajouter un critère de tri par rubrique",
295
+ 'Share QR Code': "Partage d'un QR Code",
296
+ "Download":"Télécharger",
297
+ "Download started": 'Téléchargement lancé',
298
+ 'From RSS': "Issu d'un flux RSS",
299
+ "User menu":"Menu utilisateur",
300
+ 'Podcast tags': "Mot-clé de l'épisode",
301
+ "You do not have the right to access this page":"Vous n’avez pas le droit d’accéder à cette page",
302
+ "Enlarge":"Agrandir",
303
+ "Reduce":"Réduire",
304
+ "Use organization color":"Utiliser la couleur de l'organisation",
305
+ "Oops":"Oups",
306
+ "The page you are looking for cannot be found":"La page que vous recherchez est introuvable",
307
+ 'Back to home': "Retour à l'accueil",
308
+ "Items per page :":"Items par page :",
309
+ 'Showing items number': "Page {page} sur {totalPage}",
310
+ "Go to first page":"Aller à la première page",
311
+ "Go to last page":"Aller à la dernière page",
312
+ "Go to next page":"Aller à la page suivante",
313
+ "Go to previous page":"Aller à la page précédente",
314
+ "Warning":"Avertissement",
315
+ "Visual":"Visuel de {name}",
284
316
  };
@@ -0,0 +1,307 @@
1
+ export default{
2
+ 'Edit my profile': 'Il mio profilo',
3
+ 'Edit my organisation': 'La mia organizzazione',
4
+ Logout: 'Logout',
5
+ Login: 'Login',
6
+ 'Animated by': 'Ospitato da',
7
+ Home: 'Homepage',
8
+ Podcasts: 'Episodi',
9
+ Emissions: 'Serie',
10
+ Productors: 'Producer',
11
+ Productor: 'Producer',
12
+ Speakers: 'Speaker',
13
+ Guests: 'Ospiti',
14
+ Favorites: 'Preferiti',
15
+ Distributor: 'Distributore',
16
+ Image: 'Immagine',
17
+
18
+ 'See my statistics': "Report sull'audience",
19
+ 'Edit / Delete episodes': 'I miei episodi',
20
+ 'Welcome in the Backoffice': 'Amministrazione',
21
+ 'Please set an animator': 'Seleziona o crea un moderatore',
22
+ 'Producted by : ': 'Prodotto da:',
23
+ 'Loading podcasts ...': 'Podcast in caricamento...',
24
+ 'Logo of main page': 'Logo della pagina principale',
25
+ 'All podcasts': 'Tutti i podcast',
26
+ Error: 'Errore',
27
+ Upload: 'Upload',
28
+ 'Count more elements matched your query, please make a more specific search.': `Troppi elementi corrispondono alla tua ricerca, effettua una ricerca più specifica`,
29
+ 'There are still {count} item (s) matching your search. Please do a more specific search.' : 'Ci sono ancora {count} articoli corrispondenti alla tua ricerca. Effettua una ricerca più specifica',
30
+ Emission: 'Serie',
31
+ 'Emission description': "Descrizione della serie",
32
+ 'Emission image': "Immagine della serie",
33
+ 'Emission name': "Titolo della serie",
34
+ 'No elements found. Consider changing the search query.':
35
+ 'Non è stato trovato alcun elemento. Prova a cambiare i parametri di ricerca',
36
+ 'Podcast is not visible for listeners':
37
+ "Il podcast non è visibile agli ascoltatori",
38
+ Validate: 'Convalidare',
39
+ Cancel: 'Cancellare',
40
+ 'Most popular': 'Più popolari',
41
+ 'Last added': 'Ultimi aggiunti',
42
+ 'All podcast button': 'Tutti i podcast di "{name}"',
43
+ 'Podcast search': 'Cerca fra i podcast',
44
+ 'No podcast match your query':
45
+ 'Nessun podcast corrisponde alla tua ricerca',
46
+ 'Please type at least three characters': 'Digitare almeno tre caratteri',
47
+ 'My space': 'Amministrazione',
48
+ 'All participants': 'Tutti gli speaker',
49
+ 'All productors': 'Tutti i producer',
50
+ 'All emissions': 'Tutte le serie',
51
+ 'Filter by keyword : ': 'Filtra tramite parola chiave:',
52
+ 'Look for participant name': 'Cerca lo speaker tramite il nome',
53
+ 'Look for productor name': 'Cerca il producer tramite il titolo',
54
+ 'Look for emission name': 'Cerca la serie tramite il titolo',
55
+ 'Look for podcast name': 'Cerca il podcast tramite il titolo',
56
+ 'Type string to filter by organisation': 'Filtra per organizzazione',
57
+ 'Type string to filter by emission': 'Filtra per serie',
58
+ 'Type string to filter by podcast': 'Filtra per podcast',
59
+ 'No organisation filter': 'Nessun filtro per organizzazione',
60
+ 'No emission filter': 'Nessun filtro per serie',
61
+ 'No podcast filter': 'Nessun filtro per podcast',
62
+ 'Loading participants ...': 'Caricamento degli speaker...',
63
+ 'Loading productors ...': 'Caricamento dei producer...',
64
+ 'Loading emissions ...': 'Caricamento delle serie...',
65
+ 'Emission name image': "Immagine per la serie {name}",
66
+ 'Loading content ...': 'Caricamento contenuto...',
67
+ Episode: 'Episodio',
68
+ 'Episode name image': "Immagine dell'episodio {name}",
69
+ 'More episodes of this emission': "Altri episodi di questa serie",
70
+ 'More episodes of this category : {name}': "Altri episodi della categoria: {name}",
71
+ 'All podcast emission button': "Seleziona tutte le serie",
72
+ Duration: 'Durata: {duration}',
73
+ Animator: 'Host',
74
+ 'No category filter': 'Nessun filtro per la categoria',
75
+ 'Type string to filter by categories': 'Filtra la categoria tramite il titolo',
76
+ Search: 'Ricerca',
77
+ Close: 'Chiudi',
78
+ Embed: 'Player',
79
+ Share: 'Condividi questa pagina',
80
+ 'Share the player': 'Condividi il lettore',
81
+ 'Share player': 'Condividi il lettore',
82
+ 'Copy code': 'Copia il codice',
83
+ Copy: 'Copia',
84
+ Show: 'Mostra',
85
+ 'Last podcasts': 'Gli ultimi podcast',
86
+ Contact: 'Contatti',
87
+ 'List is empty': 'La lista è vuota',
88
+ 'Used libraries': 'Libreria in uso ',
89
+ Front: 'Fronte',
90
+ Back: 'Retro',
91
+ 'Look for library': 'Cerca la libreria',
92
+ Yes: 'Sì',
93
+ No: 'No',
94
+ "Podcast doesn't exist": "Il podcast non esiste",
95
+ "Emission doesn't exist": "La serie non esiste",
96
+ "Animator doesn't exist": "L'host non esiste",
97
+ "Productor doesn't exist": "Il producer non esiste",
98
+ 'Create an account': 'Crea un account',
99
+ 'Link in clipboard': 'Link copiato negli appunti',
100
+ 'Data in clipboard': 'Dati negli appunti',
101
+ 'check this box if you want to keep this filter for the rest of your visit':
102
+ 'Seleziona questa casella se vuoi mantenere questo filtro per il resto della tua visita',
103
+ 'No advertising': 'Niente pubblicità',
104
+ 'You cannot insert advertising':
105
+ 'In questo podcast non si può inserire pubblicità',
106
+ 'Prohibited advertising': 'Pubblicità non autorizzata',
107
+ 'Authorized advertising': 'Pubblicità autorizzata',
108
+ Distribute: 'Distribuzione',
109
+ 'Rss feed:': 'RSS Feed:',
110
+ 'See more': 'Ascolta altri',
111
+ 'Search results': 'Cerca risultati per "{query}"',
112
+ 'Search - no results': 'Ricerca - nessun risultato per "{query}"',
113
+ Downloading: 'In download',
114
+ 'Subscribe to this emission': "Iscriviti a questa serie",
115
+ 'Subscribe to this participant': "Iscriviti a questo speaker",
116
+ 'Subscribe to this RSS feed': "Iscriviti a questo feed RSS",
117
+ 'Emission have not podcasts': "Questa serie non ha alcun podcast",
118
+ 'Participant have not podcasts':
119
+ 'Questo speaker non è associato ad alcun podcast',
120
+ 'Default version': 'Versione di default',
121
+ 'Large version': 'Versione estesa',
122
+ 'Emission version': 'Versione della serie',
123
+ 'Large emission version': 'Versione estesa della serie',
124
+ 'Large suggestion version': 'Versione estesa consigliata',
125
+ 'Embed link': 'Inserisci lettore',
126
+ 'Embedly link': 'Player link',
127
+ 'Direct link': 'Audio link',
128
+ 'Advanced filters': 'Ricerca avanzata',
129
+ Advertising: 'Pubblicità',
130
+ 'By topic': 'Per tema',
131
+ 'By rubric': 'Per rubrica',
132
+ 'Type string to filter by rubrics': 'Filtra per rubriche',
133
+ 'No rubric filter': 'No filtri rubrica',
134
+ 'From the :': 'Dal :',
135
+ 'To the :': "Al :",
136
+ Visible: 'Visibile',
137
+ 'In creation': 'Caricamento in corso',
138
+ 'Publish in future': "Vedi l'episodio nascosto al pubblico",
139
+ 'In error': 'In errore',
140
+ 'Emission with episode published :':'Serie con episodi pubblicati dal:',
141
+ Sort: 'Suddividi',
142
+ Filter: 'Filtro',
143
+ 'Sort score': 'Suddiviso per grado di rilevanza',
144
+ 'Sort name': 'Suddividi titolo',
145
+ 'Sort last': 'Suddividi ultimo',
146
+ 'Choose color': 'Seleziona colore',
147
+ 'Choose theme': 'Seleziona tema',
148
+ 'Podcast no visible': 'Podcast non visibile',
149
+ 'Display episodes': 'Mostra episodi',
150
+ 'Podcast published in future': 'Podcast pubblicato in futuro',
151
+ 'Podcast in process': 'Podcast in elaborazione',
152
+ 'Podcast in error': 'Podcast in errore',
153
+ 'See podcasts no visible':
154
+ 'Vedi podcast non visibili al pubblico',
155
+ 'Number podcasts': '{nb} podcast',
156
+ 'Number emissions': '{nb} serie',
157
+ 'Number participants': '{nb} speaker',
158
+ 'Number productors': '{nb} producer',
159
+ 'Display next': 'Mostra episodi seguenti',
160
+ 'Display previous': 'Mostra episodi precedenti',
161
+ Play: 'Play',
162
+ Pause: 'Pausa',
163
+ 'Show description': 'Mostra descrizione',
164
+ 'Hide description': 'Nascondi descrizione',
165
+ 'open left Menu': 'Apri/Chiudi Menu',
166
+ Participant: 'Speaker',
167
+ 'Number of player podcasts': "Numero di podcast nel lettore",
168
+ 'Proceed reading': 'Continua ad ascoltare',
169
+ 'Without topic': 'Senza un tema',
170
+ 'Without rubric': 'Senza una rubrica',
171
+ 'Consider podcasts no visible':
172
+ 'Includi i podcast non visibili al pubblico',
173
+ 'Hosted by': 'Presentato da',
174
+ TutoMag: 'TutoMag',
175
+ News: 'Notizie',
176
+ 'Known issues': 'Problemi noti',
177
+ Help: 'Aiuto',
178
+ 'Podcast play error': 'Si è verificato un errore durante la riproduzione del podcast',
179
+ 'More episodes': 'Altri episodi',
180
+ Stop: 'Stop',
181
+ 'Share this page without edit and share blocks':
182
+ "Condividi questa pagina senza modificare",
183
+ 'Podcast in cancelled status': 'Podcast contrassegnato come eliminato',
184
+ 'Show every episode': 'Mostra tutti gli episodi',
185
+ 'Subscribe emission': "Iscriviti alla serie",
186
+ 'Rss feed parameters': 'Impostazioni RSS Feed',
187
+ 'Not share episodes before':
188
+ 'Non condividere episodi prima',
189
+ 'Not share episodes after':
190
+ 'Non condividere episodi dopo',
191
+ hours: 'ora(e)',
192
+ days: 'giorno(i)',
193
+ Live: 'Live',
194
+ 'In live': 'Live ora',
195
+ 'Launch a new live': 'Crea un nuovo live',
196
+ 'Loading lives...': 'Live in caricamento...',
197
+ 'No live currently': "Non ci sono live disponibili al momento",
198
+ 'live upcoming': 'Live in arrivo',
199
+ "live in few time":"Live presto diponibile",
200
+ Debriefing: 'Debriefing',
201
+ Publishing: 'In corso di pubblicazione',
202
+ 'select productor': 'Seleziona producer',
203
+ 'Share newsletter': "Condividi newsletter",
204
+ Configuration: 'Configurazione',
205
+ 'HTML Code': 'Codice HTML',
206
+ 'Listen this episode': 'Ascolta questo episodio',
207
+ 'Display emission name': "Mostra il titolo della serie",
208
+ 'Display participants list': 'Mostra la lista degli speaker',
209
+ 'Choose main color': 'Seleziona colore principale',
210
+ 'Octopus is ACPM Podcast accredited': 'Octopus è accreditata ACPM Podcast',
211
+ 'Live episode': 'Episodi live',
212
+ 'This live will start': 'Questo live inizierà',
213
+ 'In days hours minutes seconds':
214
+ 'in {days} giorni {hours} ore {minutes} minuti e {seconds} secondi',
215
+ 'Open studio': 'Open studio',
216
+ 'Episode record in live': 'Episodio registrato live',
217
+ 'In a moment': 'Tra poco',
218
+ 'Live to be': 'Presto disponibile',
219
+ 'Live terminated': 'Live terminato',
220
+ 'Next live date': 'Il prossimo live è previsto il {date}',
221
+ 'Not recording': 'Non registrato',
222
+ 'This live is not started yet': "Questo live non è ancora iniziato",
223
+ 'A live can start any moment': 'Una sessione live può iniziare presto',
224
+ 'Recorded in live': 'Registrato live',
225
+ 'Podcast linked to waiting live': 'Podcast collegato a un live in attesa',
226
+ Playlists: 'Playlist',
227
+ Playlist: 'Playlist',
228
+ 'All playlists': 'Tutte le playlist',
229
+ 'Look for playlist name': 'Ricerca playlist per titolo',
230
+ 'Number playlists': '{nb} playlist',
231
+ 'Playlist have not podcasts': "Questa playlist non contiene nessun podcast",
232
+ "Playlist doesn't exist": "La playlist richiesta non esiste",
233
+ 'Playlist name image': 'Titolo playlist {name}',
234
+ 'Create playlist': 'Crea playlist',
235
+ 'Podcasts in the playlist': 'Tutti i podcast nella playlist',
236
+ 'No podcasts in the playlist': "Non ci sono podcast disponibili nella playlist",
237
+ 'Start in a while': 'Inizia in qualsiasi momento',
238
+ 'All live emission button': "Tutti i live nella serie",
239
+ 'player parameters': 'Impostazioni lettore',
240
+ 'Start at': 'Inizia a',
241
+ 'sort by score': 'per grado di rilevanza',
242
+ 'sort by alphabetical': 'suddiviso in ordine alfabetico',
243
+ 'sort by date': 'suddiviso per data',
244
+ 'Be the first to react': 'Commenta per primo',
245
+ "Podcast's comments": "Commenti per questo podcast",
246
+ '()': '({nb})',
247
+ 'Write a comment': 'Scrivi un commento',
248
+ 'Answer a comment': 'Rispondi al commento',
249
+ 'See more comments': 'Vedi altri commenti',
250
+ 'To answer': 'Rispondere',
251
+ 'Display answers': 'Mostra le risposte {nb}',
252
+ 'Hide answers': 'Nascondi le risposte',
253
+ 'Read more': 'Continua a leggere',
254
+ 'Read less': 'Nascondi',
255
+ '(nb valid comment answers)': '({nb} risposte valide nei commenti)',
256
+ 'Welcome, thanks for your comment': 'Benvenutə, grazie per il tuo commento',
257
+ "Let's get acquainted :": "Facciamo conoscenza:",
258
+ 'Send in progress': 'Invio in corso...',
259
+ 'Error occurs while post your comment...':
260
+ 'Si è verificato un errore durante la pubblicazione del tuo commento...',
261
+ 'Comments loading error': 'Si è verificato un errore durante il caricamento dei commenti',
262
+ 'Certified account': 'Account certificato',
263
+ 'No comments': 'Nessun commento',
264
+ 'In response to': 'In risposta a',
265
+ 'Please chose a productor': 'Scegli un producer',
266
+ 'Podcast in ERROR, please contact Saooti':
267
+ "Podcast in ERRORE, si prega di contattare Saooti",
268
+ 'Podcast still available':
269
+ "Podcast disponibile agli utenti",
270
+ 'Podcasts still available':
271
+ 'Mantieni gli episodi nascosti disponibili agli ascoltatori',
272
+ 'Podcast image': "Immagine del podcast",
273
+ 'Recaptcha error':
274
+ 'Recaptcha di Google non pensa che tu sia un umano',
275
+ 'Recaptcha not active': 'Google captcha disattivato',
276
+ 'Comment waiting':
277
+ "Questo commento non sarà visibile ad altri utenti fino a quando non sarà validato",
278
+ 'Display all podcasts to validate': 'Mostra tutti i podcast da validare',
279
+ 'Display my podcasts to validate': 'Mostra i miei podcast da validare',
280
+ 'Podcast not validated': "Podcast non validato",
281
+ 'Podcast to validate': 'Podcast da validare',
282
+ 'Change locale': 'Cambia la lingua',
283
+ 'Refresh': 'Aggiorna',
284
+ 'See associated article':"Leggi l'articolo",
285
+ "Display associated article":"Mostra articolo associato",
286
+ "Copy this page URL":"Copia la URL di questa pagina",
287
+ "Custom version":"Versione customizzata",
288
+ "All":"Tutto",
289
+ 'By category': 'Per categoria',
290
+ "Add a sort criterion by topic":"Aggiungi un criterio di suddivisione per tema",
291
+ 'Share QR Code': "Condividi il QR Code",
292
+ "Download":"Download",
293
+ "Download started": 'Il download è iniziato',
294
+ 'From RSS': "Da un RSS Feed ",
295
+ "User menu":"Menu utente",
296
+ 'Podcast tags': 'Tag podcast',
297
+ "Term of use":"Termini d'uso",
298
+ 'More episodes of this category : ': "Altri episodi su questo tema : {name}",
299
+ "Enlarge":"Ingrandire",
300
+ "Reduce":"Ridurre",
301
+ "Use organization color":"Usa il colore dell'organizzazione",
302
+ "Oops":"Oups",
303
+ "The page you are looking for cannot be found":"Impossibile trovare la pagina che stai cercando",
304
+ 'Back to home': "Torna alla schermata 'home'",
305
+ "Warning":"Avvertimento",
306
+ "Visual":"Visiva di {name}",
307
+ };
@@ -1,9 +1,18 @@
1
1
  import fr from './fr';
2
2
  import educationfr from './educationfr';
3
+ import educationen from './educationen';
3
4
  import en from './en';
4
-
5
- export default {
5
+ import it from './it';
6
+ import sl from './sl';
7
+ import es from './es';
8
+ import de from './de';
9
+ export default{
6
10
  fr: fr,
7
11
  en: en,
12
+ it: it,
13
+ sl: sl,
14
+ es: es,
15
+ de: de,
8
16
  educationfr: educationfr,
17
+ educationen: educationen,
9
18
  };