Zephora UI

স্থানীয়করণ

প্রতিটি বিল্ট-ইন UI স্ট্রিং (ক্লোজ বাটন, পেজিনেশন লেবেল, সর্টিং ঘোষণা, আপলোড প্রম্পট…) locale রেজিস্ট্রির মধ্য দিয়ে সমাধান হয়। বান্ডলে কেবল en এমবেড করা থাকে — অন্য প্রতিটি ভাষা বাইরে থেকে (ইম্পোর্টযোগ্য মডিউল বা JSON ফাইল) লোড হয় এবং addLocale দিয়ে নিবন্ধিত হয়। একই রেজিস্ট্রি @zephora/react@zephora/native উভয়কে চালায়। en, tr.

একটি locale লোড করা

// 1) As a module (tree-shaken, typed):
import { addLocale } from "@zephora/react";
import { trLocale } from "@zephora/theme/locales/tr";
addLocale("tr", trLocale);

// 2) As JSON over the network (e.g. from your CDN):
const messages = await fetch("/locales/tr.json").then((r) => r.json());
addLocale("tr", messages);
// JSON dosyası pakette hazır: @zephora/theme/locales/tr.json

লাইভ ডেমো

locale পরিবর্তন করুন — পেজিনেশন লেবেল এবং dialog বাটন সঙ্গে সঙ্গে আপডেট হয়।

একটি locale নির্বাচন

// Web
<ZephoraConfigProvider locale="tr">...</ZephoraConfigProvider>

// React Native
<ZephoraProvider theme={lightTheme} locale="tr">...</ZephoraProvider>

একটি কাস্টম locale নিবন্ধন

addLocale আপনার বার্তাগুলোকে ইংরেজির উপর মার্জ করে, তাই আংশিক সংজ্ঞা নিরাপদ। updateLocale বিদ্যমান একটিকে প্যাচ করে।

import { addLocale, updateLocale } from "@zephora/react";

addLocale("de", {
  intlLocale: "de",
  firstDayOfWeek: 1,
  close: "Schließen",
  cancel: "Abbrechen",
  confirm: "Bestätigen",
  loading: "Wird geladen…",
  pageOf: "Seite {page} von {count}",
});

updateLocale("de", { clear: "Leeren" });

নিজের কম্পোনেন্টে স্ট্রিং পড়া

import { useLocale, localeOption } from "@zephora/react";

function SaveBar() {
  const { t } = useLocale();
  return <Button>{t("apply")}</Button>;
}

// Outside React:
localeOption("cancel", "tr"); // "İptal"

উপলব্ধ locale

48টি তৈরি অনুবাদসহ আসে। প্রতিটি একটি স্বাধীন মডিউল — শুধু যা দরকার তা-ই ইম্পোর্ট করুন (বা মিলে যাওয়া .json fetch করুন)।

কোডভাষাইম্পোর্ট পাথ
arالعربية (Arabic)@zephora/theme/locales/ar
azAzərbaycanca (Azerbaijani)@zephora/theme/locales/az
bgБългарски (Bulgarian)@zephora/theme/locales/bg
bnবাংলা (Bengali)@zephora/theme/locales/bn
caCatalà (Catalan)@zephora/theme/locales/ca
csČeština (Czech)@zephora/theme/locales/cs
daDansk (Danish)@zephora/theme/locales/da
deDeutsch (German)@zephora/theme/locales/de
elΕλληνικά (Greek)@zephora/theme/locales/el
esEspañol (Spanish)@zephora/theme/locales/es
etEesti (Estonian)@zephora/theme/locales/et
faفارسی (Persian)@zephora/theme/locales/fa
fiSuomi (Finnish)@zephora/theme/locales/fi
frFrançais (French)@zephora/theme/locales/fr
heעברית (Hebrew)@zephora/theme/locales/he
hiहिन्दी (Hindi)@zephora/theme/locales/hi
hrHrvatski (Croatian)@zephora/theme/locales/hr
huMagyar (Hungarian)@zephora/theme/locales/hu
hyՀայերեն (Armenian)@zephora/theme/locales/hy
idBahasa Indonesia (Indonesian)@zephora/theme/locales/id
isÍslenska (Icelandic)@zephora/theme/locales/is
itItaliano (Italian)@zephora/theme/locales/it
ja日本語 (Japanese)@zephora/theme/locales/ja
kaქართული (Georgian)@zephora/theme/locales/ka
kkҚазақша (Kazakh)@zephora/theme/locales/kk
ko한국어 (Korean)@zephora/theme/locales/ko
ltLietuvių (Lithuanian)@zephora/theme/locales/lt
lvLatviešu (Latvian)@zephora/theme/locales/lv
msBahasa Melayu (Malay)@zephora/theme/locales/ms
nlNederlands (Dutch)@zephora/theme/locales/nl
noNorsk bokmål (Norwegian)@zephora/theme/locales/no
plPolski (Polish)@zephora/theme/locales/pl
ptPortuguês (Portuguese)@zephora/theme/locales/pt
pt-brPortuguês do Brasil (Brazilian Portuguese)@zephora/theme/locales/pt-br
roRomână (Romanian)@zephora/theme/locales/ro
ruРусский (Russian)@zephora/theme/locales/ru
skSlovenčina (Slovak)@zephora/theme/locales/sk
slSlovenščina (Slovenian)@zephora/theme/locales/sl
srSrpski (Serbian)@zephora/theme/locales/sr
svSvenska (Swedish)@zephora/theme/locales/sv
swKiswahili (Swahili)@zephora/theme/locales/sw
taதமிழ் (Tamil)@zephora/theme/locales/ta
thไทย (Thai)@zephora/theme/locales/th
trTürkçe (Turkish)@zephora/theme/locales/tr
ukУкраїнська (Ukrainian)@zephora/theme/locales/uk
viTiếng Việt (Vietnamese)@zephora/theme/locales/vi
zh-cn简体中文 (Simplified Chinese)@zephora/theme/locales/zh-cn
zh-tw繁體中文 (Traditional Chinese)@zephora/theme/locales/zh-tw

বার্তা রেফারেন্স

সম্পূর্ণ কী সেটটি ZephoraLocale টাইপে থাকে — অ্যাকশন (close, cancel, confirm, clear…), ডেটা অবস্থা (loading, noData, emptyMessage), ফর্ম স্ট্রিং (showPassword, browseFiles, removeFile), নেভিগেশন (pageOf, nextPage, breadcrumb), ডেটা প্রদর্শন (sortAscending, selectAllRows, goToSlide) এবং তারিখ (prevMonth, chooseDate, firstDayOfWeek, intlLocale)। প্লেসহোল্ডারগুলো t(key, params) দিয়ে ইন্টারপোলেট করা {param} সিনট্যাক্স ব্যবহার করে।