LocalePack
ChromeFirefoxEdgeOperaSafariCWS 列表頁
Vue.jsReact
Next.jsi18nextReact Native
開發者指南成功案例
專為 Next.js i18n 打造

適用於以下項目的 AI 在地化: Next.js 應用程式

上傳您的 JSON 翻譯檔,選擇目標語言,一次付款,並下載可直接使用的語系檔案。

ICU 與占位符安全
next-intl / react-i18next
透明定價
messages/en.json
來源(英文)
{
  "HomePage": {
    "title": "Welcome",
    "cta": "Get Started",
    "items": "{count, plural,
      one {# item}
      other {# items}}"
  }
}
德文(輸出)
{
  "HomePage": {
    "title": "Willkommen",
    "cta": "Loslegen",
    "items": "{count, plural,
      one {# Artikel}
      other {# Artikel}}"
  }
}
52 種語言

運作方式

用三個簡單步驟為你的 Next.js 應用進行在地化。付款後才會開始翻譯——我們會將工作排入佇列,並在幾分鐘內產生檔案。

01

上傳

拖放你的 JSON 翻譯檔(next-intl、react-i18next 或簡單 JSON)。我們會自動偵測格式。

02

選擇語言並查看價格

從 52 種語言中選擇。付款前可先查看依檔案大小與複雜度計算的透明定價。

03

下載翻譯

透過 Stripe 一次付款。我們會產生語系檔,並保留你的巢狀結構、ICU 訊息與佔位符。

即時定價示範

透明定價估算器

上傳前就能清楚看到你將支付的費用。最終報價會在上傳後,依檔案複雜度與所選語言計算。

1. 上傳檔案

將 JSON 檔案拖放到這裡

或點擊以瀏覽

next-intl、react-i18next 或扁平 JSON。最大 500KB。

2. 選擇語言

|

已選擇 52 種語言中的 3 種

3. 您的預估

已選擇的語言3

最終價格將於結帳頁面上傳檔案後計算

一次性付款 • 無訂閱

為 Next.js 開發者打造

專為 Next.js i18n 翻譯檔案打造。不是通用的翻譯工具。

多格式支援

支援 next-intl、react-i18next、i18next 與簡單的扁平 JSON。上傳時會自動偵測你的格式。

ICU 訊息安全性

在所有翻譯中保留 ICU 複數/選擇語法,例如 {count, plural, one {# item} other {# items}}。

支援巢狀 JSON

可處理深度巢狀的 JSON 結構。輸出檔案會完整保留你的命名空間階層。

可直接使用的輸出

依語系下載已翻譯的 JSON 檔案。放進你的 messages/ 或 locales/ 資料夾即可上線。

平行處理

所有語言同時翻譯。多數工作可在 5 分鐘內完成。

一次性付款

無訂閱、無月費。每次工作付一次,永久下載。

Next.js i18n 如何運作

使用 next-intl 或 react-i18next 的 Next.js 應用會將翻譯依語系存放在 JSON 檔案中。LocalePack 會根據你的來源檔產生全部語系檔。

messages/ 資料夾結構

messages/
├── en.json   ← source locale
├── de.json
├── fr.json
├── ja.json
└── ...       (52 locales)

next-intl 用法

// messages/en.json
{
  "HomePage": {
    "title": "Welcome to our platform",
    "description": "Build amazing apps",
    "items": "{count, plural,
      =0 {No items}
      one {# item}
      other {# items}}"
  }
}

// In your component
const t = useTranslations('HomePage');
<h1>{t('title')}</h1>
<p>{t('items', { count: 5 })}</p>

執行階段 API

useTranslations()

設定檔

i18n.ts

佔位符

{variable}

複數

ICU format

為什麼不直接用通用工具?

通用翻譯工具不了解 Next.js i18n 格式、ICU 訊息或巢狀 JSON 結構。

LocalePack
人工翻譯
通用 TMS
設定時間2 分鐘每種語言數小時30 分鐘以上
成本透明度
巢狀 JSON 支援
ICU 訊息安全性
速度(52 種語言)< 5 分鐘週小時
最適合Next.js 應用程式小型專案企業 CMS

成功案例

使用 LocalePack 的真實專案,最多可支援 52 種語言,觸及全球受眾。

AstrologerAI AI astrology app localized into 52 languages

AstrologerAI: an AI astrology app localized into 52 languages

How the AstrologerAI app translated its entire experience into 52 languages with LocalePack — 6.3M tokens for $58.73 — to reach a worldwide audience in their own language.

DevToys.pro developer tools web app localized into 52 languages

DevToys.pro: 400% international traffic growth across 52 languages

How the DevToys.pro web app translated its entire UI into 52 languages with LocalePack — 5.8M tokens for $58.44 — and quadrupled its international organic traffic.

DevToys New Tab Chrome extension localized into 52 languages

DevToys New Tab: a Chrome extension localized UI + store listing in 52 languages

How the DevToys New Tab Chrome extension localized both its in-extension UI and its Chrome Web Store listing into 52 languages to reach a global audience.

The LocalePack site localized into 52 languages with LocalePack

LocalePack localized itself into 52 languages — with LocalePack

We used our own tool to translate the entire LocalePack site into 52 languages — 2.9M tokens for $27.37 — so developers worldwide find us in their own language.

查看所有成功案例

深受 Next.js 開發者信賴

“替我省下好幾天的工作。上傳我的 next-intl JSON,就拿到結構完美的翻譯,而且 ICU 複數規則完整保留。”

Alex R.

全端開發者,SaaS 應用程式

“終於有工具懂巢狀 JSON,還不會把我的 ICU 訊息弄壞。輸出結果可以直接放進我的 messages/ 資料夾。”

Lisa M.

Next.js 開發者

“透明定價是我決定購買的關鍵。在上傳任何內容之前,我就清楚知道自己會付多少。”

Dev J.

開源貢獻者

52

支援的語系

100%

ICU 安全輸出

JSON

可直接上線

常見問題

關於 LocalePack for Next.js,你需要知道的一切。

也提供瀏覽器擴充功能版本:

ChromeFirefoxEdgeOperaSafari

準備好讓你的 Next.js 應用程式走向全球了嗎?

一次付款 • 下載語系檔案 • 全球上線

試用 LocalePack
LocalePack
指南隱私權條款支援

© 2025 LocalePack。保留所有權利。

本專案使用以下工具翻譯: LocalePack logoLocalePack