@saooti/octopus-sdk 30.0.62 → 30.0.63
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 +2 -1
- package/package.json +1 -1
- package/src/components/display/podcasts/PodcastItem.vue +10 -0
- package/src/locale/it.ts +3 -1
- package/src/main.ts +1 -1
package/README.md
CHANGED
|
@@ -558,4 +558,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
558
558
|
* 30.0.59 Pb productorChooser
|
|
559
559
|
* 30.0.60 PlaylistPodcastInlineList
|
|
560
560
|
* 30.0.61 Page podcast -> init recherche
|
|
561
|
-
* 30.0.62 Italian translation
|
|
561
|
+
* 30.0.62 Italian translation
|
|
562
|
+
* 30.0.63 Italian translation
|
package/package.json
CHANGED
|
@@ -197,6 +197,16 @@ export default defineComponent({
|
|
|
197
197
|
s: () => 'sec',
|
|
198
198
|
ms: () => 'ms',
|
|
199
199
|
},
|
|
200
|
+
shortIt: {
|
|
201
|
+
y: () => 'anni',
|
|
202
|
+
mo: () => 'mesi',
|
|
203
|
+
w: () => 'settimane',
|
|
204
|
+
d: () => 'giorni',
|
|
205
|
+
h: () => 'h',
|
|
206
|
+
m: () => 'min',
|
|
207
|
+
s: () => 'sec',
|
|
208
|
+
ms: () => 'ms',
|
|
209
|
+
},
|
|
200
210
|
},
|
|
201
211
|
});
|
|
202
212
|
}
|
package/src/locale/it.ts
CHANGED
|
@@ -68,7 +68,7 @@ export default{
|
|
|
68
68
|
'Episode name image': "Immagine dell'episodio {name}",
|
|
69
69
|
'More episodes of this emission': "Altri episodi di questa serie",
|
|
70
70
|
'More episodes of this category : {name}': "Altri episodi della categoria: {name}",
|
|
71
|
-
'All podcast
|
|
71
|
+
'All podcast emission button': "Seleziona tutte le serie",
|
|
72
72
|
Duration: 'Durata: {duration}',
|
|
73
73
|
Animator: 'Host',
|
|
74
74
|
'No category filter': 'Nessun filtro per la categoria',
|
|
@@ -293,4 +293,6 @@ export default{
|
|
|
293
293
|
'From RSS': "Da un RSS Feed ",
|
|
294
294
|
"User menu":"Menu utente",
|
|
295
295
|
'Podcast tags': 'Tag podcast',
|
|
296
|
+
"Term of use":"Termini d'uso",
|
|
297
|
+
'More episodes of this category : ': "Altri episodi su questo tema : {name}",
|
|
296
298
|
};
|
package/src/main.ts
CHANGED