@saooti/octopus-sdk 30.0.72 → 30.0.73

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
@@ -569,4 +569,4 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
569
569
  * 30.0.70 Améliorations 30
570
570
  * 30.0.71 Parlement européen
571
571
  * 30.0.72 Ajout des traductions
572
-
572
+ * 30.0.73 Ajout classe css
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.72",
3
+ "version": "30.0.73",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  v-if="animators && 0 !== animators.length"
4
- class="d-flex align-items-center justify-content-start"
4
+ class="d-flex align-items-center justify-content-start animators-item"
5
5
  >
6
6
  <router-link
7
7
  v-for="(animator, index) in animators"
@@ -170,21 +170,11 @@ export default defineComponent({
170
170
  if (this.podcast.duration <= 1) return '';
171
171
  if (this.podcast.duration > 600000) {
172
172
  return humanizeDuration(this.podcast.duration, {
173
- language: 'short'+this.$i18n.locale.charAt(0).toUpperCase() + this.$i18n.locale.slice(1),
173
+ language: 'short',
174
174
  largest: 1,
175
175
  round: true,
176
176
  languages: {
177
- shortFr: {
178
- y: () => 'années',
179
- mo: () => 'mois',
180
- w: () => 'semaines',
181
- d: () => 'jours',
182
- h: () => 'h',
183
- m: () => 'min',
184
- s: () => 'sec',
185
- ms: () => 'ms',
186
- },
187
- shortEn: {
177
+ short: {
188
178
  y: () => 'years',
189
179
  mo: () => 'months',
190
180
  w: () => 'weeks',
@@ -194,16 +184,6 @@ export default defineComponent({
194
184
  s: () => 'sec',
195
185
  ms: () => 'ms',
196
186
  },
197
- shortIt: {
198
- y: () => 'anni',
199
- mo: () => 'mesi',
200
- w: () => 'settimane',
201
- d: () => 'giorni',
202
- h: () => 'h',
203
- m: () => 'min',
204
- s: () => 'sec',
205
- ms: () => 'ms',
206
- },
207
187
  },
208
188
  });
209
189
  }