You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$messenger->addWarning('Your database does not support modern spatial indexing. It has no impact in common cases. See the minimum requirements in readme.'); // @translate
123
+
$messenger->addWarning(
124
+
'Your database does not support modern spatial indexing. It has no impact in common cases. See the minimum requirements in readme.'// @translate
'You should reindex your geometries in the config of this module.'// @translate
39
48
);
40
49
$messenger->addWarning($message);
@@ -51,11 +60,11 @@
51
60
52
61
$settings->delete('datatypegeometry_buttons');
53
62
54
-
$message = newMessage(
63
+
$message = newPsrMessage(
55
64
'A new datatype has been added to manage geographic coordinates (latitude/longitude). It can manage be used as a source for the markers for the module Mapping too. A batch edit process is added to convert them.'// @translate
56
65
);
57
66
$messenger->addSuccess($message);
58
-
$message = newMessage(
67
+
$message = newPsrMessage(
59
68
'The data types of this module are no longer automatically appended to resource forms. They should be added to selected properties via a template.'// @translate
60
69
);
61
70
$messenger->addWarning($message);
@@ -96,25 +105,25 @@
96
105
try {
97
106
$connection->executeStatement($sql);
98
107
} catch (\Exception$e) {
99
-
$message = newMessage(
108
+
$message = newPsrMessage(
100
109
'Your database is not compatible with geographic search: only flat geometry is supported.'// @translate
101
110
);
102
111
$messenger->addWarning($message);
103
112
}
104
113
105
-
$message = newMessage(
114
+
$message = newPsrMessage(
106
115
'Datatype names were simplified: "geometry", "geography", "geography:coordinates".'// @translate
107
116
);
108
117
$messenger->addWarning($message);
109
118
110
-
$message = newMessage(
119
+
$message = newPsrMessage(
111
120
'Two new datatypes have been added to manage geometries: x/y coordinates ("geometry:coordinates") and position from top left ("geometry:position").'// @translate
112
121
);
113
122
$messenger->addSuccess($message);
114
123
}
115
124
116
125
if (version_compare($oldVersion, '3.4.4', '<')) {
117
-
$message = newMessage(
126
+
$message = newPsrMessage(
118
127
'WARNING: the value representation has been normalized in the api to follow the opengis specifications for geography:coordinates, geometry:coordinates and geometry:position. The rdf value is now always a string, no more an array. Check compatibility with your external tools if needed.'// @translate
0 commit comments