update plugin googlemaps to 1.98 ver

skala
Juan Carlos Raña 14 years ago
parent 81ca2ad394
commit 0ed5a3d8ea
  1. 241
      main/inc/lib/fckeditor/editor/plugins/googlemaps/dialog/googleMaps.html
  2. 1048
      main/inc/lib/fckeditor/editor/plugins/googlemaps/dialog/googleMaps.js
  3. 8
      main/inc/lib/fckeditor/editor/plugins/googlemaps/dialog/polyline.js
  4. 1504
      main/inc/lib/fckeditor/editor/plugins/googlemaps/fckplugin.js
  5. 2
      main/inc/lib/fckeditor/editor/plugins/googlemaps/fckplugin_compressed.js
  6. 88
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/en.js
  7. 88
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/es.js
  8. 88
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/fr.js
  9. 88
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/it.js
  10. 88
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/nl.js
  11. 91
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/no.js
  12. 91
      main/inc/lib/fckeditor/editor/plugins/googlemaps/lang/zh.js

@ -1,123 +1,118 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* GoogleMaps Plugin for FCKeditor
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* GMaps Properties dialog window.
-->
<html xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<title>Google Maps</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="noindex, nofollow" name="robots">
<script src="googleMaps.js" type="text/javascript"></script>
<style type="text/css">
body, td, input, textarea, select, label {font-family: Arial, Verdana, Geneva, helvetica, sans-serif; font-size: 11px; }
</style>
<style type="text/css">
div.box {
height: 60px;
}
p {
margin:0;
}
</style>
</head>
<body>
<div id="MapInfo" class="box">
<table>
<tr>
<td>
<label for="txtWidth" fckLang="DlgImgWidth">Width</label>
<input id="txtWidth" type="text" size="3">
</td>
<td>
<label for="txtHeight" fckLang="DlgImgHeight">Height</label>
<input id="txtHeight" type="text" size="3">
</td>
<td>
<span fckLang="GMapsZoomLevel">Zoom Level</span>
<select id="cmbZoom">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
</select>
</td>
<td>
<label for="apiKey" fckLang="GMapsKey" id="lblApiKey">API Key</label>
<input id="apiKey" type="text" name="apiKey" size="40" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<label for="txtCenterLatitude" fckLang="txtLatitude">Latitude</label>
<input id="txtCenterLatitude" type="text" size="7">
</td>
<td>
<label for="txtCenterLongitude" fckLang="txtLongitude">Longitude</label>
<input id="txtCenterLongitude" type="text" size="7">
</td>
</tr>
</table>
</div>
<div id="SearchInfo" style="display:none;" class="box">
<label for="searchDirection" fckLang="GMapsSearchLabel">Search a direction</label>
<input type="text" id="searchDirection" size="50" > <input type="button" id="searchButton" value="search" fckLang="GMapsSearch">
</div>
<div id="MarkerInfo" style="display:none;" class="box">
<img id="btnAddNewMarker" src="../images/AddMarker.png" style="cursor:pointer">
<div id="instructions"></div>
</div>
<div id="LineInfo" style="display:none;" class="box">
<p><span fckLang="GMapsLineInstructions">Click on the map</span></p>
<div id="info2" style="display:none">
<textarea id="encodedPolyline"></textarea>
<textarea id="encodedLevels"></textarea>
</div>
</div>
<!-- <span fckLang="DlgImgPreview">Preview</span>-->
<div id="GMapPreview" style="width:300px; height:200px; outline:0;" tabIndex="-1"></div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* GoogleMaps Plugin for FCKeditor
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* GMaps Properties dialog window.
-->
<html xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<title>Google Maps</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="noindex, nofollow" name="robots">
<script src="googleMaps.js" type="text/javascript"></script>
<style type="text/css">
div.box {
height: 60px;
}
p {
margin:0;
}
</style>
</head>
<body>
<div id="MapInfo" class="box">
<table>
<tr>
<td>
<label for="txtWidth" fckLang="DlgImgWidth">Width</label>
<input id="txtWidth" type="text" size="3">
</td>
<td>
<label for="txtHeight" fckLang="DlgImgHeight">Height</label>
<input id="txtHeight" type="text" size="3">
</td>
<td>
<span fckLang="GMapsZoomLevel">Zoom Level</span>
<select id="cmbZoom">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
</select>
</td>
<td>
<label for="apiKey" fckLang="GMapsKey" id="lblApiKey">API Key</label>
<input id="apiKey" type="text" name="apiKey" size="40" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<label for="txtCenterLatitude" fckLang="txtLatitude">Latitude</label>
<input id="txtCenterLatitude" type="text" size="7">
</td>
<td>
<label for="txtCenterLongitude" fckLang="txtLongitude">Longitude</label>
<input id="txtCenterLongitude" type="text" size="7">
</td>
</tr>
</table>
</div>
<div id="SearchInfo" style="display:none;" class="box">
<label for="searchDirection" fckLang="GMapsSearchLabel">Search a direction</label>
<input type="text" id="searchDirection" size="50" > <input type="button" id="searchButton" value="search" fckLang="GMapsSearch">
</div>
<div id="MarkerInfo" style="display:none;" class="box">
<img id="btnAddNewMarker" src="../images/AddMarker.png" style="cursor:pointer">
<div id="instructions"></div>
</div>
<div id="LineInfo" style="display:none;" class="box">
<p><span fckLang="GMapsLineInstructions">Click on the map</span></p>
<div id="info2" style="display:none">
<textarea id="encodedPolyline"></textarea>
<textarea id="encodedLevels"></textarea>
</div>
</div>
<!-- <span fckLang="DlgImgPreview">Preview</span>-->
<div id="GMapPreview" style="width:300px; height:200px; outline:0;" tabIndex="-1"></div>
</body>
</html>

@ -25,7 +25,7 @@ function createPoint(lat, lng, pLevel) {
Level: pLevel
};
if (currentIndex>-1)
if (currentIndex>-1)
points.splice(currentIndex+1, 0, newPoint) ;
else
points.push(newPoint);
@ -34,7 +34,7 @@ function createPoint(lat, lng, pLevel) {
point_marker.focusable = true ; // To signal that the map must get the focus.
map.addOverlay(point_marker);
if (currentIndex>-1)
if (currentIndex>-1)
point_markers.splice(currentIndex+1, 0, point_marker) ;
else
point_markers.push(point_marker);
@ -155,9 +155,9 @@ function deletePoint() {
}
// Create the encoded polyline and level strings.
// Create the encoded polyline and level strings.
function createEncodings() {
if (points.length==0)
if (points.length==0)
{
document.getElementById('encodedLevels').value = '';
document.getElementById('encodedPolyline').value = '';

File diff suppressed because one or more lines are too long

@ -1,45 +1,45 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps properties' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insert/Edit a Google Map' ;
FCKLang.GMapsMap = 'Map' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Search a direction' ;
FCKLang.GMapsSearch = 'Search' ;
FCKLang.GMapsNotFound = '%s not found.' ;
FCKLang.GMapsMarkerText = 'Text' ;
FCKLang.GMapsMarkerDefaultText = 'Write your text' ;
FCKLang.GMapsLine = 'Line' ;
FCKLang.GMapsLineInstructions = 'Click on the map to place the first point, and then keep on clicking to add more points.<br>You can drag them or delete them using "DEL" in your keyboard' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'Click on the map to add a new marker' ;
FCKLang.GMapsDeleteMarker = 'Delete marker' ;
FCKLang.GMapsAddMarker = 'Add new marker' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps properties' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insert/Edit a Google Map' ;
FCKLang.GMapsMap = 'Map' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Search a direction' ;
FCKLang.GMapsSearch = 'Search' ;
FCKLang.GMapsNotFound = '%s not found.' ;
FCKLang.GMapsMarkerText = 'Text' ;
FCKLang.GMapsMarkerDefaultText = 'Write your text' ;
FCKLang.GMapsLine = 'Line' ;
FCKLang.GMapsLineInstructions = 'Click on the map to place the first point, and then keep on clicking to add more points.<br>You can drag them or delete them using "DEL" in your keyboard' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'Click on the map to add a new marker' ;
FCKLang.GMapsDeleteMarker = 'Delete marker' ;
FCKLang.GMapsAddMarker = 'Add new marker' ;
FCKLang.GMaps_MissingKey = 'You must enter the Google Maps Key for your domain.' ;

@ -1,45 +1,45 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, Spanish language file.
*/
FCKLang.DlgGMapsTitle = 'Propiedades del mapa Google' ;
FCKLang.GMapsBtn = 'Mapas Google' ;
FCKLang.GMapsBtnTooltip = 'Insertar/Editar un mapa Google' ;
FCKLang.GMapsMap = 'Mapa' ;
FCKLang.GMapsZoomLevel = 'Zoom' ;
FCKLang.txtLatitude = 'Latitud' ;
FCKLang.txtLongitude = 'Longitud' ;
FCKLang.GMapsMarker = 'Marcador' ;
FCKLang.GMapsSearchLabel = 'Buscar una dirección' ;
FCKLang.GMapsSearch = 'Buscar' ;
FCKLang.GMapsNotFound = 'No se ha encontrado %s.' ;
FCKLang.GMapsMarkerText = 'Texto' ;
FCKLang.GMapsMarkerDefaultText = 'Escriba el texto' ;
FCKLang.GMapsLine = 'Linea' ;
FCKLang.GMapsLineInstructions = 'Haz click en el mapa para añadir un punto, sigue haciendo clicks para añadir más puntos a la linea.<br>Es posible arrastrarlos, o borrarlos pulsando "SUPR" en el teclado' ;
FCKLang.GMapsHelpFile = 'install_es.html' ;
FCKLang.GMapsUserHelpFile = 'users_es.html' ;
FCKLang.Help = 'Ayuda' ;
FCKLang.GMapsClickToAddMarker = 'Haz click en el mapa para añadir un nuevo marcador' ;
FCKLang.GMapsDeleteMarker = 'Borrar el marcador' ;
FCKLang.GMapsAddMarker = 'Añadir un nuevo marcador' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, Spanish language file.
*/
FCKLang.DlgGMapsTitle = 'Propiedades del mapa Google' ;
FCKLang.GMapsBtn = 'Mapas Google' ;
FCKLang.GMapsBtnTooltip = 'Insertar/Editar un mapa Google' ;
FCKLang.GMapsMap = 'Mapa' ;
FCKLang.GMapsZoomLevel = 'Zoom' ;
FCKLang.txtLatitude = 'Latitud' ;
FCKLang.txtLongitude = 'Longitud' ;
FCKLang.GMapsMarker = 'Marcador' ;
FCKLang.GMapsSearchLabel = 'Buscar una dirección' ;
FCKLang.GMapsSearch = 'Buscar' ;
FCKLang.GMapsNotFound = 'No se ha encontrado %s.' ;
FCKLang.GMapsMarkerText = 'Texto' ;
FCKLang.GMapsMarkerDefaultText = 'Escriba el texto' ;
FCKLang.GMapsLine = 'Linea' ;
FCKLang.GMapsLineInstructions = 'Haz click en el mapa para añadir un punto, sigue haciendo clicks para añadir más puntos a la linea.<br>Es posible arrastrarlos, o borrarlos pulsando "SUPR" en el teclado' ;
FCKLang.GMapsHelpFile = 'install_es.html' ;
FCKLang.GMapsUserHelpFile = 'users_es.html' ;
FCKLang.Help = 'Ayuda' ;
FCKLang.GMapsClickToAddMarker = 'Haz click en el mapa para añadir un nuevo marcador' ;
FCKLang.GMapsDeleteMarker = 'Borrar el marcador' ;
FCKLang.GMapsAddMarker = 'Añadir un nuevo marcador' ;
FCKLang.GMaps_MissingKey = 'You must enter the Google Maps Key for your domain.' ;

@ -1,44 +1,44 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, French language file.
*/
FCKLang.DlgGMapsTitle = 'Propriétés de Google Maps' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insérer/Editer un plan Google' ;
FCKLang.GMapsMap = 'Plan' ;
FCKLang.GMapsZoomLevel = 'Niveau de zoom' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Repère' ;
FCKLang.GMapsSearchLabel = 'Rechercher une direction' ;
FCKLang.GMapsSearch = 'Chercher' ;
FCKLang.GMapsNotFound = '%s non trouvé.' ;
FCKLang.GMapsMarkerText = 'Texte' ;
FCKLang.GMapsMarkerDefaultText = 'Ecrivez votre texte' ;
FCKLang.GMapsLine = 'Ligne' ;
FCKLang.GMapsLineInstructions = 'Cliquez sur la carte pour placer le premier point, et continuer a cliquez pour ajouter plus de points.<br>Vous pouvez les déplacer ou les effacer en utilisant "Suppr" sur votre clavier' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Aide' ;
FCKLang.GMapsClickToAddMarker = 'Cliquez sur la carte pour ajouter un nouveau repère' ;
FCKLang.GMapsDeleteMarker = 'Effacer un repère' ;
FCKLang.GMapsAddMarker = 'Ajouter un nouveau repère' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, French language file.
*/
FCKLang.DlgGMapsTitle = 'Propriétés de Google Maps' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insérer/Editer un plan Google' ;
FCKLang.GMapsMap = 'Plan' ;
FCKLang.GMapsZoomLevel = 'Niveau de zoom' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Repère' ;
FCKLang.GMapsSearchLabel = 'Rechercher une direction' ;
FCKLang.GMapsSearch = 'Chercher' ;
FCKLang.GMapsNotFound = '%s non trouvé.' ;
FCKLang.GMapsMarkerText = 'Texte' ;
FCKLang.GMapsMarkerDefaultText = 'Ecrivez votre texte' ;
FCKLang.GMapsLine = 'Ligne' ;
FCKLang.GMapsLineInstructions = 'Cliquez sur la carte pour placer le premier point, et continuer a cliquez pour ajouter plus de points.<br>Vous pouvez les déplacer ou les effacer en utilisant "Suppr" sur votre clavier' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Aide' ;
FCKLang.GMapsClickToAddMarker = 'Cliquez sur la carte pour ajouter un nouveau repère' ;
FCKLang.GMapsDeleteMarker = 'Effacer un repère' ;
FCKLang.GMapsAddMarker = 'Ajouter un nouveau repère' ;

@ -1,45 +1,45 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps Proprietà' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Inserisci/Modifica una Google Maps' ;
FCKLang.GMapsMap = 'Mappa' ;
FCKLang.GMapsZoomLevel = 'Zoom' ;
FCKLang.txtLatitude = 'Latitudine' ;
FCKLang.txtLongitude = 'Longitudine' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Cerca una direzione' ;
FCKLang.GMapsSearch = 'Cerca una località' ;
FCKLang.GMapsNotFound = '%s non trovato.' ;
FCKLang.GMapsMarkerText = 'Testo' ;
FCKLang.GMapsMarkerDefaultText = 'Inserisci il testo' ;
FCKLang.GMapsLine = 'Tracciato' ;
FCKLang.GMapsLineInstructions = 'Clicca sulla mappa per scegliere il primo punto, e successivamente selezionare gli altri sulla mappa.<br>Puoi trascinare i punti già selezionati o cancellarli delete usando "CANC" dalla tua tastiera' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Aiuto' ;
FCKLang.GMapsClickToAddMarker = 'Clicca sulla mappa per aggiungere un nuovo marker' ;
FCKLang.GMapsDeleteMarker = 'Cancella marker' ;
FCKLang.GMapsAddMarker = 'Aggiungi un nuovo marker' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps Proprietà' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Inserisci/Modifica una Google Maps' ;
FCKLang.GMapsMap = 'Mappa' ;
FCKLang.GMapsZoomLevel = 'Zoom' ;
FCKLang.txtLatitude = 'Latitudine' ;
FCKLang.txtLongitude = 'Longitudine' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Cerca una direzione' ;
FCKLang.GMapsSearch = 'Cerca una località' ;
FCKLang.GMapsNotFound = '%s non trovato.' ;
FCKLang.GMapsMarkerText = 'Testo' ;
FCKLang.GMapsMarkerDefaultText = 'Inserisci il testo' ;
FCKLang.GMapsLine = 'Tracciato' ;
FCKLang.GMapsLineInstructions = 'Clicca sulla mappa per scegliere il primo punto, e successivamente selezionare gli altri sulla mappa.<br>Puoi trascinare i punti già selezionati o cancellarli delete usando "CANC" dalla tua tastiera' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Aiuto' ;
FCKLang.GMapsClickToAddMarker = 'Clicca sulla mappa per aggiungere un nuovo marker' ;
FCKLang.GMapsDeleteMarker = 'Cancella marker' ;
FCKLang.GMapsAddMarker = 'Aggiungi un nuovo marker' ;
FCKLang.GMaps_MissingKey = 'You must enter the Google Maps Key for your domain.' ;

@ -1,44 +1,44 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps eigenschappen' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Invoegen/Wijzigen een Google Map' ;
FCKLang.GMapsMap = 'Kaart' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Zoek een locatie' ;
FCKLang.GMapsSearch = 'Zoeken' ;
FCKLang.GMapsNotFound = '%s is niet gevonden.' ;
FCKLang.GMapsMarkerText = 'Tekst' ;
FCKLang.GMapsMarkerDefaultText = 'Schrijf je eigen tekst' ;
FCKLang.GMapsLine = 'Lijn' ;
FCKLang.GMapsLineInstructions = 'Klik op de kaart om een een eerste marker te plaaten, blijf dan klikken om meer markers te plaatsen.<br>Je kunt ze slepen of verwijderen met de "DEL" toets' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'klik op de kaart om de marker toe te voegen' ;
FCKLang.GMapsDeleteMarker = 'Verwijder marker' ;
FCKLang.GMapsAddMarker = 'Voeg nieuwe marker toe' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps eigenschappen' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Invoegen/Wijzigen een Google Map' ;
FCKLang.GMapsMap = 'Kaart' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Zoek een locatie' ;
FCKLang.GMapsSearch = 'Zoeken' ;
FCKLang.GMapsNotFound = '%s is niet gevonden.' ;
FCKLang.GMapsMarkerText = 'Tekst' ;
FCKLang.GMapsMarkerDefaultText = 'Schrijf je eigen tekst' ;
FCKLang.GMapsLine = 'Lijn' ;
FCKLang.GMapsLineInstructions = 'Klik op de kaart om een een eerste marker te plaaten, blijf dan klikken om meer markers te plaatsen.<br>Je kunt ze slepen of verwijderen met de "DEL" toets' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'klik op de kaart om de marker toe te voegen' ;
FCKLang.GMapsDeleteMarker = 'Verwijder marker' ;
FCKLang.GMapsAddMarker = 'Voeg nieuwe marker toe' ;

@ -1,46 +1,45 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor.
* Norwegian language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps properties' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insert/Edit a Google Map' ;
FCKLang.GMapsMap = 'Map' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Search a direction' ;
FCKLang.GMapsSearch = 'Search' ;
FCKLang.GMapsNotFound = '%s not found.' ;
FCKLang.GMapsMarkerText = 'Text' ;
FCKLang.GMapsMarkerDefaultText = 'Write your text' ;
FCKLang.GMapsLine = 'Line' ;
FCKLang.GMapsLineInstructions = 'Click on the map to place the first point, and then keep on clicking to add more points.<br>You can drag them or delete them using "DEL" in your keyboard' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'Click on the map to add a new marker' ;
FCKLang.GMapsDeleteMarker = 'Delete marker' ;
FCKLang.GMapsAddMarker = 'Add new marker' ;
FCKLang.GMaps_MissingKey = 'You must enter the Google Maps Key for your domain.' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, Norwegian language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps egenskaper' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Legg til/Rediger et Google Map' ;
FCKLang.GMapsMap = 'Kart' ;
FCKLang.GMapsZoomLevel = 'Zoom Nivå' ;
FCKLang.txtLatitude = 'Lengdegrad' ;
FCKLang.txtLongitude = 'Breddegrad' ;
FCKLang.GMapsMarker = 'Markør' ;
FCKLang.GMapsSearchLabel = 'Søk etter sted' ;
FCKLang.GMapsSearch = 'Søk' ;
FCKLang.GMapsNotFound = 'Finner ikke %s.' ;
FCKLang.GMapsMarkerText = 'Tekst' ;
FCKLang.GMapsMarkerDefaultText = 'Skriv inn din beskrivelse' ;
FCKLang.GMapsLine = 'Linje' ;
FCKLang.GMapsLineInstructions = 'Klikk på kartet for å plassere det første punktet, og fortsett å klikke for å legge til flere punkter.<br>Du kan velge og dra punktene med musen eller slette dem ved hjelp av "DEL" tasten på tastaturet.';
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Hjelp' ;
FCKLang.GMapsClickToAddMarker = 'Klikk på kartet for å legge til en ny markør';
FCKLang.GMapsDeleteMarker = 'Slett markør' ;
FCKLang.GMapsAddMarker = 'Legg til markør' ;
FCKLang.GMaps_MissingKey = 'Du må angi en Google Maps Key for ditt domene i konfigurasjonsfilen.' ;

@ -1,46 +1,45 @@
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor.
* Chinese Traditional language file.
*/
FCKLang.DlgGMapsTitle = 'Google Maps properties' ;
FCKLang.GMapsBtn = 'Google Maps' ;
FCKLang.GMapsBtnTooltip = 'Insert/Edit a Google Map' ;
FCKLang.GMapsMap = 'Map' ;
FCKLang.GMapsZoomLevel = 'Zoom Level' ;
FCKLang.txtLatitude = 'Latitude' ;
FCKLang.txtLongitude = 'Longitude' ;
FCKLang.GMapsMarker = 'Marker' ;
FCKLang.GMapsSearchLabel = 'Search a direction' ;
FCKLang.GMapsSearch = 'Search' ;
FCKLang.GMapsNotFound = '%s not found.' ;
FCKLang.GMapsMarkerText = 'Text' ;
FCKLang.GMapsMarkerDefaultText = 'Write your text' ;
FCKLang.GMapsLine = 'Line' ;
FCKLang.GMapsLineInstructions = 'Click on the map to place the first point, and then keep on clicking to add more points.<br>You can drag them or delete them using "DEL" in your keyboard' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = 'Help' ;
FCKLang.GMapsClickToAddMarker = 'Click on the map to add a new marker' ;
FCKLang.GMapsDeleteMarker = 'Delete marker' ;
FCKLang.GMapsAddMarker = 'Add new marker' ;
FCKLang.GMaps_MissingKey = 'You must enter the Google Maps Key for your domain.' ;
/*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Google Maps for FCKeditor, English language file.
*/
FCKLang.DlgGMapsTitle = 'Google地圖內容' ;
FCKLang.GMapsBtn = 'Google圖資' ;
FCKLang.GMapsBtnTooltip = '新增/編輯地圖' ;
FCKLang.GMapsMap = '地圖' ;
FCKLang.GMapsZoomLevel = '縮放比率' ;
FCKLang.txtLatitude = '緯度' ;
FCKLang.txtLongitude = '經度' ;
FCKLang.GMapsMarker = '標竿' ;
FCKLang.GMapsSearchLabel = '目標搜尋' ;
FCKLang.GMapsSearch = '搜尋' ;
FCKLang.GMapsNotFound = '%s 尋找不到' ;
FCKLang.GMapsMarkerText = '文字' ;
FCKLang.GMapsMarkerDefaultText = '撰寫你的文字' ;
FCKLang.GMapsLine = '線標' ;
FCKLang.GMapsLineInstructions = '利用滑鼠在地圖上點選首要地點,你可隨時增加其它地點<br>也可拖曳標桿或利用鍵盤上刪除鍵(Del)刪除標竿' ;
FCKLang.GMapsHelpFile = 'install.html' ;
FCKLang.GMapsUserHelpFile = 'users.html' ;
FCKLang.Help = '求助' ;
FCKLang.GMapsClickToAddMarker = '在地圖上新增標竿' ;
FCKLang.GMapsDeleteMarker = '刪除標竿' ;
FCKLang.GMapsAddMarker = '新增標竿' ;
FCKLang.GMaps_MissingKey = '請輸入Google授權給你的Maps Key' ;
Loading…
Cancel
Save