@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.62",
3
+ "version": "30.0.63",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -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 serie button': "Seleziona tutte le serie",
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
@@ -16,7 +16,7 @@ import 'bootstrap/dist/js/bootstrap.bundle.min.js';
16
16
 
17
17
  //TODO
18
18
  const navigatorLang = navigator.language /* || navigator.userLanguage */;
19
- let language = 'fr';
19
+ let language = 'it';
20
20
  if(navigatorLang.includes('en')){
21
21
  language = 'en';
22
22
  }