@panoramax/web-viewer 3.1.1-develop-d6616355 → 3.1.1-develop-95d65b81
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/package.json
CHANGED
package/src/translations/en.json
CHANGED
|
@@ -93,6 +93,8 @@
|
|
|
93
93
|
"error_josm": "JOSM doesn't respond, is it running and is remote enabled?",
|
|
94
94
|
"error_api_compatibility": "The pictures server is not compatible with this viewer version",
|
|
95
95
|
"filter_date": "Date",
|
|
96
|
+
"filter_date_1month": "1 month",
|
|
97
|
+
"filter_date_1year": "1 year",
|
|
96
98
|
"filter_user": "User",
|
|
97
99
|
"filter_picture": "Picture type",
|
|
98
100
|
"filter_zoom_in": "Zoom-in for filters to be visible",
|
package/src/translations/fr.json
CHANGED
|
@@ -93,6 +93,8 @@
|
|
|
93
93
|
"error_josm": "JOSM n'a pas répondu, est-il bien lancé et la télécommande activée ?",
|
|
94
94
|
"error_api_compatibility": "Le serveur de photos n'est pas compatible avec cette visionneuse",
|
|
95
95
|
"filter_date": "Date",
|
|
96
|
+
"filter_date_1month": "1 mois",
|
|
97
|
+
"filter_date_1year": "1 an",
|
|
96
98
|
"filter_user": "Utilisateur",
|
|
97
99
|
"filter_picture": "Type d'image",
|
|
98
100
|
"picture_flat": "Classique",
|
package/src/translations/hu.json
CHANGED
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"report_nature": {
|
|
130
130
|
"": "Probléma jellegének kiválasztása…",
|
|
131
131
|
"blur_missing": "A képen látszik egy személy arca vagy egy rendszámtábla",
|
|
132
|
-
"blur_excess": "A képen el van
|
|
132
|
+
"blur_excess": "A képen el van homályosítva egy olyan objektum, amelynek élesnek kellene lennie",
|
|
133
133
|
"inappropriate": "A kép nem megfelelő (irreleváns, meztelenséget jelenít meg stb.)",
|
|
134
134
|
"privacy": "A képen magánút vagy magánterület látható",
|
|
135
135
|
"picture_low_quality": "A kép nagyon rossz minőségű",
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
},
|
|
168
168
|
"map": {
|
|
169
169
|
"loading": "Betöltés…",
|
|
170
|
-
"thumbnail": "A
|
|
170
|
+
"thumbnail": "A kurzor alatti kép bélyegképe",
|
|
171
171
|
"no_thumbnail": "Nincs bélyegkép",
|
|
172
172
|
"not_public": "Nem látható nyilvánosan",
|
|
173
173
|
"slow_loading": "A térkép lassan töltődik be, és lehet, hogy lerobbant"
|
package/src/viewer/Widgets.js
CHANGED
|
@@ -979,8 +979,8 @@ export default class Widgets {
|
|
|
979
979
|
<div id="gvs-filter-zoomin">${fat(faTriangleExclamation)} ${this._t.gvs.filter_zoom_in}</div>
|
|
980
980
|
<h4>${fat(faCalendar)} ${this._t.gvs.filter_date}</h4>
|
|
981
981
|
<div class="gvs-input-shortcuts">
|
|
982
|
-
<button data-for="gvs-filter-date-from" data-value="${new Date(new Date().setMonth(new Date().getMonth() - 1)).toISOString().split("T")[0]}"
|
|
983
|
-
<button data-for="gvs-filter-date-from" data-value="${new Date(new Date().setFullYear(new Date().getFullYear() - 1)).toISOString().split("T")[0]}"
|
|
982
|
+
<button data-for="gvs-filter-date-from" data-value="${new Date(new Date().setMonth(new Date().getMonth() - 1)).toISOString().split("T")[0]}">${this._t.gvs.filter_date_1month}</button>
|
|
983
|
+
<button data-for="gvs-filter-date-from" data-value="${new Date(new Date().setFullYear(new Date().getFullYear() - 1)).toISOString().split("T")[0]}">${this._t.gvs.filter_date_1year}</button>
|
|
984
984
|
</div>
|
|
985
985
|
<div class="gvs-input-group">
|
|
986
986
|
<input type="date" id="gvs-filter-date-from" />
|