Skip to main content

Sapphire Logo

@sapphire/plugin-i18next

Plugin for @sapphire/framework to support i18next based internationalization.

GitHub npm bundle size npm

Description

An implementation of i18next's filesystem backend for Sapphire. It allows you to use a JSON-based languages directory to add internationalization for your bot using SapphireClient's fetchLanguage hook and a custom message extension, adding features such as sendTranslated and resolveKey.

Features

  • Fully ready for TypeScript!
  • Includes ESM ready entrypoint
  • Framework agnostic
  • Includes convenience register for discord.js

Installation

@sapphire/plugin-i18next depends on the following packages. Be sure to install these along with this package!

You can use the following command to install this package, or replace npm install with your package manager of choice.

npm install @sapphire/plugin-i18next @sapphire/framework discord.js

Usage

This registers the methods and options necessary for message translations in the Sapphire client.

// Main bot file
// Be sure to register the plugin before instantiating the client.
import '@sapphire/plugin-i18next/register';

The basic structure of a translation file is as follows:

// languages/en-US/commands/ping.json
{
"success": "Pong!",
"success_with_args": "Pong! Took me {{latency}}ms to reply"
}

The resolveKey function can be used anywhere to get translated text by its key. In this example, it is used in a method to send a message.

import { resolveKey } from '@sapphire/plugin-i18next';
import { Command } from '@sapphire/framework';
import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
});
}

public async messageRun(message: Message) {
await message.channel.send(await resolveKey('commands/ping:success'));
}
}

sendLocalized will send translated text resolved from a key to a specified channel.

import { sendLocalized } from '@sapphire/plugin-i18next';
import { Command } from '@sapphire/framework';

import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
});
}

public async messageRun(message: Message) {
await sendLocalized(message, 'commands/ping:success');
}
}

editLocalized edits a message, replacing its content with translated text resolved from its key.

import { editLocalized } from '@sapphire/plugin-i18next';
import { Command } from '@sapphire/framework';

import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
});
}

public async messageRun(message: Message) {
await editLocalized(message, 'commands/ping:success_args', { latency: ws.ping });
}
}

fetchLanguage returns the guild-specific language that the client is using.

import { fetchLanguage } from '@sapphire/plugin-i18next';
import { Command } from '@sapphire/framework';

import type { Message } from 'discord.js';

export class PingCommand extends Command {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
description: 'ping pong'
});
}

public async messageRun(message: Message) {
return message.channel.send(await fetchLanguage(message));
// ===> en-US
}
}

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, Paypal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors

Please make sure to read the Contributing Guide before making a pull request.

Thank you to all the people who already contributed to Sapphire!

Classes

ClassDescription
InternationalizationHandlerA generalized class for handling i18next JSON files and their discovery.

Interfaces

InterfaceDescription
$DictionaryThis is a re-exported type from i18next. It is essentially an object of key-value pairs, where the key is a string and the value is any.
BuilderWithDescription-
BuilderWithName-
HMROptionsConfigure whether to use Hot-Module-Replacement (HMR) for your i18next resources using these options. The minimum config to enable HMR is to set enabled to true. Any other properties are optional.
I18nextFormatters-
I18nextNamedCachedFormatterRepresents a cached formatter that is added to i18next with i18next.services.formatter.addCached.
I18nextNamedFormatterRepresents a cached formatter that is added to i18next with i18next.services.formatter.add.
InternationalizationClientOptions-
InternationalizationContextContext for InternationalizationHandler.fetchLanguage functions. This context enables implementation of per-guild, per-channel, and per-user localization.
InternationalizationOptionsThe options used in InternationalizationHandler.
LocalizedData-
TFunction-

Type Aliases

Type AliasDescription
$NoInferThis is a re-exported type from i18next.
$SpecialObjectThis is a re-exported type from i18next. It is the returned type from resolveKey when returnObjects is true in the options.
BuilderWithNameAndDescription-
ChannelTarget-
DiscordChannel-
DynamicOptionsUsed to dynamically add options based on found languages in InternationalizationHandler#init.
I18nextFormatterRepresents a formatter that is added to i18next with i18next.services.formatter.add or i18next.services.formatter.addCached, depending on the cached property.
Target-
TextBasedDiscordChannel-
TOptions-

Variables

VariableDescription
i18next-
versionThe @sapphire/plugin-i18next version that you are currently using. An example use of this is showing it of in a bot information command.

Functions

FunctionDescription
applyDescriptionLocalizedBuilderApplies the localized descriptions on the builder, calling setDescription and setDescriptionLocalizations.
applyLocalizedBuilderApplies the localized names and descriptions on the builder, calling applyNameLocalizedBuilder and applyDescriptionLocalizedBuilder.
applyNameLocalizedBuilderApplies the localized names on the builder, calling setName and setNameLocalizations.
createLocalizedChoiceConstructs an object that can be passed into setChoices for String or Number option with localized names.
fetchLanguageRetrieves the language name for a specific target, using InternationalizationHandler.fetchLanguage. If InternationalizationHandler.fetchLanguage is not defined or this function returns a nullish value, then there will be a series of fallback attempts in the following descending order: 1. Returns Guild.preferredLocale. 2. Returns InternationalizationOptions.defaultName if no guild was provided. 3. Returns 'en-US' if nothing else was found.
fetchTRetrieves the language-assigned function from i18next designated to a target's preferred language code.
getLocalizedDataGets the value and the localizations from a language key.
resolveKeyResolves a key and its parameters.