1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Declare the plugin's English translation.
CKEDITOR.plugins.setLang('leaflet', 'en', {
buttonLabel: 'Insert Leaflet Map',
dialogTitle: 'Create/Edit Leaflet Map',
locationTabLabel: 'Location',
googleSearchFieldLabel: 'Auto-Complete Search Using Google',
googleSearchFieldHint: 'Enter a place name here',
manualCoordinatesFieldLabel: 'Manual Input of Coordinates',
manualLatitudeFieldLabel: 'Latitude',
manualLongitudeFieldLabel: 'Longitude',
popupTextFieldLabel: 'Pop-up Text (Optional)',
popupTextFieldHint: "Enter the marker's text",
optionsTabLabel: 'Options',
mapWidthFieldLabel: 'Map Width',
mapHeightFieldLabel: 'Map Height',
mapZoomLevelFieldLabel: 'Zoom Level',
baseMapTileLabel: 'Base Map Tile',
minimapCheckboxLabel: 'Include MiniMap',
responsiveMapCheckboxLabel: 'Responsive Map (100% Width)',
});
|