Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/OpenLayers/lib/OpenLayers/Lang/en.js @ 76

Revision 76, 4.7 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1/**
2 * @requires OpenLayers/Lang.js
3 */
4
5/**
6 * Namespace: OpenLayers.Lang["en"]
7 * Dictionary for English.  Keys for entries are used in calls to
8 *     <OpenLayers.Lang.translate>.  Entry bodies are normal strings or
9 *     strings formatted for use with <OpenLayers.String.format> calls.
10 */
11OpenLayers.Lang.en = {
12
13    'unhandledRequest': "Unhandled request return ${statusText}",
14
15    'permalink': "Permalink",
16
17    'overlays': "Overlays",
18
19    'baseLayer': "Base Layer",
20
21    'sameProjection':
22        "The overview map only works when it is in the same projection as the main map",
23
24    'readNotImplemented': "Read not implemented.",
25
26    'writeNotImplemented': "Write not implemented.",
27
28    'noFID': "Can't update a feature for which there is no FID.",
29
30    'errorLoadingGML': "Error in loading GML file ${url}",
31
32    'browserNotSupported':
33        "Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",
34
35    'componentShouldBe': "addFeatures : component should be an ${geomType}",
36
37    // console message
38    'getFeatureError':
39        "getFeatureFromEvent called on layer with no renderer. This usually means you " +
40        "destroyed a layer, but not some handler which is associated with it.",
41
42    // console message
43    'minZoomLevelError':
44        "The minZoomLevel property is only intended for use " +
45        "with the FixedZoomLevels-descendent layers. That this " +
46        "wfs layer checks for minZoomLevel is a relic of the" +
47        "past. We cannot, however, remove it without possibly " +
48        "breaking OL based applications that may depend on it." +
49        " Therefore we are deprecating it -- the minZoomLevel " +
50        "check below will be removed at 3.0. Please instead " +
51        "use min/max resolution setting as described here: " +
52        "http://trac.openlayers.org/wiki/SettingZoomLevels",
53
54    'commitSuccess': "WFS Transaction: SUCCESS ${response}",
55
56    'commitFailed': "WFS Transaction: FAILED ${response}",
57
58    'googleWarning':
59        "The Google Layer was unable to load correctly.<br><br>" +
60        "To get rid of this message, select a new BaseLayer " +
61        "in the layer switcher in the upper-right corner.<br><br>" +
62        "Most likely, this is because the Google Maps library " +
63        "script was either not included, or does not contain the " +
64        "correct API key for your site.<br><br>" +
65        "Developers: For help getting this working correctly, " +
66        "<a href='http://trac.openlayers.org/wiki/Google' " +
67        "target='_blank'>click here</a>",
68
69    'getLayerWarning':
70        "The ${layerType} Layer was unable to load correctly.<br><br>" +
71        "To get rid of this message, select a new BaseLayer " +
72        "in the layer switcher in the upper-right corner.<br><br>" +
73        "Most likely, this is because the ${layerLib} library " +
74        "script was not correctly included.<br><br>" +
75        "Developers: For help getting this working correctly, " +
76        "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
77        "target='_blank'>click here</a>",
78
79    'scale': "Scale = 1 : ${scaleDenom}",
80   
81    //labels for the graticule control
82    'W': 'W',
83    'E': 'E',
84    'N': 'N',
85    'S': 'S',
86    'graticule': 'Graticule',
87
88    // console message
89    'layerAlreadyAdded':
90        "You tried to add the layer: ${layerName} to the map, but it has already been added",
91
92    // console message
93    'reprojectDeprecated':
94        "You are using the 'reproject' option " +
95        "on the ${layerName} layer. This option is deprecated: " +
96        "its use was designed to support displaying data over commercial " + 
97        "basemaps, but that functionality should now be achieved by using " +
98        "Spherical Mercator support. More information is available from " +
99        "http://trac.openlayers.org/wiki/SphericalMercator.",
100
101    // console message
102    'methodDeprecated':
103        "This method has been deprecated and will be removed in 3.0. " +
104        "Please use ${newMethod} instead.",
105
106    // console message
107    'boundsAddError': "You must pass both x and y values to the add function.",
108
109    // console message
110    'lonlatAddError': "You must pass both lon and lat values to the add function.",
111
112    // console message
113    'pixelAddError': "You must pass both x and y values to the add function.",
114
115    // console message
116    'unsupportedGeometryType': "Unsupported geometry type: ${geomType}",
117
118    // console message
119    'pagePositionFailed':
120        "OpenLayers.Util.pagePosition failed: element with id ${elemId} may be misplaced.",
121
122    // console message
123    'filterEvaluateNotImplemented': "evaluate is not implemented for this filter type.",
124
125    // **** end ****
126    'end': ''
127   
128};
Note: See TracBrowser for help on using the repository browser.