🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@orderly.network/i18n

Package Overview
Dependencies
Maintainers
5
Versions
159
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@orderly.network/i18n

Internationalization for orderly sdk

latest
npmnpm
Version
3.1.7
Version published
Weekly downloads
1.2K
-48.64%
Maintainers
5
Weekly downloads
 
Created
Source

@orderly.network/i18n

Internationalization and CLI tools for Orderly SDK. Based on i18next ecosystem.

Quick start

Install the package, wrap your app root with LocaleProvider, and you get English by default.

import { LocaleProvider } from "@orderly.network/i18n";

export function App() {
  return (
    <LocaleProvider>
      <YourApp />
    </LocaleProvider>
  );
}

For multiple locales, custom keys, Vite bundling, HTTP loading, or the CLI, see the Documentation links below.

Documentation

TopicLink
AI / Agent integrationdocs/guide/AGENTS.md
Package exportsdocs/guide/exports.md
Integration (providers, locales, extend keys, external resources)docs/guide/integration.md
Utils (paths and locale helpers)docs/guide/utils.md
Examples (recommended AsyncResources + alternatives)docs/guide/examples.md
CLI (i18n binary)docs/guide/cli.md

Suggested reading order: Agents start with AGENTS. Otherwise: Integration (API and behavior) → Examples (copy-paste recipes as needed) → CLI / Utils when relevant.

Generated API notes for src/ live under packages/i18n/docs/ in the monorepo only (not published in the npm package). The user guide under docs/guide/ is included in the package so links above work after npm install.

Package exports (summary)

ExportDescription
@orderly.network/i18nMain entry: providers, hooks, i18n, resource helpers, types — see exports guide
@orderly.network/i18n/locales/*Built-in locale JSON files
@orderly.network/i18n/constantConstants (LocaleEnum, defaultLanguages, …)
@orderly.network/i18n/utilsUtilities — see Utils

The default i18n namespace is translation (defaultNS).

FAQs

Package last updated on 28 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts