@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
package/package.json
CHANGED
|
@@ -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'
|
|
173
|
+
language: 'short',
|
|
174
174
|
largest: 1,
|
|
175
175
|
round: true,
|
|
176
176
|
languages: {
|
|
177
|
-
|
|
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
|
}
|