1 362
modifications
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 2 : | Ligne 2 : | ||
-- sujet | -- sujet | ||
local subject = localdata['type'] | function buildSubject(localdata) | ||
local subject = 'Lieu' | |||
if localdata['type'] then | |||
} | local types = { | ||
subject = | ['ville'] = 'Ville', | ||
} | |||
subject = types[localdata['type']:lower()] or subject | |||
end | |||
return subject | |||
end | |||
function buildIcon(localdata) | |||
local icon = 'Icon landmark.png' | |||
if localdata['icône'] then | |||
icon = localdata['icône'] | |||
elseif localdata['type'] then | |||
local types = { | |||
['ville'] = 'Icon ville.png', | |||
} | |||
icon = types[localdata['type']:lower()] or icon | |||
end | |||
return icon | |||
end | |||
return { | return { |