geopic-tag-reader 1.5.0__py3-none-any.whl → 1.7.0__py3-none-any.whl
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.
- geopic_tag_reader/__init__.py +1 -1
- geopic_tag_reader/camera.py +6 -5
- geopic_tag_reader/cameras.csv +2 -2
- geopic_tag_reader/reader.py +53 -16
- geopic_tag_reader/translations/ar/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/ar/LC_MESSAGES/geopic_tag_reader.po +196 -0
- geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.po +1 -1
- geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po +3 -2
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +22 -22
- geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.po +1 -1
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +2 -2
- geopic_tag_reader/translations/geopic_tag_reader.pot +21 -21
- geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.po +3 -3
- geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.po +13 -13
- geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.po +3 -2
- geopic_tag_reader/translations/ti/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/ti/LC_MESSAGES/geopic_tag_reader.po +196 -0
- {geopic_tag_reader-1.5.0.dist-info → geopic_tag_reader-1.7.0.dist-info}/METADATA +1 -1
- {geopic_tag_reader-1.5.0.dist-info → geopic_tag_reader-1.7.0.dist-info}/RECORD +30 -26
- {geopic_tag_reader-1.5.0.dist-info → geopic_tag_reader-1.7.0.dist-info}/WHEEL +0 -0
- {geopic_tag_reader-1.5.0.dist-info → geopic_tag_reader-1.7.0.dist-info}/entry_points.txt +0 -0
- {geopic_tag_reader-1.5.0.dist-info → geopic_tag_reader-1.7.0.dist-info}/licenses/LICENSE +0 -0
geopic_tag_reader/__init__.py
CHANGED
geopic_tag_reader/camera.py
CHANGED
|
@@ -19,6 +19,7 @@ GPS_ACCURACY_MAKE = {
|
|
|
19
19
|
"blackvue": 4,
|
|
20
20
|
"tectectec": 4,
|
|
21
21
|
"arashi vision": 4,
|
|
22
|
+
"qoocam": 4,
|
|
22
23
|
# Smartphone GPS
|
|
23
24
|
"samsung": 5,
|
|
24
25
|
"xiaomi": 5,
|
|
@@ -118,7 +119,7 @@ def find_camera(make: Optional[str] = None, model: Optional[str] = None) -> Opti
|
|
|
118
119
|
return next((cameras[matchMake][matchModel] for matchModel in cameras[matchMake].keys() if model.lower().startswith(matchModel)), None)
|
|
119
120
|
|
|
120
121
|
|
|
121
|
-
def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optional[
|
|
122
|
+
def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optional[int] = None, height: Optional[int] = None) -> bool:
|
|
122
123
|
"""
|
|
123
124
|
Checks if given camera is equirectangular (360°) based on its make, model and dimensions (width, height).
|
|
124
125
|
|
|
@@ -128,11 +129,11 @@ def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optio
|
|
|
128
129
|
False
|
|
129
130
|
>>> is_360("GoPro", "Max 360")
|
|
130
131
|
True
|
|
131
|
-
>>> is_360("GoPro", "Max 360",
|
|
132
|
+
>>> is_360("GoPro", "Max 360", 2048, 1024)
|
|
132
133
|
True
|
|
133
|
-
>>> is_360("GoPro", "Max 360",
|
|
134
|
+
>>> is_360("GoPro", "Max 360", 1024, 768)
|
|
134
135
|
False
|
|
135
|
-
>>> is_360("RICOH", "THETA S",
|
|
136
|
+
>>> is_360("RICOH", "THETA S", 5376, 2688)
|
|
136
137
|
True
|
|
137
138
|
"""
|
|
138
139
|
|
|
@@ -142,7 +143,7 @@ def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optio
|
|
|
142
143
|
return False
|
|
143
144
|
|
|
144
145
|
# Check width and height are equirectangular
|
|
145
|
-
if not ((width is None or height is None) or
|
|
146
|
+
if not ((width is None or height is None) or width == 2 * height):
|
|
146
147
|
return False
|
|
147
148
|
|
|
148
149
|
return camera.is_360
|
geopic_tag_reader/cameras.csv
CHANGED
|
@@ -1311,8 +1311,8 @@
|
|
|
1311
1311
|
"Jenoptik";"JD C 5.0 SL";"7.11";;
|
|
1312
1312
|
"JVC";"GC-QX3HD";"7.11";;
|
|
1313
1313
|
"JVC";"GC-QX5HD";"7.11";;
|
|
1314
|
-
"Kandao";"Qoocam 3";;"1";
|
|
1315
|
-
"Kandao";"Qoocam 3 Ultra";;"1";
|
|
1314
|
+
"Kandao";"Qoocam 3";;"1";"4"
|
|
1315
|
+
"Kandao";"Qoocam 3 Ultra";;"1";"4"
|
|
1316
1316
|
"Kodak";"DC200";"7.27";;
|
|
1317
1317
|
"Kodak";"DC200 plus";"7.27";;
|
|
1318
1318
|
"Kodak";"DC210 plus";"7.27";;
|
geopic_tag_reader/reader.py
CHANGED
|
@@ -179,20 +179,17 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
179
179
|
GeoPicTags: Extracted metadata from picture
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
|
-
_ = i18n_init(lang_code)
|
|
183
|
-
warnings = []
|
|
184
|
-
img = pyexiv2.ImageData(picture)
|
|
185
182
|
data = {}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
183
|
+
with pyexiv2.ImageData(picture) as img:
|
|
184
|
+
data.update(img.read_exif())
|
|
185
|
+
data.update(img.read_iptc())
|
|
186
|
+
data.update(img.read_xmp())
|
|
187
|
+
width = img.get_pixel_width()
|
|
188
|
+
height = img.get_pixel_height()
|
|
191
189
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
img.close()
|
|
190
|
+
imgComment = img.read_comment()
|
|
191
|
+
if imgComment is not None and len(imgComment.strip()) > 0:
|
|
192
|
+
data["Exif.Photo.UserComment"] = imgComment
|
|
196
193
|
|
|
197
194
|
# Read Mapillary tags
|
|
198
195
|
if "Exif.Image.ImageDescription" in data:
|
|
@@ -204,6 +201,27 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
204
201
|
except:
|
|
205
202
|
pass
|
|
206
203
|
|
|
204
|
+
return getPictureMetadata(data, width, height, lang_code)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
def getPictureMetadata(data: dict, width: int, height: int, lang_code: str = "en") -> GeoPicTags:
|
|
208
|
+
"""Extracts metadata from already read metadata.
|
|
209
|
+
|
|
210
|
+
This method is useful when you already have the metadata read by `readPictureMetadata` and you want to extract the metadata from it.
|
|
211
|
+
|
|
212
|
+
Args:
|
|
213
|
+
data (dict): Raw EXIF tags / iptc / xmp / description from picture. MUST be comming from a previsou parse by the `readPictureMetadata` method.
|
|
214
|
+
width (int): Picture width
|
|
215
|
+
height (int): Picture height
|
|
216
|
+
lang_code (str): Language code for translating error labels
|
|
217
|
+
|
|
218
|
+
Returns:
|
|
219
|
+
GeoPicTags: Extracted metadata from picture
|
|
220
|
+
"""
|
|
221
|
+
|
|
222
|
+
_ = i18n_init(lang_code)
|
|
223
|
+
warnings = []
|
|
224
|
+
|
|
207
225
|
# Sanitize charset information
|
|
208
226
|
for k, v in data.items():
|
|
209
227
|
if isinstance(v, str):
|
|
@@ -335,20 +353,35 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
335
353
|
# Cropped pano data
|
|
336
354
|
crop = None
|
|
337
355
|
if (
|
|
338
|
-
isExifTagUsable(data, "Xmp.GPano.FullPanoWidthPixels", int)
|
|
339
|
-
and isExifTagUsable(data, "Xmp.GPano.FullPanoHeightPixels", int)
|
|
356
|
+
(isExifTagUsable(data, "Xmp.GPano.FullPanoWidthPixels", int) or isExifTagUsable(data, "Xmp.GPano.FullPanoHeightPixels", int))
|
|
340
357
|
and isExifTagUsable(data, "Xmp.GPano.CroppedAreaImageWidthPixels", int)
|
|
341
358
|
and isExifTagUsable(data, "Xmp.GPano.CroppedAreaImageHeightPixels", int)
|
|
342
359
|
and isExifTagUsable(data, "Xmp.GPano.CroppedAreaLeftPixels", int)
|
|
343
360
|
and isExifTagUsable(data, "Xmp.GPano.CroppedAreaTopPixels", int)
|
|
344
361
|
):
|
|
345
|
-
fw = int(data["Xmp.GPano.FullPanoWidthPixels"])
|
|
346
|
-
fh = int(data["Xmp.GPano.FullPanoHeightPixels"])
|
|
347
362
|
w = int(data["Xmp.GPano.CroppedAreaImageWidthPixels"])
|
|
348
363
|
h = int(data["Xmp.GPano.CroppedAreaImageHeightPixels"])
|
|
349
364
|
l = int(data["Xmp.GPano.CroppedAreaLeftPixels"])
|
|
350
365
|
t = int(data["Xmp.GPano.CroppedAreaTopPixels"])
|
|
351
366
|
|
|
367
|
+
# Compute full width & height, even if one is missing
|
|
368
|
+
fw = None
|
|
369
|
+
fh = None
|
|
370
|
+
if isExifTagUsable(data, "Xmp.GPano.FullPanoWidthPixels", int):
|
|
371
|
+
fw = int(data["Xmp.GPano.FullPanoWidthPixels"])
|
|
372
|
+
if isExifTagUsable(data, "Xmp.GPano.FullPanoHeightPixels", int):
|
|
373
|
+
fh = int(data["Xmp.GPano.FullPanoHeightPixels"])
|
|
374
|
+
if fw is None:
|
|
375
|
+
fw = fh * 2 # type: ignore
|
|
376
|
+
# Center image horizontally if full weight is guessed
|
|
377
|
+
if fw > w and l == 0:
|
|
378
|
+
l = math.floor((fw - w) / 2)
|
|
379
|
+
if fh is None:
|
|
380
|
+
fh = math.floor(fw / 2) # type: ignore
|
|
381
|
+
# Center image vertically if full height is guessed
|
|
382
|
+
if fh > h and t == 0:
|
|
383
|
+
t = math.floor((fh - h) / 2)
|
|
384
|
+
|
|
352
385
|
if fw > w or fh > h:
|
|
353
386
|
crop = CropValues(fw, fh, w, h, l, t)
|
|
354
387
|
|
|
@@ -365,6 +398,10 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
365
398
|
# 360° based on GPano EXIF tag
|
|
366
399
|
if isExifTagUsable(data, "Xmp.GPano.ProjectionType"):
|
|
367
400
|
pic_type = data["Xmp.GPano.ProjectionType"]
|
|
401
|
+
|
|
402
|
+
# Check for cylindrical
|
|
403
|
+
if pic_type == "cylindrical" and crop is not None:
|
|
404
|
+
pic_type = "equirectangular"
|
|
368
405
|
# 360° based on known models
|
|
369
406
|
elif camera.is_360(make, model, width, height):
|
|
370
407
|
pic_type = "equirectangular"
|
|
Binary file
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
|
10
|
+
"POT-Creation-Date: 2025-05-09 12:12+0200\n"
|
|
11
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
12
|
+
"Last-Translator: Automatically generated\n"
|
|
13
|
+
"Language-Team: none\n"
|
|
14
|
+
"Language: ar\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
|
|
19
|
+
#: geopic_tag_reader/main.py:26
|
|
20
|
+
msgid "Latitude:"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
#: geopic_tag_reader/main.py:27
|
|
24
|
+
msgid "Longitude:"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: geopic_tag_reader/main.py:28
|
|
28
|
+
msgid "GPS accuracy:"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
31
|
+
#: geopic_tag_reader/main.py:28 geopic_tag_reader/main.py:31
|
|
32
|
+
#: geopic_tag_reader/main.py:32
|
|
33
|
+
msgid "not set"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: geopic_tag_reader/main.py:29
|
|
37
|
+
msgid "Timestamp:"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: geopic_tag_reader/main.py:31
|
|
41
|
+
msgid "(GPS)"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: geopic_tag_reader/main.py:32
|
|
45
|
+
msgid "(Camera)"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: geopic_tag_reader/main.py:33
|
|
49
|
+
msgid "Heading:"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: geopic_tag_reader/main.py:34
|
|
53
|
+
msgid "Type:"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: geopic_tag_reader/main.py:35
|
|
57
|
+
msgid "Make:"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: geopic_tag_reader/main.py:36
|
|
61
|
+
msgid "Model:"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: geopic_tag_reader/main.py:37
|
|
65
|
+
msgid "Focal length:"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: geopic_tag_reader/main.py:38
|
|
69
|
+
msgid "Field of view:"
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: geopic_tag_reader/main.py:39
|
|
73
|
+
msgid "Sensor width:"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: geopic_tag_reader/main.py:40
|
|
77
|
+
msgid "Crop parameters:"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
#: geopic_tag_reader/main.py:41
|
|
81
|
+
msgid "Pitch:"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
#: geopic_tag_reader/main.py:42
|
|
85
|
+
msgid "Roll:"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
#: geopic_tag_reader/main.py:43
|
|
89
|
+
msgid "Yaw:"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
#: geopic_tag_reader/main.py:46
|
|
93
|
+
msgid "Warnings raised by reader:"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: geopic_tag_reader/reader.py:246
|
|
97
|
+
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: geopic_tag_reader/reader.py:248
|
|
101
|
+
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: geopic_tag_reader/reader.py:276
|
|
105
|
+
#, python-brace-format
|
|
106
|
+
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
#: geopic_tag_reader/reader.py:306
|
|
110
|
+
msgid "No heading value was found, this reduces usability of picture"
|
|
111
|
+
msgstr ""
|
|
112
|
+
|
|
113
|
+
#: geopic_tag_reader/reader.py:349
|
|
114
|
+
msgid ""
|
|
115
|
+
"No make and model value found, no assumption on focal length or GPS "
|
|
116
|
+
"precision can be made"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: geopic_tag_reader/reader.py:399
|
|
120
|
+
msgid ""
|
|
121
|
+
"No focal length value was found, this prevents calculating field of view"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: geopic_tag_reader/reader.py:451
|
|
125
|
+
msgid "No GPS accuracy value found, this prevents computing a quality score"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
#: geopic_tag_reader/reader.py:453
|
|
129
|
+
msgid ""
|
|
130
|
+
"No GPS horizontal positioning error value found, GPS accuracy can only be "
|
|
131
|
+
"estimated"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
#: geopic_tag_reader/reader.py:460
|
|
135
|
+
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
136
|
+
msgstr ""
|
|
137
|
+
|
|
138
|
+
#: geopic_tag_reader/reader.py:466
|
|
139
|
+
msgid "No valid date in picture EXIF tags"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
142
|
+
#: geopic_tag_reader/reader.py:471
|
|
143
|
+
msgid "The picture is missing mandatory metadata:"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
#: geopic_tag_reader/reader.py:585 geopic_tag_reader/reader.py:614
|
|
147
|
+
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
#: geopic_tag_reader/reader.py:593
|
|
151
|
+
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
#: geopic_tag_reader/reader.py:596 geopic_tag_reader/reader.py:620
|
|
155
|
+
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: geopic_tag_reader/reader.py:681
|
|
159
|
+
msgid "Precise timezone information not found, fallback to UTC"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: geopic_tag_reader/reader.py:686
|
|
163
|
+
msgid ""
|
|
164
|
+
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
165
|
+
"fallback to UTC"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
#: geopic_tag_reader/reader.py:690
|
|
169
|
+
#, python-brace-format
|
|
170
|
+
msgid ""
|
|
171
|
+
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
#: geopic_tag_reader/reader.py:722
|
|
175
|
+
#, python-brace-format
|
|
176
|
+
msgid ""
|
|
177
|
+
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
178
|
+
"group)"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
#: geopic_tag_reader/reader.py:753
|
|
182
|
+
#, python-brace-format
|
|
183
|
+
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: geopic_tag_reader/reader.py:779
|
|
187
|
+
#, python-brace-format
|
|
188
|
+
msgid ""
|
|
189
|
+
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
190
|
+
"not matching value from EXIF field ({microseconds}). Max value will be kept."
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: geopic_tag_reader/writer.py:132
|
|
194
|
+
#, python-brace-format
|
|
195
|
+
msgid "Unsupported key in additional tags ({k})"
|
|
196
|
+
msgstr ""
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-11-24 15:36+0100\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
11
|
+
"PO-Revision-Date: 2025-04-16 08:21+0000\n"
|
|
12
12
|
"Last-Translator: ERYpTION <eryption.ar9q2@slmail.me>\n"
|
|
13
13
|
"Language-Team: Danish <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/da/>\n"
|
|
Binary file
|
|
@@ -8,8 +8,9 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-07-10 13:05+0200\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2025-07-31 16:22+0000\n"
|
|
12
|
+
"Last-Translator: osmmapper222 <osmmapper222@users.noreply.weblate.panoramax."
|
|
13
|
+
"xyz>\n"
|
|
13
14
|
"Language-Team: German <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
15
|
"tag-reader/de/>\n"
|
|
15
16
|
"Language: de\n"
|
|
Binary file
|
|
@@ -7,8 +7,8 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date: 2025-
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
10
|
+
"POT-Creation-Date: 2025-08-25 15:13+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2025-08-25 15:13+0200\n"
|
|
12
12
|
"Last-Translator: Automatically generated\n"
|
|
13
13
|
"Language-Team: none\n"
|
|
14
14
|
"Language: en\n"
|
|
@@ -94,24 +94,24 @@ msgstr "Yaw:"
|
|
|
94
94
|
msgid "Warnings raised by reader:"
|
|
95
95
|
msgstr "Warnings raised by reader:"
|
|
96
96
|
|
|
97
|
-
#: geopic_tag_reader/reader.py:
|
|
97
|
+
#: geopic_tag_reader/reader.py:246
|
|
98
98
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
99
99
|
msgstr "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
100
100
|
|
|
101
|
-
#: geopic_tag_reader/reader.py:
|
|
101
|
+
#: geopic_tag_reader/reader.py:248
|
|
102
102
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
103
103
|
msgstr "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
104
104
|
|
|
105
|
-
#: geopic_tag_reader/reader.py:
|
|
105
|
+
#: geopic_tag_reader/reader.py:276
|
|
106
106
|
#, python-brace-format
|
|
107
107
|
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
108
108
|
msgstr "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
109
109
|
|
|
110
|
-
#: geopic_tag_reader/reader.py:
|
|
110
|
+
#: geopic_tag_reader/reader.py:306
|
|
111
111
|
msgid "No heading value was found, this reduces usability of picture"
|
|
112
112
|
msgstr "No heading value was found, this reduces usability of picture"
|
|
113
113
|
|
|
114
|
-
#: geopic_tag_reader/reader.py:
|
|
114
|
+
#: geopic_tag_reader/reader.py:349
|
|
115
115
|
msgid ""
|
|
116
116
|
"No make and model value found, no assumption on focal length or GPS "
|
|
117
117
|
"precision can be made"
|
|
@@ -119,17 +119,17 @@ msgstr ""
|
|
|
119
119
|
"No make and model value found, no assumption on focal length or GPS "
|
|
120
120
|
"precision can be made"
|
|
121
121
|
|
|
122
|
-
#: geopic_tag_reader/reader.py:
|
|
122
|
+
#: geopic_tag_reader/reader.py:418
|
|
123
123
|
msgid ""
|
|
124
124
|
"No focal length value was found, this prevents calculating field of view"
|
|
125
125
|
msgstr ""
|
|
126
126
|
"No focal length value was found, this prevents calculating field of view"
|
|
127
127
|
|
|
128
|
-
#: geopic_tag_reader/reader.py:
|
|
128
|
+
#: geopic_tag_reader/reader.py:470
|
|
129
129
|
msgid "No GPS accuracy value found, this prevents computing a quality score"
|
|
130
130
|
msgstr "No GPS accuracy value found, this prevents computing a quality score"
|
|
131
131
|
|
|
132
|
-
#: geopic_tag_reader/reader.py:
|
|
132
|
+
#: geopic_tag_reader/reader.py:472
|
|
133
133
|
msgid ""
|
|
134
134
|
"No GPS horizontal positioning error value found, GPS accuracy can only be "
|
|
135
135
|
"estimated"
|
|
@@ -137,35 +137,35 @@ msgstr ""
|
|
|
137
137
|
"No GPS horizontal positioning error value found, GPS accuracy can only be "
|
|
138
138
|
"estimated"
|
|
139
139
|
|
|
140
|
-
#: geopic_tag_reader/reader.py:
|
|
140
|
+
#: geopic_tag_reader/reader.py:479
|
|
141
141
|
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
142
142
|
msgstr "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
143
143
|
|
|
144
|
-
#: geopic_tag_reader/reader.py:
|
|
144
|
+
#: geopic_tag_reader/reader.py:485
|
|
145
145
|
msgid "No valid date in picture EXIF tags"
|
|
146
146
|
msgstr "No valid date in picture EXIF tags"
|
|
147
147
|
|
|
148
|
-
#: geopic_tag_reader/reader.py:
|
|
148
|
+
#: geopic_tag_reader/reader.py:490
|
|
149
149
|
msgid "The picture is missing mandatory metadata:"
|
|
150
150
|
msgstr "The picture is missing mandatory metadata:"
|
|
151
151
|
|
|
152
|
-
#: geopic_tag_reader/reader.py:
|
|
152
|
+
#: geopic_tag_reader/reader.py:604 geopic_tag_reader/reader.py:633
|
|
153
153
|
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
154
154
|
msgstr "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
155
155
|
|
|
156
|
-
#: geopic_tag_reader/reader.py:
|
|
156
|
+
#: geopic_tag_reader/reader.py:612
|
|
157
157
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
158
158
|
msgstr "Broken GPS coordinates in picture EXIF tags"
|
|
159
159
|
|
|
160
|
-
#: geopic_tag_reader/reader.py:
|
|
160
|
+
#: geopic_tag_reader/reader.py:615 geopic_tag_reader/reader.py:639
|
|
161
161
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
162
162
|
msgstr "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
163
163
|
|
|
164
|
-
#: geopic_tag_reader/reader.py:
|
|
164
|
+
#: geopic_tag_reader/reader.py:700
|
|
165
165
|
msgid "Precise timezone information not found, fallback to UTC"
|
|
166
166
|
msgstr "Precise timezone information not found, fallback to UTC"
|
|
167
167
|
|
|
168
|
-
#: geopic_tag_reader/reader.py:
|
|
168
|
+
#: geopic_tag_reader/reader.py:705
|
|
169
169
|
msgid ""
|
|
170
170
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
171
171
|
"fallback to UTC"
|
|
@@ -173,14 +173,14 @@ msgstr ""
|
|
|
173
173
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
174
174
|
"fallback to UTC"
|
|
175
175
|
|
|
176
|
-
#: geopic_tag_reader/reader.py:
|
|
176
|
+
#: geopic_tag_reader/reader.py:709
|
|
177
177
|
#, python-brace-format
|
|
178
178
|
msgid ""
|
|
179
179
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
180
180
|
msgstr ""
|
|
181
181
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
182
182
|
|
|
183
|
-
#: geopic_tag_reader/reader.py:
|
|
183
|
+
#: geopic_tag_reader/reader.py:741
|
|
184
184
|
#, python-brace-format
|
|
185
185
|
msgid ""
|
|
186
186
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
@@ -189,12 +189,12 @@ msgstr ""
|
|
|
189
189
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
190
190
|
"group)"
|
|
191
191
|
|
|
192
|
-
#: geopic_tag_reader/reader.py:
|
|
192
|
+
#: geopic_tag_reader/reader.py:772
|
|
193
193
|
#, python-brace-format
|
|
194
194
|
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
195
195
|
msgstr "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
196
196
|
|
|
197
|
-
#: geopic_tag_reader/reader.py:
|
|
197
|
+
#: geopic_tag_reader/reader.py:798
|
|
198
198
|
#, python-brace-format
|
|
199
199
|
msgid ""
|
|
200
200
|
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-11-24 15:36+0100\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
11
|
+
"PO-Revision-Date: 2025-04-26 18:21+0000\n"
|
|
12
12
|
"Last-Translator: Rémi Simonnin <remisimonnin@orange.fr>\n"
|
|
13
13
|
"Language-Team: Esperanto <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/eo/>\n"
|
|
Binary file
|
|
@@ -8,8 +8,8 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: \n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-10-28 11:05+0100\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2025-07-07 06:24+0000\n"
|
|
12
|
+
"Last-Translator: PanierAvide <adrien@pavie.info>\n"
|
|
13
13
|
"Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/fr/>\n"
|
|
15
15
|
"Language: fr\n"
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-08-25 15:13+0200\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -94,97 +94,97 @@ msgstr ""
|
|
|
94
94
|
msgid "Warnings raised by reader:"
|
|
95
95
|
msgstr ""
|
|
96
96
|
|
|
97
|
-
#: geopic_tag_reader/reader.py:
|
|
97
|
+
#: geopic_tag_reader/reader.py:246
|
|
98
98
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
99
99
|
msgstr ""
|
|
100
100
|
|
|
101
|
-
#: geopic_tag_reader/reader.py:
|
|
101
|
+
#: geopic_tag_reader/reader.py:248
|
|
102
102
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
103
103
|
msgstr ""
|
|
104
104
|
|
|
105
|
-
#: geopic_tag_reader/reader.py:
|
|
105
|
+
#: geopic_tag_reader/reader.py:276
|
|
106
106
|
#, python-brace-format
|
|
107
107
|
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
108
108
|
msgstr ""
|
|
109
109
|
|
|
110
|
-
#: geopic_tag_reader/reader.py:
|
|
110
|
+
#: geopic_tag_reader/reader.py:306
|
|
111
111
|
msgid "No heading value was found, this reduces usability of picture"
|
|
112
112
|
msgstr ""
|
|
113
113
|
|
|
114
|
-
#: geopic_tag_reader/reader.py:
|
|
114
|
+
#: geopic_tag_reader/reader.py:349
|
|
115
115
|
msgid ""
|
|
116
116
|
"No make and model value found, no assumption on focal length or GPS "
|
|
117
117
|
"precision can be made"
|
|
118
118
|
msgstr ""
|
|
119
119
|
|
|
120
|
-
#: geopic_tag_reader/reader.py:
|
|
120
|
+
#: geopic_tag_reader/reader.py:418
|
|
121
121
|
msgid ""
|
|
122
122
|
"No focal length value was found, this prevents calculating field of view"
|
|
123
123
|
msgstr ""
|
|
124
124
|
|
|
125
|
-
#: geopic_tag_reader/reader.py:
|
|
125
|
+
#: geopic_tag_reader/reader.py:470
|
|
126
126
|
msgid "No GPS accuracy value found, this prevents computing a quality score"
|
|
127
127
|
msgstr ""
|
|
128
128
|
|
|
129
|
-
#: geopic_tag_reader/reader.py:
|
|
129
|
+
#: geopic_tag_reader/reader.py:472
|
|
130
130
|
msgid ""
|
|
131
131
|
"No GPS horizontal positioning error value found, GPS accuracy can only be "
|
|
132
132
|
"estimated"
|
|
133
133
|
msgstr ""
|
|
134
134
|
|
|
135
|
-
#: geopic_tag_reader/reader.py:
|
|
135
|
+
#: geopic_tag_reader/reader.py:479
|
|
136
136
|
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
137
137
|
msgstr ""
|
|
138
138
|
|
|
139
|
-
#: geopic_tag_reader/reader.py:
|
|
139
|
+
#: geopic_tag_reader/reader.py:485
|
|
140
140
|
msgid "No valid date in picture EXIF tags"
|
|
141
141
|
msgstr ""
|
|
142
142
|
|
|
143
|
-
#: geopic_tag_reader/reader.py:
|
|
143
|
+
#: geopic_tag_reader/reader.py:490
|
|
144
144
|
msgid "The picture is missing mandatory metadata:"
|
|
145
145
|
msgstr ""
|
|
146
146
|
|
|
147
|
-
#: geopic_tag_reader/reader.py:
|
|
147
|
+
#: geopic_tag_reader/reader.py:604 geopic_tag_reader/reader.py:633
|
|
148
148
|
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
149
149
|
msgstr ""
|
|
150
150
|
|
|
151
|
-
#: geopic_tag_reader/reader.py:
|
|
151
|
+
#: geopic_tag_reader/reader.py:612
|
|
152
152
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
153
153
|
msgstr ""
|
|
154
154
|
|
|
155
|
-
#: geopic_tag_reader/reader.py:
|
|
155
|
+
#: geopic_tag_reader/reader.py:615 geopic_tag_reader/reader.py:639
|
|
156
156
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
157
157
|
msgstr ""
|
|
158
158
|
|
|
159
|
-
#: geopic_tag_reader/reader.py:
|
|
159
|
+
#: geopic_tag_reader/reader.py:700
|
|
160
160
|
msgid "Precise timezone information not found, fallback to UTC"
|
|
161
161
|
msgstr ""
|
|
162
162
|
|
|
163
|
-
#: geopic_tag_reader/reader.py:
|
|
163
|
+
#: geopic_tag_reader/reader.py:705
|
|
164
164
|
msgid ""
|
|
165
165
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
166
166
|
"fallback to UTC"
|
|
167
167
|
msgstr ""
|
|
168
168
|
|
|
169
|
-
#: geopic_tag_reader/reader.py:
|
|
169
|
+
#: geopic_tag_reader/reader.py:709
|
|
170
170
|
#, python-brace-format
|
|
171
171
|
msgid ""
|
|
172
172
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
173
173
|
msgstr ""
|
|
174
174
|
|
|
175
|
-
#: geopic_tag_reader/reader.py:
|
|
175
|
+
#: geopic_tag_reader/reader.py:741
|
|
176
176
|
#, python-brace-format
|
|
177
177
|
msgid ""
|
|
178
178
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
179
179
|
"group)"
|
|
180
180
|
msgstr ""
|
|
181
181
|
|
|
182
|
-
#: geopic_tag_reader/reader.py:
|
|
182
|
+
#: geopic_tag_reader/reader.py:772
|
|
183
183
|
#, python-brace-format
|
|
184
184
|
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
185
185
|
msgstr ""
|
|
186
186
|
|
|
187
|
-
#: geopic_tag_reader/reader.py:
|
|
187
|
+
#: geopic_tag_reader/reader.py:798
|
|
188
188
|
#, python-brace-format
|
|
189
189
|
msgid ""
|
|
190
190
|
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
Binary file
|
|
@@ -8,8 +8,8 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-10-28 11:05+0100\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
12
|
-
"Last-Translator: Marco <
|
|
11
|
+
"PO-Revision-Date: 2025-04-16 08:21+0000\n"
|
|
12
|
+
"Last-Translator: Marco <marco@users.noreply.weblate.panoramax.xyz>\n"
|
|
13
13
|
"Language-Team: Italian <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/it/>\n"
|
|
15
15
|
"Language: it\n"
|
|
@@ -53,7 +53,7 @@ msgstr "Tipo:"
|
|
|
53
53
|
|
|
54
54
|
#: geopic_tag_reader/main.py:34
|
|
55
55
|
msgid "Make:"
|
|
56
|
-
msgstr "
|
|
56
|
+
msgstr "Marca:"
|
|
57
57
|
|
|
58
58
|
#: geopic_tag_reader/main.py:35
|
|
59
59
|
msgid "Model:"
|
|
Binary file
|
|
@@ -8,8 +8,8 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2024-10-22 15:05+0200\n"
|
|
11
|
-
"PO-Revision-Date: 2025-03
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2025-06-03 19:06+0000\n"
|
|
12
|
+
"Last-Translator: GeoArchief <panoramax@geoarchief.nl>\n"
|
|
13
13
|
"Language-Team: Dutch <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/nl/>\n"
|
|
15
15
|
"Language: nl\n"
|
|
@@ -45,15 +45,15 @@ msgstr "(Camera)"
|
|
|
45
45
|
|
|
46
46
|
#: geopic_tag_reader/main.py:32
|
|
47
47
|
msgid "Heading:"
|
|
48
|
-
msgstr "
|
|
48
|
+
msgstr "Richtingshoek:"
|
|
49
49
|
|
|
50
50
|
#: geopic_tag_reader/main.py:33
|
|
51
51
|
msgid "Type:"
|
|
52
|
-
msgstr "
|
|
52
|
+
msgstr "Type:"
|
|
53
53
|
|
|
54
54
|
#: geopic_tag_reader/main.py:34
|
|
55
55
|
msgid "Make:"
|
|
56
|
-
msgstr "
|
|
56
|
+
msgstr "Merk:"
|
|
57
57
|
|
|
58
58
|
#: geopic_tag_reader/main.py:35
|
|
59
59
|
msgid "Model:"
|
|
@@ -65,19 +65,19 @@ msgstr "Brandpuntsafstand:"
|
|
|
65
65
|
|
|
66
66
|
#: geopic_tag_reader/main.py:37
|
|
67
67
|
msgid "Crop parameters:"
|
|
68
|
-
msgstr "
|
|
68
|
+
msgstr "Bijsnijd parameters:"
|
|
69
69
|
|
|
70
70
|
#: geopic_tag_reader/main.py:38
|
|
71
71
|
msgid "Pitch:"
|
|
72
|
-
msgstr "
|
|
72
|
+
msgstr "Pitch:"
|
|
73
73
|
|
|
74
74
|
#: geopic_tag_reader/main.py:39
|
|
75
75
|
msgid "Roll:"
|
|
76
|
-
msgstr "
|
|
76
|
+
msgstr "Roll:"
|
|
77
77
|
|
|
78
78
|
#: geopic_tag_reader/main.py:40
|
|
79
79
|
msgid "Yaw:"
|
|
80
|
-
msgstr "
|
|
80
|
+
msgstr "Yaw:"
|
|
81
81
|
|
|
82
82
|
#: geopic_tag_reader/main.py:43
|
|
83
83
|
msgid "Warnings raised by reader:"
|
|
@@ -86,12 +86,12 @@ msgstr "Waarschuwingen van lezer:"
|
|
|
86
86
|
#: geopic_tag_reader/reader.py:218
|
|
87
87
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
88
88
|
msgstr ""
|
|
89
|
-
"Gelezen breedtegraad is buiten WGS84-grenzen (
|
|
89
|
+
"Gelezen breedtegraad is buiten WGS84-grenzen (moet binnen [-90, 90] liggen)"
|
|
90
90
|
|
|
91
91
|
#: geopic_tag_reader/reader.py:220
|
|
92
92
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
93
93
|
msgstr ""
|
|
94
|
-
"Gelezen lengtegraad is buiten WGS84-grenzen (
|
|
94
|
+
"Gelezen lengtegraad is buiten WGS84-grenzen (moet binnen [-180, 180] liggen)"
|
|
95
95
|
|
|
96
96
|
#: geopic_tag_reader/reader.py:248
|
|
97
97
|
#, python-brace-format
|
|
@@ -118,7 +118,7 @@ msgstr ""
|
|
|
118
118
|
|
|
119
119
|
#: geopic_tag_reader/reader.py:484
|
|
120
120
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
121
|
-
msgstr "Ontbrekende GPS-coördinaten in EXIF-tags de van
|
|
121
|
+
msgstr "Ontbrekende GPS-coördinaten in EXIF-tags de van afbeelding"
|
|
122
122
|
|
|
123
123
|
#: geopic_tag_reader/reader.py:487 geopic_tag_reader/reader.py:511
|
|
124
124
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
@@ -179,7 +179,7 @@ msgstr "Niet-ondersteunde sleutel in bijhorende tags ({k})"
|
|
|
179
179
|
#: geopic_tag_reader/reader.py:278
|
|
180
180
|
msgid "No heading value was found, this reduces usability of picture"
|
|
181
181
|
msgstr ""
|
|
182
|
-
"Er is geen
|
|
182
|
+
"Er is geen richtingshoek gevonden, dit vermindert de bruikbaarheid van de "
|
|
183
183
|
"afbeelding"
|
|
184
184
|
|
|
185
185
|
#: geopic_tag_reader/reader.py:321
|
|
Binary file
|
|
@@ -8,8 +8,8 @@ msgstr ""
|
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"POT-Creation-Date: 2025-02-10 11:04+0100\n"
|
|
11
|
-
"PO-Revision-Date: 2025-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2025-04-15 07:48+0000\n"
|
|
12
|
+
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
|
13
13
|
"Language-Team: Swedish <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/sv/>\n"
|
|
15
15
|
"Language: sv\n"
|
|
@@ -57,6 +57,7 @@ msgid "Type:"
|
|
|
57
57
|
msgstr "Typ:"
|
|
58
58
|
|
|
59
59
|
#: geopic_tag_reader/main.py:35
|
|
60
|
+
#, fuzzy
|
|
60
61
|
msgid "Make:"
|
|
61
62
|
msgstr "Tillverkare:"
|
|
62
63
|
|
|
Binary file
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
|
10
|
+
"POT-Creation-Date: 2025-05-09 12:12+0200\n"
|
|
11
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
12
|
+
"Last-Translator: Automatically generated\n"
|
|
13
|
+
"Language-Team: none\n"
|
|
14
|
+
"Language: ti\n"
|
|
15
|
+
"MIME-Version: 1.0\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
|
|
19
|
+
#: geopic_tag_reader/main.py:26
|
|
20
|
+
msgid "Latitude:"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
#: geopic_tag_reader/main.py:27
|
|
24
|
+
msgid "Longitude:"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
#: geopic_tag_reader/main.py:28
|
|
28
|
+
msgid "GPS accuracy:"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
31
|
+
#: geopic_tag_reader/main.py:28 geopic_tag_reader/main.py:31
|
|
32
|
+
#: geopic_tag_reader/main.py:32
|
|
33
|
+
msgid "not set"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: geopic_tag_reader/main.py:29
|
|
37
|
+
msgid "Timestamp:"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: geopic_tag_reader/main.py:31
|
|
41
|
+
msgid "(GPS)"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: geopic_tag_reader/main.py:32
|
|
45
|
+
msgid "(Camera)"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: geopic_tag_reader/main.py:33
|
|
49
|
+
msgid "Heading:"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: geopic_tag_reader/main.py:34
|
|
53
|
+
msgid "Type:"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: geopic_tag_reader/main.py:35
|
|
57
|
+
msgid "Make:"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: geopic_tag_reader/main.py:36
|
|
61
|
+
msgid "Model:"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: geopic_tag_reader/main.py:37
|
|
65
|
+
msgid "Focal length:"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: geopic_tag_reader/main.py:38
|
|
69
|
+
msgid "Field of view:"
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
#: geopic_tag_reader/main.py:39
|
|
73
|
+
msgid "Sensor width:"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: geopic_tag_reader/main.py:40
|
|
77
|
+
msgid "Crop parameters:"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
#: geopic_tag_reader/main.py:41
|
|
81
|
+
msgid "Pitch:"
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
#: geopic_tag_reader/main.py:42
|
|
85
|
+
msgid "Roll:"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
#: geopic_tag_reader/main.py:43
|
|
89
|
+
msgid "Yaw:"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
#: geopic_tag_reader/main.py:46
|
|
93
|
+
msgid "Warnings raised by reader:"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: geopic_tag_reader/reader.py:246
|
|
97
|
+
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: geopic_tag_reader/reader.py:248
|
|
101
|
+
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: geopic_tag_reader/reader.py:276
|
|
105
|
+
#, python-brace-format
|
|
106
|
+
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
#: geopic_tag_reader/reader.py:306
|
|
110
|
+
msgid "No heading value was found, this reduces usability of picture"
|
|
111
|
+
msgstr ""
|
|
112
|
+
|
|
113
|
+
#: geopic_tag_reader/reader.py:349
|
|
114
|
+
msgid ""
|
|
115
|
+
"No make and model value found, no assumption on focal length or GPS "
|
|
116
|
+
"precision can be made"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: geopic_tag_reader/reader.py:399
|
|
120
|
+
msgid ""
|
|
121
|
+
"No focal length value was found, this prevents calculating field of view"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: geopic_tag_reader/reader.py:451
|
|
125
|
+
msgid "No GPS accuracy value found, this prevents computing a quality score"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
#: geopic_tag_reader/reader.py:453
|
|
129
|
+
msgid ""
|
|
130
|
+
"No GPS horizontal positioning error value found, GPS accuracy can only be "
|
|
131
|
+
"estimated"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
#: geopic_tag_reader/reader.py:460
|
|
135
|
+
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
136
|
+
msgstr ""
|
|
137
|
+
|
|
138
|
+
#: geopic_tag_reader/reader.py:466
|
|
139
|
+
msgid "No valid date in picture EXIF tags"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
142
|
+
#: geopic_tag_reader/reader.py:471
|
|
143
|
+
msgid "The picture is missing mandatory metadata:"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
#: geopic_tag_reader/reader.py:585 geopic_tag_reader/reader.py:614
|
|
147
|
+
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
#: geopic_tag_reader/reader.py:593
|
|
151
|
+
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
#: geopic_tag_reader/reader.py:596 geopic_tag_reader/reader.py:620
|
|
155
|
+
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: geopic_tag_reader/reader.py:681
|
|
159
|
+
msgid "Precise timezone information not found, fallback to UTC"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: geopic_tag_reader/reader.py:686
|
|
163
|
+
msgid ""
|
|
164
|
+
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
165
|
+
"fallback to UTC"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
#: geopic_tag_reader/reader.py:690
|
|
169
|
+
#, python-brace-format
|
|
170
|
+
msgid ""
|
|
171
|
+
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
#: geopic_tag_reader/reader.py:722
|
|
175
|
+
#, python-brace-format
|
|
176
|
+
msgid ""
|
|
177
|
+
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
178
|
+
"group)"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
#: geopic_tag_reader/reader.py:753
|
|
182
|
+
#, python-brace-format
|
|
183
|
+
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: geopic_tag_reader/reader.py:779
|
|
187
|
+
#, python-brace-format
|
|
188
|
+
msgid ""
|
|
189
|
+
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
190
|
+
"not matching value from EXIF field ({microseconds}). Max value will be kept."
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: geopic_tag_reader/writer.py:132
|
|
194
|
+
#, python-brace-format
|
|
195
|
+
msgid "Unsupported key in additional tags ({k})"
|
|
196
|
+
msgstr ""
|
|
@@ -1,48 +1,52 @@
|
|
|
1
|
-
geopic_tag_reader/__init__.py,sha256=
|
|
2
|
-
geopic_tag_reader/camera.py,sha256=
|
|
3
|
-
geopic_tag_reader/cameras.csv,sha256=
|
|
1
|
+
geopic_tag_reader/__init__.py,sha256=dNtoQBAQc18hKQjKQu31iuPTDlBSdNfPCYPCq7Gedik,47
|
|
2
|
+
geopic_tag_reader/camera.py,sha256=ucuAVsLq_luKe8-wFXd7ruPVyhVK43p9niyoCXkAysQ,4131
|
|
3
|
+
geopic_tag_reader/cameras.csv,sha256=mAV0sJvVwNGNnvUHnzBrac53VfhCmEV1Z5hvgm4ErRY,120476
|
|
4
4
|
geopic_tag_reader/i18n.py,sha256=LOLBj7eB_hpHTc5XdMP97EoWdD2kgmkP_uvJJDKEVsU,342
|
|
5
5
|
geopic_tag_reader/main.py,sha256=xeEXMq-fFu0CtUiAgAeS9mb872D65OAQup3UeF6w050,4032
|
|
6
6
|
geopic_tag_reader/model.py,sha256=rsWVE3T1kpNsKXX8iv6xb_3PCVY6Ea7iU9WOqUgXklU,129
|
|
7
7
|
geopic_tag_reader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
geopic_tag_reader/reader.py,sha256=
|
|
8
|
+
geopic_tag_reader/reader.py,sha256=xaRJwN9iftCMRyNN1BvsTZDVMlG_G3EaIvomz73PryM,33400
|
|
9
9
|
geopic_tag_reader/sequence.py,sha256=ybHLIZyRWEw0I-sO6DDeXq8p9o1diuvRYyxmZwRVQoo,11595
|
|
10
10
|
geopic_tag_reader/writer.py,sha256=HdZenoY_5Qv1Kq0jedCJhVFDYsv0iQaCzB6necU_LrY,8793
|
|
11
|
-
geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=
|
|
11
|
+
geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=1Uw69AI9rfkWSqj-IUdea9qS9k522We2BP2wQP2_iIM,4622
|
|
12
|
+
geopic_tag_reader/translations/ar/LC_MESSAGES/geopic_tag_reader.mo,sha256=irAVZnI56p6_8zyput5y1r4zsQ7Pv-EFLQTOK2Gt2ug,321
|
|
13
|
+
geopic_tag_reader/translations/ar/LC_MESSAGES/geopic_tag_reader.po,sha256=rR1cRk9rtGmFfWQktCZKLAijHy0I-ndtkpI1KyYEjx4,4595
|
|
12
14
|
geopic_tag_reader/translations/br/LC_MESSAGES/geopic_tag_reader.mo,sha256=o9Rr5Polmq4nr_XMwsDuVq7SvsTFFvVMg9y1opxeMM4,321
|
|
13
15
|
geopic_tag_reader/translations/br/LC_MESSAGES/geopic_tag_reader.po,sha256=0wLUmdSgGtFRDnMiU3dm5cOUUFNC-8FT8q2qz-wtV9I,4595
|
|
14
|
-
geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
15
|
-
geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
16
|
-
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
17
|
-
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
18
|
-
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
19
|
-
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
20
|
-
geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
21
|
-
geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
16
|
+
geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.mo,sha256=vJACTGCsEvqDvguAF1ZdqybQjAjkuDJ0pPucg3JoTdE,4855
|
|
17
|
+
geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.po,sha256=VY2ktiabJsSmDu7plGjtIzP_m8acOJSftnANqFtv1MM,6635
|
|
18
|
+
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo,sha256=Y7nUp-_OhdZS3s0WjYn-Dyxu6MRU-NHaUOyazpRdlic,5137
|
|
19
|
+
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po,sha256=Ppn4A7n5m_bBePZuQ1Hq3jtf7ReS2C4VDRJLD-o9IRo,6954
|
|
20
|
+
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=vWZtfn28b1iMDqkgCtoSMGkZ_kC8_A_8V1bDRaUtThI,4504
|
|
21
|
+
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=psnuuzf9x8VNd7ybSxoHloccOqrMTo076rH7jKi0DdA,6289
|
|
22
|
+
geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.mo,sha256=5cpIaSHwwcSwPNfJG_bLErZs8S-8dD4kYNHpSVWMong,4860
|
|
23
|
+
geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.po,sha256=1KrHLPpTJCCb5cPC6Ss3n2PDZ2S_f-2EkLVv1XvZ9LI,6634
|
|
22
24
|
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo,sha256=IizWkn7zrx5GC5jZNlpGQzOdJPAiMB9dCXoH2NzkXKY,3827
|
|
23
25
|
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po,sha256=SkvYU9di37VFYs2nkCGUQQFziJ2G0xdmPunbtXKdhXY,5509
|
|
24
26
|
geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.mo,sha256=X_KeDXDlO50JFKNCkh6TKjQcvuGH48CKbmKjK-o2cfU,321
|
|
25
27
|
geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.po,sha256=2Gz8bcblT976JFPd0Q_FRq45__on0Fi1GIw6ocY-I64,3499
|
|
26
|
-
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
27
|
-
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
28
|
+
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=GwaoS0fOUuHQoO0npese5oTSWyXT8JWy2fvGQjpK6JA,5106
|
|
29
|
+
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=b8YSru5s1fP1xF09prJDUqfk-hxjoBOdOSe9eSzDT5A,7772
|
|
28
30
|
geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.mo,sha256=4QccZzPoGsbZj7SENlhMxZahqmt1sWu1lR48VHNofyc,3958
|
|
29
31
|
geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.po,sha256=aYE_fo18xMX-wctA5yTC-y3A9LC0llMIPrkgdsom-BY,5529
|
|
30
|
-
geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
31
|
-
geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
32
|
+
geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.mo,sha256=iQI73vxC1mY_8jua_Ki8nXNug5klfwlY3swVITQ-hww,5026
|
|
33
|
+
geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.po,sha256=pNvL1htz5FzqiNUBdeD5jv-Qj22b4autA7ZQElwExXI,6815
|
|
32
34
|
geopic_tag_reader/translations/ja/LC_MESSAGES/geopic_tag_reader.mo,sha256=6Vo8GpxWTdpqJRqcXvHTNttaeUSMdyYiaLSQZxX9d-U,5221
|
|
33
35
|
geopic_tag_reader/translations/ja/LC_MESSAGES/geopic_tag_reader.po,sha256=RnOvP7qdZjwgyKK5DAe3ipJ53WrxXkjl7G_ylKiZ8tc,7054
|
|
34
36
|
geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.mo,sha256=2QPpe5bgqntybugUG53YzUzfLmsgcFupeJv-kz05LWs,321
|
|
35
37
|
geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.po,sha256=ct7bi-IQJ1Fsosfe41ACu0jf5nfV8cmmEFJWaMPguoQ,3704
|
|
36
|
-
geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
37
|
-
geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.po,sha256
|
|
38
|
+
geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.mo,sha256=XvWkTW5Oi1GxGkE7RVdyjvqAOPGkG5Aw9IsQ134fCy4,4938
|
|
39
|
+
geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.po,sha256=VuPilgGtV_0uU1G-U8jwdYYHYL5yuz60g-cEFOrFWJU,6727
|
|
38
40
|
geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.mo,sha256=QyfhilOoJnuB8LUWif7U4I4RzMInRcWoKJN56h-ToRU,4650
|
|
39
41
|
geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.po,sha256=AoVIZRmcE7g-btZFbkYDXwYobJUG8HG6un3fIJAkG5A,6372
|
|
40
|
-
geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
41
|
-
geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
42
|
+
geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.mo,sha256=VAxfaefhpupimHB69UFsvl8o5isvH8x9To7RuXsiuq8,4779
|
|
43
|
+
geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.po,sha256=mutLf-6jOZjHdYrDNAdShQGg0eR_vo87Ed_1CPiJqwM,6638
|
|
44
|
+
geopic_tag_reader/translations/ti/LC_MESSAGES/geopic_tag_reader.mo,sha256=arpJUsQQe_1uK-1lWg63Egj0-xReMIcvtgZt1XqQM5M,321
|
|
45
|
+
geopic_tag_reader/translations/ti/LC_MESSAGES/geopic_tag_reader.po,sha256=moCvnE_DIZVfqIHAhuu8L4K8UOb-2RBrjirlWHwc0ko,4595
|
|
42
46
|
geopic_tag_reader/translations/zh_Hant/LC_MESSAGES/geopic_tag_reader.mo,sha256=6bKHZnihlDOQQ5IQMKIgWViL5BorECqJ2ERFkE4LC6s,326
|
|
43
47
|
geopic_tag_reader/translations/zh_Hant/LC_MESSAGES/geopic_tag_reader.po,sha256=QIiHRmrEHny4njQPBsj07fqtK2QFTgrAFc-E3s7ddJU,4600
|
|
44
|
-
geopic_tag_reader-1.
|
|
45
|
-
geopic_tag_reader-1.
|
|
46
|
-
geopic_tag_reader-1.
|
|
47
|
-
geopic_tag_reader-1.
|
|
48
|
-
geopic_tag_reader-1.
|
|
48
|
+
geopic_tag_reader-1.7.0.dist-info/entry_points.txt,sha256=c9YwjCNhxveDf-61_aSRlzcpoutvM6KQCerlzaVt_JU,64
|
|
49
|
+
geopic_tag_reader-1.7.0.dist-info/licenses/LICENSE,sha256=OCZiFd7ok-n5jly2LwP7hEjuUukkvSt5iMkK_cY_00o,1076
|
|
50
|
+
geopic_tag_reader-1.7.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
51
|
+
geopic_tag_reader-1.7.0.dist-info/METADATA,sha256=ykMbswQ7OOF3Ietwo3I1gbagegIdD6MYkKTnRg8aIBU,4639
|
|
52
|
+
geopic_tag_reader-1.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|