~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to gis/dhis-gis-geostat/mfbase/openlayers/lib/OpenLayers/Lang/en.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

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