@saooti/octopus-sdk 1.0.0 → 29.0.2

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 (230) hide show
  1. package/README.md +73 -0
  2. package/index.d.ts +4 -0
  3. package/index.ts +12 -0
  4. package/package.json +61 -39
  5. package/public/css/fonts/saooti-ui.eot +0 -0
  6. package/public/css/fonts/saooti-ui.svg +30 -19
  7. package/public/css/fonts/saooti-ui.ttf +0 -0
  8. package/public/css/fonts/saooti-ui.woff +0 -0
  9. package/public/css/fonts/style.css +48 -5
  10. package/public/img/ACPM.png +0 -0
  11. package/public/img/article.png +0 -0
  12. package/src/App.vue +97 -31
  13. package/src/api/comments.ts +3 -1
  14. package/src/api/emissions.ts +5 -2
  15. package/src/api/initialize.ts +3 -2
  16. package/src/api/podcasts.ts +5 -2
  17. package/src/api/profile.ts +4 -2
  18. package/src/api/studio.ts +12 -1
  19. package/src/assets/bootstrap-diff.scss +265 -0
  20. package/src/assets/form.scss +23 -0
  21. package/src/assets/general.scss +47 -20
  22. package/src/assets/modal.scss +9 -10
  23. package/src/assets/multiselect.scss +19 -2
  24. package/src/assets/octopus-library.scss +16 -4
  25. package/src/assets/share.scss +343 -0
  26. package/src/components/display/aggregator/RssSection.vue +4 -4
  27. package/src/components/display/categories/CategoryChooser.vue +152 -105
  28. package/src/components/display/categories/CategoryFilter.vue +108 -0
  29. package/src/components/display/categories/CategoryList.vue +138 -109
  30. package/src/components/display/comments/AddCommentModal.vue +104 -87
  31. package/src/components/display/comments/CommentInput.vue +137 -118
  32. package/src/components/display/comments/CommentItem.vue +155 -137
  33. package/src/components/display/comments/CommentList.vue +142 -120
  34. package/src/components/display/comments/CommentParentInfo.vue +39 -35
  35. package/src/components/display/comments/CommentPlayer.vue +54 -48
  36. package/src/components/display/comments/CommentSection.vue +57 -58
  37. package/src/components/display/edit/EditBox.vue +4 -4
  38. package/src/components/display/edit/EditCommentBox.vue +25 -31
  39. package/src/components/display/emission/EmissionChooser.vue +82 -80
  40. package/src/components/display/emission/EmissionInlineList.vue +118 -105
  41. package/src/components/display/emission/EmissionItem.vue +66 -167
  42. package/src/components/display/emission/EmissionList.vue +96 -122
  43. package/src/components/display/emission/EmissionPlayerItem.vue +131 -126
  44. package/src/components/display/filter/AdvancedSearch.vue +306 -372
  45. package/src/components/display/filter/CategoryFilter.vue +117 -0
  46. package/src/components/display/filter/MonetizableFilter.vue +24 -10
  47. package/src/components/display/filter/ProductorSearch.vue +131 -135
  48. package/src/components/display/filter/RubriqueChoice.vue +104 -0
  49. package/src/components/display/filter/RubriqueFilter.vue +235 -0
  50. package/src/components/display/live/CountDown.vue +30 -29
  51. package/src/components/display/live/LiveHorizontalList.vue +40 -34
  52. package/src/components/display/live/LiveItem.vue +146 -158
  53. package/src/components/display/live/LiveList.vue +167 -154
  54. package/src/components/display/organisation/OrganisationChooser.vue +125 -124
  55. package/src/components/display/organisation/OrganisationChooserLight.vue +40 -47
  56. package/src/components/display/participant/ParticipantItem.vue +92 -108
  57. package/src/components/display/participant/ParticipantList.vue +76 -69
  58. package/src/components/display/playlist/PlaylistItem.vue +45 -56
  59. package/src/components/display/playlist/PlaylistList.vue +57 -48
  60. package/src/components/display/playlist/PodcastList.vue +94 -70
  61. package/src/components/display/podcasts/AnimatorsItem.vue +26 -23
  62. package/src/components/display/podcasts/ParticipantDescription.vue +115 -0
  63. package/src/components/display/podcasts/PodcastFilterList.vue +84 -85
  64. package/src/components/display/podcasts/PodcastImage.vue +244 -208
  65. package/src/components/display/podcasts/PodcastInlineList.vue +145 -207
  66. package/src/components/display/podcasts/PodcastItem.vue +150 -132
  67. package/src/components/display/podcasts/PodcastList.vue +89 -110
  68. package/src/components/display/podcasts/TagList.vue +23 -16
  69. package/src/components/display/rubriques/RubriqueChooser.vue +137 -123
  70. package/src/components/display/rubriques/RubriqueList.vue +227 -0
  71. package/src/components/display/sharing/PlayerParameters.vue +154 -106
  72. package/src/components/display/sharing/QrCode.vue +58 -0
  73. package/src/components/display/sharing/ShareButtons.vue +214 -92
  74. package/src/components/display/sharing/ShareDistribution.vue +110 -121
  75. package/src/components/display/sharing/SharePlayer.vue +245 -190
  76. package/src/components/display/sharing/SubscribeButtons.vue +130 -66
  77. package/src/components/display/studio/RecordingItemButton.vue +4 -4
  78. package/src/components/misc/ErrorMessage.vue +21 -16
  79. package/src/components/misc/Footer.vue +131 -66
  80. package/src/components/misc/HomeDropdown.vue +166 -123
  81. package/src/components/misc/LeftMenu.vue +151 -134
  82. package/src/components/misc/Player.vue +332 -328
  83. package/src/components/misc/Snackbar.vue +27 -29
  84. package/src/components/misc/TopBar.vue +204 -174
  85. package/src/components/misc/modal/ClipboardModal.vue +46 -26
  86. package/src/components/misc/modal/MessageModal.vue +67 -51
  87. package/src/components/misc/modal/NewsletterModal.vue +179 -136
  88. package/src/components/misc/modal/QrCodeModal.vue +83 -0
  89. package/src/components/misc/modal/ShareModalPlayer.vue +133 -74
  90. package/src/components/mixins/functions.ts +21 -18
  91. package/src/components/mixins/init.ts +24 -0
  92. package/src/components/mixins/organisationFilter.ts +24 -0
  93. package/src/components/pages/Category.vue +26 -26
  94. package/src/components/pages/Emission.vue +120 -92
  95. package/src/components/pages/Emissions.vue +109 -86
  96. package/src/components/pages/Home.vue +70 -16
  97. package/src/components/pages/Lives.vue +57 -47
  98. package/src/components/pages/Participant.vue +93 -77
  99. package/src/components/pages/Participants.vue +44 -31
  100. package/src/components/pages/Playlist.vue +63 -52
  101. package/src/components/pages/Playlists.vue +41 -39
  102. package/src/components/pages/Podcast.vue +265 -251
  103. package/src/components/pages/Podcasts.vue +135 -104
  104. package/src/components/pages/Rubrique.vue +25 -19
  105. package/src/components/pages/Search.vue +71 -67
  106. package/src/helper/dom.ts +2 -2
  107. package/src/helper/duration.ts +18 -8
  108. package/src/locale/educationen.ts +14 -0
  109. package/src/locale/en.ts +299 -1
  110. package/src/locale/fr.ts +25 -10
  111. package/src/locale/messages.ts +3 -2
  112. package/src/main.ts +54 -32
  113. package/src/router/router.ts +184 -159
  114. package/src/shims-tsx.d.ts +13 -0
  115. package/src/shims-vue-recaptcha-v3.d.ts +9 -0
  116. package/src/shims-vue.d.ts +5 -6
  117. package/src/store/AppStore.ts +36 -171
  118. package/src/store/class/category.ts +8 -0
  119. package/src/store/class/comment.ts +17 -0
  120. package/src/store/class/conference.ts +27 -0
  121. package/src/store/class/customPlayer.ts +8 -0
  122. package/src/store/class/emission.ts +20 -0
  123. package/src/store/class/fetchParam.ts +16 -0
  124. package/src/store/class/media.ts +13 -0
  125. package/src/store/class/organisation.ts +19 -0
  126. package/src/store/class/participant.ts +12 -0
  127. package/src/store/class/person.ts +13 -0
  128. package/src/store/class/player.ts +12 -0
  129. package/src/store/class/playlist.ts +15 -0
  130. package/src/store/class/podcast.ts +37 -0
  131. package/src/store/class/rubriquage.ts +9 -0
  132. package/src/store/class/rubriquageFilter.ts +5 -0
  133. package/src/store/class/rubrique.ts +8 -0
  134. package/src/store/paramStore.ts +70 -29
  135. package/src/store/typeAppStore.ts +171 -237
  136. package/src/vuex-shim.d.ts +8 -0
  137. package/tsconfig.json +4 -0
  138. package/vue.config.js +14 -0
  139. package/public/img/ACPM.PNG +0 -0
  140. package/src/assets/bootstrap_scss/_alert.scss +0 -51
  141. package/src/assets/bootstrap_scss/_badge.scss +0 -54
  142. package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
  143. package/src/assets/bootstrap_scss/_button-group.scss +0 -164
  144. package/src/assets/bootstrap_scss/_buttons.scss +0 -291
  145. package/src/assets/bootstrap_scss/_card.scss +0 -278
  146. package/src/assets/bootstrap_scss/_carousel.scss +0 -197
  147. package/src/assets/bootstrap_scss/_close.scss +0 -41
  148. package/src/assets/bootstrap_scss/_code.scss +0 -48
  149. package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
  150. package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
  151. package/src/assets/bootstrap_scss/_forms.scss +0 -352
  152. package/src/assets/bootstrap_scss/_functions.scss +0 -134
  153. package/src/assets/bootstrap_scss/_grid.scss +0 -69
  154. package/src/assets/bootstrap_scss/_images.scss +0 -42
  155. package/src/assets/bootstrap_scss/_input-group.scss +0 -191
  156. package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
  157. package/src/assets/bootstrap_scss/_list-group.scss +0 -158
  158. package/src/assets/bootstrap_scss/_media.scss +0 -8
  159. package/src/assets/bootstrap_scss/_mixins.scss +0 -47
  160. package/src/assets/bootstrap_scss/_modal.scss +0 -243
  161. package/src/assets/bootstrap_scss/_nav.scss +0 -120
  162. package/src/assets/bootstrap_scss/_navbar.scss +0 -324
  163. package/src/assets/bootstrap_scss/_pagination.scss +0 -74
  164. package/src/assets/bootstrap_scss/_popover.scss +0 -170
  165. package/src/assets/bootstrap_scss/_print.scss +0 -141
  166. package/src/assets/bootstrap_scss/_progress.scss +0 -46
  167. package/src/assets/bootstrap_scss/_reboot.scss +0 -482
  168. package/src/assets/bootstrap_scss/_root.scss +0 -20
  169. package/src/assets/bootstrap_scss/_spinners.scss +0 -55
  170. package/src/assets/bootstrap_scss/_tables.scss +0 -185
  171. package/src/assets/bootstrap_scss/_toasts.scss +0 -44
  172. package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
  173. package/src/assets/bootstrap_scss/_transitions.scss +0 -20
  174. package/src/assets/bootstrap_scss/_type.scss +0 -125
  175. package/src/assets/bootstrap_scss/_utilities.scss +0 -17
  176. package/src/assets/bootstrap_scss/_variables.scss +0 -1145
  177. package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
  178. package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
  179. package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
  180. package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
  181. package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
  182. package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
  183. package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
  184. package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
  185. package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
  186. package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
  187. package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
  188. package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
  189. package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
  190. package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
  191. package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
  192. package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
  193. package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
  194. package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
  195. package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
  196. package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
  197. package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
  198. package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
  199. package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
  200. package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
  201. package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
  202. package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
  203. package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
  204. package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
  205. package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
  206. package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
  207. package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
  208. package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
  209. package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
  210. package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
  211. package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
  212. package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
  213. package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
  214. package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
  215. package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
  216. package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
  217. package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
  218. package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
  219. package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
  220. package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
  221. package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
  222. package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
  223. package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
  224. package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
  225. package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
  226. package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
  227. package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
  228. package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
  229. package/src/shims-vuex.d.ts +0 -7
  230. package/src/views/Home.vue +0 -18
@@ -0,0 +1,14 @@
1
+ export default {
2
+ Productors: 'Educational organizations',
3
+ Productor: 'Educational organization',
4
+ 'Number productors': '{nb} educational organizations',
5
+ 'select productor': 'Select educational organization',
6
+ 'Please chose a productor': 'Please chose an educational organization',
7
+ 'All productors': 'All educational organizations',
8
+ "Look for productor name": 'Search for educational organization by name',
9
+ 'Type string to filter by organisation': 'Filter educational organization by name',
10
+ 'No organisation filter': 'No educational organization filter',
11
+ 'Loading productors ...': 'Loading educational organizations...',
12
+ "Productor doesn't exist": "Educational organization doesn't exist",
13
+ };
14
+
package/src/locale/en.ts CHANGED
@@ -1 +1,299 @@
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 podcast of "{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 speaker by name',
55
+ 'Look for productor name': 'Search for Producer by title',
56
+ 'Look for emission name': 'Search for serie by title',
57
+ 'Look for podcast name': 'Search for podcast by title',
58
+ 'Type string to filter by organisation': 'Filter by organization',
59
+ 'Type string to filter by emission': 'Filter by serie',
60
+ 'Type string to filter by podcast': 'Filter by podcast',
61
+ 'No organisation filter': 'No organization filter',
62
+ 'No emission filter': 'No serie 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 serie {name}",
68
+ 'Loading content ...': 'Loading content...',
69
+ Episode: 'Episode',
70
+ 'Episode name image': "Episode {name} image",
71
+ 'More episodes of this emission': "More episodes of this serie",
72
+ 'More episodes of this category : {name}': "More episodes of this category : {name}",
73
+ 'All podcast serie button': "All podcast serie button",
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 serie",
117
+ 'Subscribe to this participant': "Subscribe to this speakers",
118
+ 'Emission have not podcasts': "This serie does not have any podcasts",
119
+ 'Participant have not podcasts':
120
+ 'Speaker is not associated to any podcasts',
121
+ 'Default version': 'Default version',
122
+ 'Large version': 'Large version',
123
+ 'Emission version': 'Serie version',
124
+ 'Large emission version': 'Large serie version',
125
+ 'Large suggestion version': 'Large suggestion version',
126
+ 'Embed link': 'Embed miniplayer',
127
+ 'Embedly link': 'Player link',
128
+ 'Direct link': 'Audio link',
129
+ 'Advanced filters': 'Advanced filters',
130
+ Advertising: 'Advertising',
131
+ 'By topic': 'By topic',
132
+ 'By rubric': 'By rubric',
133
+ 'Type string to filter by rubrics': 'Filter by rubrics',
134
+ 'No rubric filter': 'No rubric filter',
135
+ 'From the :': 'From the :',
136
+ 'To the :': "To the :",
137
+ Visible: 'Visible',
138
+ 'In creation': 'Processing',
139
+ 'Publish in future': 'See the episodes hidden from the audience',
140
+ 'In error': 'In error',
141
+ 'Emission with episode published :':
142
+ 'Serie with episode published since :',
143
+ Sort: 'Sorted',
144
+ Filter: 'Filter',
145
+ 'Sort score': 'Sorted by relevancy score',
146
+ 'Sort name': 'Sorted title',
147
+ 'Sort last': 'Sorted last',
148
+ 'Choose color': 'Choose color',
149
+ 'Choose theme': 'Choose theme',
150
+ 'Podcast no visible': 'Podcast not visible',
151
+ 'Display episodes': 'Display episodes',
152
+ 'Podcast published in future': 'Podcast published in the future',
153
+ 'Podcast in process': 'Podcast in process',
154
+ 'Podcast in error': 'Podcast in error',
155
+ 'See podcasts no visible':
156
+ 'See podcasts not visible to the audience',
157
+ 'Number podcasts': '{nb} of podcasts',
158
+ 'Number emissions': '{nb} of series',
159
+ 'Number participants': '{nb} of speakers',
160
+ 'Number productors': '{nb} of Producers',
161
+ 'Display next': 'Display the following episodes',
162
+ 'Display previous': 'Display previous episodes',
163
+ Play: 'Play',
164
+ Pause: 'Pause',
165
+ 'Show description': 'Show the description',
166
+ 'Hide description': 'Hide the description',
167
+ 'open left Menu': 'Open/Close Menu',
168
+ Participant: 'Speaker',
169
+ 'Number of player podcasts': "Number of podcasts in the player ",
170
+ 'Proceed reading': 'Continue Listening',
171
+ 'Without topic': 'Without a topic',
172
+ 'Without rubric': 'Without a rubric',
173
+ 'Consider podcasts no visible':
174
+ 'Consider podcasts not visible for the audience',
175
+ 'Hosted by': 'Hosted by',
176
+ TutoMag: 'TutoMag',
177
+ News: 'News',
178
+ 'Known issues': 'Known issues',
179
+ Help: 'Help',
180
+ 'Podcast play error': 'An error occured while playing Podcast',
181
+ 'More episodes': 'More episodes',
182
+ Stop: 'Stop',
183
+ 'Share this page without edit and share blocks':
184
+ "Share this page without edit and share blocks",
185
+ 'Podcast in cancelled status': 'Podcast has a cancelled status',
186
+ 'Show every episode': 'Show every episode',
187
+ 'Subscribe emission': "Subscribe to the serie",
188
+ 'Rss feed parameters': 'RSS Feed settings',
189
+ 'Not share episodes before':
190
+ 'Do not share episodes before',
191
+ 'Not share episodes after':
192
+ 'Do not share episodes after',
193
+ hours: 'hour(s)',
194
+ days: 'day(s)',
195
+ Live: 'Live',
196
+ 'In live': 'In live',
197
+ 'Launch a new live': 'Create a new live',
198
+ 'Loading lives...': 'Loading lives...',
199
+ 'No live currently': "No lives currently available",
200
+ 'live upcoming': 'live will start any minute',
201
+ "live in few time":"live in the near future",
202
+ Debriefing: 'Debriefing',
203
+ Publishing: 'Publishing',
204
+ 'select productor': 'Select Producer',
205
+ 'Share newsletter': "Share a newsletter",
206
+ Configuration: 'Configuration',
207
+ 'HTML Code': 'HTML Code',
208
+ 'Listen this episode': 'Listen to this episode',
209
+ 'Display emission name': "Display the serie title",
210
+ 'Display participants list': 'Display the speakers list',
211
+ 'Choose main color': 'Choose the main color',
212
+ 'Octopus is ACPM Podcast accredited': 'Octopus is ACPM accredited',
213
+ 'Live episode': 'Current Live episodes',
214
+ 'This live will start': 'This live will start',
215
+ 'In days hours minutes seconds':
216
+ 'In {days} days {hours} hours {minutes} minutes and {seconds} seconds',
217
+ 'Open studio': 'Open studio',
218
+ 'Episode record in live': 'Episode recorded in live',
219
+ 'In a moment': 'In a moment',
220
+ 'Live to be': 'Coming soon',
221
+ 'Live terminated': 'Live terminated',
222
+ 'Next live date': 'The next live will be at {date}',
223
+ 'Not recording': 'Not recorded',
224
+ 'This live is not started yet': "This live has not started yet",
225
+ 'A live can start any moment': 'A live can start any moment',
226
+ 'Recorded in live': 'Recorded in live',
227
+ 'Podcast linked to waiting live': 'Podcast linked to an awaiting live',
228
+ Playlists: 'Playlists',
229
+ Playlist: 'Playlist',
230
+ 'All playlists': 'All playlists',
231
+ 'Look for playlist name': 'Look for playlist by title',
232
+ 'Number playlists': '{nb} playlists',
233
+ 'Playlist have not podcasts': "Playlist does not have any podcasts",
234
+ "Playlist doesn't exist": "The playlist requested doesn't exist",
235
+ 'Playlist name image': 'Playlist title {name}',
236
+ 'Create playlist': 'Create playlist',
237
+ 'Podcasts in the playlist': 'All the Podcasts in the playlist',
238
+ 'No podcasts in the playlist': "No podcasts in the playlist",
239
+ 'Start in a while': 'Starts any minute',
240
+ 'All live emission button': "All lives in the serie",
241
+ 'player parameters': 'Setting of player',
242
+ 'Start at': 'Start at',
243
+ 'sort by score': ' by relevancy score',
244
+ 'sort by alphabetical': ' sorted alphabetically',
245
+ 'sort by date': ' sorted by date',
246
+ 'Be the first to react': 'Be the first to react',
247
+ "Podcast's comments": "Podcast's comments",
248
+ '()': '({nb})',
249
+ 'Write a comment': 'Write a comment',
250
+ 'Answer a comment': 'Respond to the comment',
251
+ 'See more comments': 'See more comments',
252
+ 'To answer': 'To answer',
253
+ 'Display answers': 'Display the {nb} answers',
254
+ 'Hide answers': 'Hide answers',
255
+ 'Read more': 'Read more',
256
+ 'Read less': 'Hide',
257
+ '(nb valid comment answers)': '({nb} valide comment answers)',
258
+ 'Welcome, thanks for your comment': 'Welcome, thanks for your comment',
259
+ "Let's get acquainted :": "Let's get acquainted :",
260
+ 'Your name': 'Your name',
261
+ 'Send in progress': 'Send in progress...',
262
+ 'Error occurs while post your comment...':
263
+ "An error occured while posting your comment",
264
+ 'Comments loading error': 'An error occured while loading the Comments',
265
+ 'Certified account': 'Certified account',
266
+ 'No comments': 'No comments',
267
+ 'In response to': 'In response to',
268
+ 'Please chose a productor': 'Please chose a Producer',
269
+ 'Podcast in ERROR, please contact Saooti':
270
+ "An error occured while processing this Podcast, please contact Saooti.",
271
+ 'Podcast still available':
272
+ "Podcast available for the audience",
273
+ 'Podcasts still available':
274
+ 'Keep hidden episodes available to listeners',
275
+ 'Podcast image': "Podcast image",
276
+ 'Recaptcha error':
277
+ 'The Google Recaptcha does not think you are a human',
278
+ 'Recaptcha not active': 'The captcha google is deactivated',
279
+ 'Comment waiting':
280
+ "The comment will not be visible to other users until it has been validated",
281
+ 'Display all podcasts to validate': 'Display all podcasts to validate',
282
+ 'Display my podcasts to validate': 'Display my podcasts to validate',
283
+ 'Podcast not validated': "Podcast not validated",
284
+ 'Podcast to validate': 'Podcast to validate',
285
+ 'Change locale': 'En français',
286
+ 'Refresh': 'Refresh',
287
+ 'See associated article':"Read the article",
288
+ "Display associated article":"Display associated article",
289
+ "Copy this page URL":"Copy this page URL",
290
+ "Use beta version":"Use beta version player",
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
+ };
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',
@@ -130,7 +130,7 @@ export default {
130
130
  Advertising: 'Publicité',
131
131
  'By topic': 'Selon rubriquage',
132
132
  'By rubric': 'Par rubrique',
133
- 'Type string to filter by rubrics': 'Filtrer les rubriques par nom',
133
+ 'Type string to filter by rubrics': 'Filtrer les rubriques par intitulé',
134
134
  'No rubric filter': 'Toutes les rubriques',
135
135
  'From the :': 'Depuis le :',
136
136
  'To the :': "Jusqu'au :",
@@ -198,6 +198,7 @@ export default {
198
198
  'Loading lives...': 'Chargement des lives...',
199
199
  'No live currently': "Il n'y a aucun live actuellement",
200
200
  'live upcoming': 'live imminent',
201
+ "live in few time":"live à venir",
201
202
  Debriefing: 'Debriefing',
202
203
  Publishing: 'Publication',
203
204
  'select productor': 'Choisir un producteur',
@@ -205,7 +206,7 @@ export default {
205
206
  Configuration: 'Configuration',
206
207
  'HTML Code': 'Code HTML',
207
208
  'Listen this episode': 'Écouter ce podcast',
208
- 'Display emission name': "Afficher le nom de l'émission",
209
+ 'Display emission name': "Afficher le titre de l'émission",
209
210
  'Display participants list': 'Afficher la liste des intervenants',
210
211
  'Choose main color': 'Choisir la couleur principale',
211
212
  'Octopus is ACPM Podcast accredited': 'Octopus est accrédité ACPM Podcasts',
@@ -227,7 +228,7 @@ export default {
227
228
  Playlists: 'Playlists',
228
229
  Playlist: 'Playlist',
229
230
  'All playlists': 'Toutes les playlists',
230
- 'Look for playlist name': 'Rechercher une playlist par nom',
231
+ 'Look for playlist name': 'Rechercher une playlist par titre',
231
232
  'Number playlists': '{nb} playlists',
232
233
  'Playlist have not podcasts': "Cette playlist n'a pas d'épisodes",
233
234
  "Playlist doesn't exist": "La playlist demandée n'existe pas",
@@ -281,4 +282,18 @@ export default {
281
282
  'Display my podcasts to validate': 'Afficher mes épisodes à valider',
282
283
  'Podcast not validated': "L'épisode n'est pas validé",
283
284
  'Podcast to validate': 'Épisode à valider',
285
+ 'Change locale': 'In english',
286
+ 'Refresh': 'Rafraichir',
287
+ 'See associated article':"Lire l'article",
288
+ "Display associated article":"Afficher l'article associé",
289
+ "Copy this page URL":"Copier l'adresse de cette page",
290
+ "Use beta version":"Utiliser la version beta du player",
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",
284
299
  };
@@ -1,9 +1,10 @@
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
+ export default{
6
6
  fr: fr,
7
7
  en: en,
8
8
  educationfr: educationfr,
9
+ educationen: educationen,
9
10
  };
package/src/main.ts CHANGED
@@ -1,26 +1,49 @@
1
- /* import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'; */
2
- import { createApp, h } from 'vue';
3
- import { createI18n, useI18n } from 'vue-i18n'
1
+ import { createApp } from 'vue';
2
+ import { VueReCaptcha } from 'vue-recaptcha-v3';
3
+ /* import {
4
+ ModalPlugin,
5
+ FormRadioPlugin,
6
+ CardPlugin,
7
+ ButtonPlugin,
8
+ DropdownPlugin,
9
+ PopoverPlugin,
10
+ TabsPlugin,
11
+ FormGroupPlugin,
12
+ FormTextareaPlugin,
13
+ CollapsePlugin } from 'bootstrap-vue-3'; */
14
+ /* import bootstrap from 'bootstrap-vue-3';
15
+ import 'bootstrap-vue-3/dist/bootstrap-vue-3.css'; */
16
+ import App from './App.vue';
17
+ import { createI18n } from 'vue-i18n';
4
18
  import I18nResources from './locale/messages';
5
- import router from './router/router';
6
- import moment from 'moment';
19
+ import router from '@/router/router';
20
+ const moment = require('moment');
7
21
  import store from '@/store/AppStore';
8
- let paramStore = require('./store/paramStore');
9
- import App from './App.vue';
10
- import { VueReCaptcha } from "vue-recaptcha-v3";
11
- moment.locale('fr');
12
- //Gestion de l'i18n
13
- let messages:any = I18nResources;
22
+ const paramStore = require('./store/paramStore');
23
+ /* import 'popper.js/dist/popper.min.js'; */
24
+ /* import 'jquery/src/jquery.js'; */
25
+ import 'jquery';
26
+ import 'bootstrap/dist/js/bootstrap.bundle.min.js';
27
+
28
+
29
+ //TODO
30
+ const navigatorLang = navigator.language /* || navigator.userLanguage */;
31
+ let language = 'fr';
32
+ if(navigatorLang.includes('en')){
33
+ language = 'en';
34
+ }
35
+ let messages: any = I18nResources;
14
36
  if (store.state.general.education) {
15
37
  messages = {
16
38
  fr: { ...I18nResources.fr, ...I18nResources.educationfr },
17
- en: I18nResources.en,
39
+ en: { ...I18nResources.en, ...I18nResources.educationen },
18
40
  };
19
41
  }
20
42
  const i18n = createI18n({
21
- locale: 'fr',
43
+ locale: language,
22
44
  messages: messages,
23
45
  });
46
+ moment.locale(language);
24
47
 
25
48
  // Initialisation store
26
49
  paramStore
@@ -40,22 +63,21 @@ paramStore
40
63
  footer: {},
41
64
  })
42
65
  .then(() => {
43
- let app = createApp({
44
- components: {
45
- App,
46
- },
47
- setup() {
48
- const { t } = useI18n()
49
- return { t }
50
- },
51
- render: () => h(App),
52
- })
53
- /* app.use(BootstrapVue);
54
- app.use(IconsPlugin); */
55
- app.use(router);
56
- app.use(store);
57
- app.use(i18n);
58
- app.use(VueReCaptcha as any, { siteKey: '6LfyP_4ZAAAAAPODj8nov2LvosIwcX0GYeBSungh' });
59
-
60
- app.mount('#app');
61
- });
66
+ createApp(App)
67
+ .use(i18n)
68
+ .use(store)
69
+ .use(router)
70
+ /* .use(bootstrap) */
71
+ .use(VueReCaptcha, { siteKey: '6LfyP_4ZAAAAAPODj8nov2LvosIwcX0GYeBSungh' })
72
+ /* .use(ModalPlugin)
73
+ .use(FormRadioPlugin)
74
+ .use(CardPlugin)
75
+ .use(ButtonPlugin)
76
+ .use(FormTextareaPlugin)
77
+ .use(DropdownPlugin)
78
+ .use(PopoverPlugin)
79
+ .use(TabsPlugin)
80
+ .use(FormGroupPlugin)
81
+ .use(CollapsePlugin) */
82
+ .mount('#app');
83
+ });