Project

General

Profile

Download (3.32 KB) Statistics
| Branch: | Tag: | Revision:
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
 */
11
OpenLayers.Lang.en = {
12

    
13
    'unhandledRequest': "Unhandled request return ${statusText}",
14

    
15
    'Permalink': "Permalink",
16

    
17
    'Overlays': "Overlays",
18

    
19
    'Base Layer': "Base Layer",
20

    
21
    'noFID': "Can't update a feature for which there is no FID.",
22

    
23
    'browserNotSupported':
24
        "Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",
25

    
26
    // console message
27
    'minZoomLevelError':
28
        "The minZoomLevel property is only intended for use " +
29
        "with the FixedZoomLevels-descendent layers. That this " +
30
        "wfs layer checks for minZoomLevel is a relic of the" +
31
        "past. We cannot, however, remove it without possibly " +
32
        "breaking OL based applications that may depend on it." +
33
        " Therefore we are deprecating it -- the minZoomLevel " +
34
        "check below will be removed at 3.0. Please instead " +
35
        "use min/max resolution setting as described here: " +
36
        "http://trac.openlayers.org/wiki/SettingZoomLevels",
37

    
38
    'commitSuccess': "WFS Transaction: SUCCESS ${response}",
39

    
40
    'commitFailed': "WFS Transaction: FAILED ${response}",
41

    
42
    'googleWarning':
43
        "The Google Layer was unable to load correctly.<br><br>" +
44
        "To get rid of this message, select a new BaseLayer " +
45
        "in the layer switcher in the upper-right corner.<br><br>" +
46
        "Most likely, this is because the Google Maps library " +
47
        "script was either not included, or does not contain the " +
48
        "correct API key for your site.<br><br>" +
49
        "Developers: For help getting this working correctly, " +
50
        "<a href='http://trac.openlayers.org/wiki/Google' " +
51
        "target='_blank'>click here</a>",
52

    
53
    'getLayerWarning':
54
        "The ${layerType} Layer was unable to load correctly.<br><br>" +
55
        "To get rid of this message, select a new BaseLayer " +
56
        "in the layer switcher in the upper-right corner.<br><br>" +
57
        "Most likely, this is because the ${layerLib} library " +
58
        "script was not correctly included.<br><br>" +
59
        "Developers: For help getting this working correctly, " +
60
        "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
61
        "target='_blank'>click here</a>",
62

    
63
    'Scale = 1 : ${scaleDenom}': "Scale = 1 : ${scaleDenom}",
64
    
65
    //labels for the graticule control
66
    'W': 'W',
67
    'E': 'E',
68
    'N': 'N',
69
    'S': 'S',
70
    'Graticule': 'Graticule',
71

    
72
    // console message
73
    'reprojectDeprecated':
74
        "You are using the 'reproject' option " +
75
        "on the ${layerName} layer. This option is deprecated: " +
76
        "its use was designed to support displaying data over commercial " + 
77
        "basemaps, but that functionality should now be achieved by using " +
78
        "Spherical Mercator support. More information is available from " +
79
        "http://trac.openlayers.org/wiki/SphericalMercator.",
80

    
81
    // console message
82
    'methodDeprecated':
83
        "This method has been deprecated and will be removed in 3.0. " +
84
        "Please use ${newMethod} instead.",
85

    
86
    // **** end ****
87
    'end': ''
88
    
89
};
(11-11/45)