}
marker = L.marker(e.latlng, {icon: OSM.getUserIcon()}).addTo(map)
- .bindPopup(I18n.t('diary_entry.edit.marker_text'));
+ .bindPopup(I18n.t('diary_entries.edit.marker_text'));
}
$("#usemap").click(function (e) {
if ($("#latitude").val() && $("#longitude").val()) {
marker = L.marker(centre, {icon: OSM.getUserIcon()}).addTo(map)
- .bindPopup(I18n.t('diary_entry.edit.marker_text'));
+ .bindPopup(I18n.t('diary_entries.edit.marker_text'));
}
map.on("click", setLocation);