# ------------------------------------------------
# seasons-api
# ------------------------------------------------
# This mod was developed by analogy with the Spigot plugin "Seasons"
# specifically for the private Minecraft server "Zixa City"
# by its administrator (kochkaev, aka kleverdi).
# The idea of this mod was taken from Harieo.
# ------------------------------------------------
# Harieo on GitHub: https://github.com/Harieo/
# Original plugin on GitHub: https://github.com/Harieo/Seasons/
# Original plugin on SpigotMC: https://www.spigotmc.org/resources/seasons.39298/
# ------------------------------------------------
# Created by @kochkaev
#   - GitHub: https://github.com/kochkaev/
#   - VK: https://vk.com/kleverdi/
#   - YouTube: https://youtube.com/@kochkaev/
#   - Contact email: kleverdi@vk.com
# ------------------------------------------------
# WARN: It's server-side mod.
# ------------------------------------------------
# # # # # # # # # # # # # # # # # # # # # # # # # #
# 
# It's mod lang!
# 
# ** NAME = Display name of the Weather/Season
# ** MESSAGE = Message, sends to chat on trigger
# #
# Other config files:
#   - current.json - information about the current Weather/Season,
#     is updated when the server is turned off.
#   - lang - directory, contains translations of mod names/messages.
# 
# 
# You can use placeholders: 
#   - & - insert color (replaces to paragraph symbol)
#   - %message% - will be replaced to message in specific context
#   - %seasons:weather% - insert current weather name (from langs)
#   - %seasons:weather-previous% - insert previous weather name (from langs)
#   - %seasons:season% - insert current season name (from langs)
#   - %seasons:lang% - insert current lang key
#   - %seasons:display-name% - insert Seasons mod display name (lang.message.seasonsModDisplayName in langs)
#   - %seasons:title-new-day% - insert new day title message (from langs)
#   - %seasons:title-info% - insert new day info title message (from langs)
#   - %seasons:actionbar% - insert actionbar title message format
#   - And others if you have installed PlaceholderAPI



# Seasons mod name (used in chat messages as %seasons:display-name% placeholder)
# type: "String" | default: "&e&lСезоны"
lang.message.seasonsModDisplayName: "&e&lСезоны"
# New day title message (used in titles as %seasons:title-new-day% placeholder)
# type: "String" | default: "&e&bНаступил новый день!"
lang.message.messageNewDay: "&e&bНаступил новый день!"
# Current weather and season title message (used in titles as %seasons:title-info% placeholder)
# type: "String" | default: "%seasons:season%. &7Сегодня %seasons:weather%"
lang.message.currentInfo: "%seasons:season%. &7Сегодня %seasons:weather%"