22 lines
347 B
Lua
22 lines
347 B
Lua
-- Load support for intllib.
|
|
S = poi.get_translator
|
|
|
|
--[[
|
|
**************************
|
|
** Categories for PoI **
|
|
**************************
|
|
--]]
|
|
|
|
poi_categories = {
|
|
S("General"),
|
|
S("Village"),
|
|
S("Building"),
|
|
S("Market"),
|
|
S("Landscape"),
|
|
S("Cave"),
|
|
S("Recreation"),
|
|
S("Bank"),
|
|
S("Post"),
|
|
S("Station"),
|
|
S("Street")
|
|
}
|