CurseForge · Minecraft mod
Server I18n API (Reborn)
26.1+ Port for Server I18n API
Quick answer
Which Server I18n API (Reborn) release should I use?
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.
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.
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.
- 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.
- 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.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 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).
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.
26.1.1
2 loader builds26.1
2 loader buildsCheck 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
2.0.0-beta.1 for 26.1.x
server_i18n_api_reborn-2.0.0-beta.1.jar
25 Jun 2026
Looking for an older file? The official CurseForge project page is in Resources.