@saooti/octopus-sdk 30.0.67 → 30.0.68

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 CHANGED
@@ -564,4 +564,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
564
564
  * 30.0.65 OAuthType
565
565
  * 30.0.66 ScrollBehavior
566
566
  * 30.0.67 Parlement européen
567
+ * 30.0.68 Parlement européen
567
568
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.67",
3
+ "version": "30.0.68",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -214,10 +214,7 @@ export default defineComponent({
214
214
  },
215
215
  date(): string {
216
216
  if (this.podcast && 1970 !== moment(this.podcast.pubDate).year()){
217
- if('fr' === this.$i18n.locale){
218
- return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
219
- }
220
- return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
217
+ return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
221
218
  }
222
219
  return '';
223
220
  },