@saooti/octopus-sdk 30.0.67 → 30.0.70
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 +3 -0
- package/package.json +1 -1
- package/src/assets/bootstrap-diff.scss +6 -0
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -4
- package/src/components/misc/HomeDropdown.vue +7 -7
- package/src/components/misc/Player.vue +1 -1
- package/src/components/misc/PlayerProgressBar.vue +24 -18
- package/src/locale/it.ts +3 -3
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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
|
},
|
|
@@ -81,14 +81,14 @@
|
|
|
81
81
|
>
|
|
82
82
|
{{ $t('TutoMag') }}
|
|
83
83
|
</a>
|
|
84
|
-
<hr class="dropdown-divider">
|
|
85
|
-
<a
|
|
86
|
-
class="dropdown-item"
|
|
87
|
-
href="/sso/logout"
|
|
88
|
-
>
|
|
89
|
-
{{ $t('Logout') }}
|
|
90
|
-
</a>
|
|
91
84
|
</template>
|
|
85
|
+
<hr class="dropdown-divider">
|
|
86
|
+
<a
|
|
87
|
+
class="dropdown-item"
|
|
88
|
+
href="/sso/logout"
|
|
89
|
+
>
|
|
90
|
+
{{ $t('Logout') }}
|
|
91
|
+
</a>
|
|
92
92
|
</template>
|
|
93
93
|
</div>
|
|
94
94
|
</div>
|
|
@@ -147,24 +147,30 @@ export default defineComponent({
|
|
|
147
147
|
|
|
148
148
|
<style lang="scss">
|
|
149
149
|
.octopus-app{
|
|
150
|
-
.player-grow-content {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
150
|
+
.player-grow-content {
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
flex-grow: 1;
|
|
154
|
+
flex-shrink: 1;
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
font-size: 0.8rem;
|
|
157
|
+
.progress {
|
|
158
|
+
height: 4px;
|
|
159
|
+
position: relative;
|
|
160
|
+
@media (max-width: 960px) {
|
|
161
|
+
height: 8px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
.progress-bar-duration {
|
|
165
|
+
width: 10px;
|
|
166
|
+
}
|
|
167
|
+
.progress-bar {
|
|
168
|
+
height: 4px;
|
|
169
|
+
position: absolute;
|
|
170
|
+
@media (max-width: 960px) {
|
|
171
|
+
height: 8px;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
167
174
|
}
|
|
168
175
|
}
|
|
169
|
-
}
|
|
170
176
|
</style>
|
package/src/locale/it.ts
CHANGED
|
@@ -107,7 +107,7 @@ export default{
|
|
|
107
107
|
'Authorized advertising': 'Pubblicità autorizzata',
|
|
108
108
|
Distribute: 'Distribuzione',
|
|
109
109
|
'Rss feed:': 'RSS Feed:',
|
|
110
|
-
'See more': '
|
|
110
|
+
'See more': 'Ascolta altri',
|
|
111
111
|
'Search results': 'Cerca risultati per "{query}"',
|
|
112
112
|
'Search - no results': 'Ricerca - nessun risultato per "{query}"',
|
|
113
113
|
Downloading: 'In download',
|
|
@@ -124,7 +124,7 @@ export default{
|
|
|
124
124
|
'Embed link': 'Inserisci lettore',
|
|
125
125
|
'Embedly link': 'Player link',
|
|
126
126
|
'Direct link': 'Audio link',
|
|
127
|
-
'Advanced filters': '
|
|
127
|
+
'Advanced filters': 'Ricerca avanzata',
|
|
128
128
|
Advertising: 'Pubblicità',
|
|
129
129
|
'By topic': 'Per tema',
|
|
130
130
|
'By rubric': 'Per rubrica',
|
|
@@ -285,7 +285,7 @@ export default{
|
|
|
285
285
|
"Copy this page URL":"Copia la URL di questa pagina",
|
|
286
286
|
"Custom version":"Versione customizzata",
|
|
287
287
|
"All":"Tutto",
|
|
288
|
-
'By category': 'Per categoria
|
|
288
|
+
'By category': 'Per categoria',
|
|
289
289
|
"Add a sort criterion by topic":"Aggiungi un criterio di suddivisione per tema",
|
|
290
290
|
'Share QR Code': "Condividi il QR Code",
|
|
291
291
|
"Download":"Download",
|