Change image download warning message to a list
This commit is contained in:
parent
6c1704b245
commit
2ba85472be
2 changed files with 7 additions and 2 deletions
|
@ -130,7 +130,12 @@ L.OSM.share = function (options) {
|
|||
$("<div>")
|
||||
.attr("id", "export-warning")
|
||||
.attr("class", "text-body-secondary")
|
||||
.text(I18n.t("javascripts.share.only_standard_layer"))
|
||||
.text(I18n.t("javascripts.share.only_layers_exported_as_image"))
|
||||
.append(
|
||||
$("<ul>").append(
|
||||
map.baseLayers
|
||||
.filter(layer => layer.options.canDownloadImage)
|
||||
.map(layer => $("<li>").text(layer.options.name))))
|
||||
.appendTo($imageSection);
|
||||
|
||||
$form = $("<form>")
|
||||
|
|
|
@ -3105,7 +3105,7 @@ en:
|
|||
center_marker: "Center map on marker"
|
||||
paste_html: "Paste HTML to embed in website"
|
||||
view_larger_map: "View Larger Map"
|
||||
only_standard_layer: "Only the Standard, Cycle Map and Transport layers can be exported as an image"
|
||||
only_layers_exported_as_image: "Only the following layers can be exported as an image:"
|
||||
embed:
|
||||
report_problem: "Report a problem"
|
||||
key:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue