Back to mods
Server I18n API (Reborn) project artwork

CurseForge · Minecraft mod

Server I18n API (Reborn)

26.1+ Port for Server I18n API

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Server I18n API (Reborn) release should I use?

Updated 2 months ago
beta file 2.0.0-beta.1 for 26.1.x
Game version 26.1, 26.1.1, 26.1.2
Loader Fabric, NeoForge

Server I18n API (Reborn) 2.0.0-beta.1 for 26.1.x targets 26.1, 26.1.1, 26.1.2 with Fabric, NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Server I18n API (Reborn) required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric, NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Server I18n API (Reborn) 2.0.0-beta.1 for 26.1.x need?

2.0.0-beta.1 for 26.1.x. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Server I18n API (Reborn) without breaking your instance.

Built for Server I18n API (Reborn) 2.0.0-beta.1 for 26.1.x. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 2.0.0-beta.1 for 26.1.x. It targets 26.1, 26.1.1, 26.1.2 with Fabric, NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside 2.0.0-beta.1 for 26.1.x. It opens that exact file at the source.

About this project

What does Server I18n API (Reborn) add?

Server I18n API (Reborn)

This is a server-side only mod API to provide I18n for server-side only mods.

Its a modding library; you won't expect any visual effect without installing dependents.

Language detection is automatic when sending message to player(s).

Upstream: CodeOfArdonia/ServerI18nAPI

This is a fork of Server I18n API for 26.1+ support.

Guide for developers

You need to put language JSONs in data/<mod id>/lang/<language>.json, filling in key-value pairs. Lang files in assets folders are ignored by ServerI18n.

API: ServerI18n.java class.

Examples:

// 1. Translate a key into a specific player's language with positional arguments
String msg = ServerI18n.translate(player, "chat.welcome", "Steve", 5);
// player's language (e.g., "zh_cn") -> "欢迎回来, Steve! 你有5条新消息。"

// 2. Send a translated system message to the command source (player or console)
ServerI18n.sendMessage(stack, "foo.command.success", "backup.zip");
// If stack is a player, uses their language; otherwise falls back to en_us.

// 3. Get raw translation without applying String.format (e.g., for custom formatting)
String raw = ServerI18n.translateRaw("fr_fr", "bar.gui.button.confirm");
// raw = "Confirmer" (if exists), otherwise fallback to en_us or the key itself.

// 4. Broadcast a message to all online players using the server instance
ServerI18n.broadcast(server, "announcement.maintenance", "10:00", "12:00");
// Each player receives the message in their own language.

// 5. Use default language (en_us) explicitly for console or fallback
Component comp = ServerI18n.translateToLiteralDefault("baz.error.file_not_found", "config.yml");
// comp is a literal Component with English text: "File not found: config.yml"

Project description from CurseForge.

Pick your setup

Server I18n API (Reborn) by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

6 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Server I18n API (Reborn) versions and loaders

1 of 1 releases match

Looking for an older file? The official CurseForge project page is in Resources.