๐Ÿ“šTranslating

UI's translation can be found in ui/locale/en.json

{
    "crafting_recipes": "Crafting recipes",
    "availible_recipes": "availible crafting recipes.",
    "add_to_table": "Add to Crafting table",
    "not_enough_items": "Lack of items for craft",
    "crafting_table": "Crafting table",
    "table_recipes": "recipes.",
    "add_recipe": "Add recipe",
    "add_recipe_text": "If you want to start making an item, add the recipe to the crafting table",
    "claim_production": "Claim production",
    "cancel_production": "Cancel production",
    "craft_item": "Craft item",
    "crafting": "Crafting...",
    "crafted": "Crafted",
    "modal_header": "Are you sure ?",
    "modal_text": "Do you really wanto to cancel this production? This process cannot be undone.",
    "modal_cancel": "Cancel",
    "modal_confirm": "Confirm"
}

Notifications and other can be found in shared/locale.lua

Locale = {
    ['en'] = {
        ['open_crafing'] = '~INPUT_CONTEXT~ open crafting menu',
        ['no_required_job'] = 'You dont have the required job for this crafting bench',
        ['not_enough_items'] = 'You dont have the required items for this recipe',
        ['not_enough_space'] = 'You dont have enough space in your inventory',
        ['need_to_be_near'] = 'You need to be near to the crafting table to craft your recipes',
        ['not_enough_level'] = 'You dont have the specified level to get this item'
    }
}

Last updated