@panoramax/web-viewer 4.0.1-develop-b225f369 → 4.0.1-develop-8bf4091d
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/CHANGELOG.md +4 -0
- package/build/index.js +31 -24
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/menus/PictureMetadata.js +11 -0
- package/src/translations/en.json +2 -0
- package/src/translations/fr.json +2 -0
- package/src/translations/it.json +3 -1
package/package.json
CHANGED
|
@@ -211,6 +211,17 @@ export default class PictureMetadata extends LitElement {
|
|
|
211
211
|
style: value.length > 30 ? "width: 100%" : undefined
|
|
212
212
|
};
|
|
213
213
|
});
|
|
214
|
+
exifData.unshift({
|
|
215
|
+
content: html`
|
|
216
|
+
<pnx-link-button
|
|
217
|
+
size="sm"
|
|
218
|
+
target="_blank"
|
|
219
|
+
href="https://exiv2.org/metadata.html"
|
|
220
|
+
title=${this._parent?._t.pnx.metadata_exif_doc_title}
|
|
221
|
+
>${fa(faInfoCircle)} ${this._parent?._t.pnx.metadata_exif_doc}</pnx-link-button>
|
|
222
|
+
`,
|
|
223
|
+
style: "width: 100%"
|
|
224
|
+
});
|
|
214
225
|
|
|
215
226
|
// General metadata
|
|
216
227
|
const overview = [
|
package/src/translations/en.json
CHANGED
|
@@ -169,6 +169,8 @@
|
|
|
169
169
|
"metadata_exif": "EXIF",
|
|
170
170
|
"metadata_exif_name": "Tag",
|
|
171
171
|
"metadata_exif_value": "Value",
|
|
172
|
+
"metadata_exif_doc": "Docs for EXIF tags",
|
|
173
|
+
"metadata_exif_doc_title": "Go to Exiv2 documentation to have full details on EXIF and XMP tags definitions",
|
|
172
174
|
"report": "Report",
|
|
173
175
|
"report_auth": "This report will be sent using your account \"{a}\"",
|
|
174
176
|
"report_nature_label": "Nature of the issue",
|
package/src/translations/fr.json
CHANGED
|
@@ -169,6 +169,8 @@
|
|
|
169
169
|
"metadata_exif": "EXIF",
|
|
170
170
|
"metadata_exif_name": "Balise",
|
|
171
171
|
"metadata_exif_value": "Valeur",
|
|
172
|
+
"metadata_exif_doc": "Doc des attributs EXIF",
|
|
173
|
+
"metadata_exif_doc_title": "Acééder à la doc Exiv2 pour en savoir plus sur les attributs EXIF et XMP",
|
|
172
174
|
"report": "Signaler",
|
|
173
175
|
"report_auth": "Ce signalement sera envoyé en utilisant votre compte \"{a}\"",
|
|
174
176
|
"report_nature_label": "Nature du problème",
|
package/src/translations/it.json
CHANGED
|
@@ -183,7 +183,9 @@
|
|
|
183
183
|
"contribute_id": "Contribuisci a OpenStreetMap con l’editor iD",
|
|
184
184
|
"geo_uri": "App esterna",
|
|
185
185
|
"filter_date_6months": "6 mesi",
|
|
186
|
-
"picture_all": "Tutte"
|
|
186
|
+
"picture_all": "Tutte",
|
|
187
|
+
"metadata_exif_doc": "Doc per gli attributi EXIF",
|
|
188
|
+
"metadata_exif_doc_title": "Vai alla documentazione di Exiv2 per i dettagli completi sulle definizioni degli attributi EXIF e XMP"
|
|
187
189
|
},
|
|
188
190
|
"psv": {
|
|
189
191
|
"loadError": "Impossibile caricare l’immagine panoramica",
|