@primestyleai/tryon 5.10.125 → 5.10.126

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3415 +0,0 @@
1
- "use client";
2
- const f = "ps_session";
3
- const P = "ps_mem_";
4
- let y = null;
5
- function S() {
6
- try {
7
- return typeof window < "u" && typeof window.localStorage < "u";
8
- } catch {
9
- return !1;
10
- }
11
- }
12
- function E() {
13
- if (typeof crypto < "u" && typeof crypto.randomUUID == "function")
14
- return crypto.randomUUID();
15
- const o = "0123456789abcdef";
16
- let e = P;
17
- for (let t = 0; t < 32; t++) e += o[Math.floor(Math.random() * 16)];
18
- return e;
19
- }
20
- function k() {
21
- if (!S()) return y;
22
- try {
23
- const o = window.localStorage.getItem(f);
24
- if (!o) return null;
25
- const e = JSON.parse(o);
26
- return typeof e.id != "string" || typeof e.issuedAt != "number" ? null : {
27
- id: e.id,
28
- issuedAt: e.issuedAt,
29
- lastSeenAt: typeof e.lastSeenAt == "number" ? e.lastSeenAt : e.issuedAt
30
- };
31
- } catch {
32
- return null;
33
- }
34
- }
35
- function p(o) {
36
- if (y = o, !!S())
37
- try {
38
- window.localStorage.setItem(f, JSON.stringify(o));
39
- } catch {
40
- }
41
- }
42
- function T() {
43
- const o = Date.now(), e = k();
44
- if (e && o - e.lastSeenAt < 2592e6)
45
- return o - e.lastSeenAt > 5 * 60 * 1e3 && p({ ...e, lastSeenAt: o }), e.id;
46
- const t = { id: E(), issuedAt: o, lastSeenAt: o };
47
- return p(t), t.id;
48
- }
49
- function b() {
50
- if (typeof navigator > "u") return null;
51
- const o = (navigator.userAgent || "").toLowerCase();
52
- return /ipad|tablet|(android(?!.*mobile))/.test(o) ? "tablet" : /mobile|android|iphone|ipod|blackberry|iemobile|opera mini/.test(o) ? "mobile" : "desktop";
53
- }
54
- const A = "http://localhost:4000";
55
- class q {
56
- constructor(e, t) {
57
- this.apiKey = e, this.baseUrl = (t || A).replace(/\/+$/, "");
58
- }
59
- get headers() {
60
- return {
61
- "Content-Type": "application/json",
62
- Authorization: `Bearer ${this.apiKey}`
63
- };
64
- }
65
- async submitTryOn(e, t, r, s, i) {
66
- const a = {
67
- garmentImage: t,
68
- // Attribution fields — backend logs these into the TryOnEvent collection
69
- // so non-technical operators can answer "which products are being tried on
70
- // and by how many customers". Safe fallbacks when absent.
71
- sessionId: T(),
72
- deviceHint: b()
73
- };
74
- if (i?.modelImageId && (a.modelImageId = i.modelImageId), e && (a.modelImage = e), r && r.length > 0 && (a.fitInfo = r), s && s !== "apparel" && (a.category = s), i?.productId && (a.productId = i.productId), i?.productTitle && (a.productTitle = i.productTitle), i?.productDescription && (a.productDescription = i.productDescription), i?.productMaterial && (a.productMaterial = i.productMaterial), i?.silhouetteContext && (a.silhouetteContext = i.silhouetteContext), i?.editFromPrevious && (a.editFromPrevious = !0), console.log("[ps-sdk:api] POST /api/v1/tryon payload", {
75
- modelImageBytes: e.length,
76
- garmentImageBytes: t.length,
77
- category: s || "apparel",
78
- fitInfo: r?.map((n) => ({
79
- area: n.area,
80
- fit: n.fit,
81
- userValue: n.userValue,
82
- garmentRange: n.garmentRange
83
- })) || null,
84
- silhouetteContext: i?.silhouetteContext || null
85
- }), r && r.length > 0) {
86
- console.log("[ps-sdk:api] Body vs Garment (what Gemini will see):");
87
- for (const n of r) {
88
- const l = (n.garmentRange || "").replace(/[^\d.\-–]/g, " ").trim().split(/[\s\-–]+/).filter(Boolean).map(Number).filter((g) => !isNaN(g));
89
- let u = "";
90
- if (l.length && n.userValue != null) {
91
- const g = (Math.min(...l) + Math.max(...l)) / 2, h = Math.round((n.userValue - g) * 10) / 10;
92
- u = h > 0 ? `garment ${h} smaller` : h < 0 ? `garment ${Math.abs(h)} larger` : "matched";
93
- }
94
- console.log(`[ps-sdk:api] ${n.area.padEnd(10)} body=${n.userValue ?? "?"} garment=${n.garmentRange ?? "?"} → ${u}`);
95
- }
96
- }
97
- const d = await fetch(`${this.baseUrl}/api/v1/tryon`, {
98
- method: "POST",
99
- headers: this.headers,
100
- body: JSON.stringify(a)
101
- });
102
- if (!d.ok) {
103
- const n = await d.json().catch(() => ({}));
104
- throw d.status === 402 ? new c(
105
- n.message || "Insufficient try-ons",
106
- "INSUFFICIENT_BALANCE"
107
- ) : new c(
108
- n.message || "Failed to submit try-on",
109
- "API_ERROR"
110
- );
111
- }
112
- return d.json();
113
- }
114
- async getStatus(e) {
115
- const t = await fetch(`${this.baseUrl}/api/v1/tryon/status/${e}`, {
116
- headers: this.headers
117
- });
118
- if (!t.ok) {
119
- const r = await t.json().catch(() => ({}));
120
- throw new c(
121
- r.message || "Failed to get status",
122
- "API_ERROR"
123
- );
124
- }
125
- return t.json();
126
- }
127
- getStreamUrl() {
128
- return `${this.baseUrl}/api/v1/tryon/stream?key=${encodeURIComponent(this.apiKey)}`;
129
- }
130
- }
131
- class c extends Error {
132
- constructor(e, t) {
133
- super(e), this.name = "PrimeStyleError", this.code = t;
134
- }
135
- }
136
- class _ {
137
- constructor(e) {
138
- this.eventSource = null, this.listeners = /* @__PURE__ */ new Map(), this.reconnectTimer = null, this.reconnectAttempts = 0, this.maxReconnectAttempts = 5, this.streamUrl = e;
139
- }
140
- connect() {
141
- this.eventSource || (this.eventSource = new EventSource(this.streamUrl), this.eventSource.addEventListener("vto-update", (e) => {
142
- try {
143
- const t = JSON.parse(e.data);
144
- this.emit(t.galleryId, t);
145
- } catch {
146
- }
147
- }), this.eventSource.onopen = () => {
148
- this.reconnectAttempts = 0;
149
- }, this.eventSource.onerror = () => {
150
- this.eventSource?.close(), this.eventSource = null, this.scheduleReconnect();
151
- });
152
- }
153
- scheduleReconnect() {
154
- if (this.reconnectAttempts >= this.maxReconnectAttempts || this.listeners.size === 0) return;
155
- const e = Math.min(1e3 * 2 ** this.reconnectAttempts, 3e4);
156
- this.reconnectAttempts++, this.reconnectTimer = setTimeout(() => {
157
- this.connect();
158
- }, e);
159
- }
160
- onJob(e, t) {
161
- return this.listeners.has(e) || this.listeners.set(e, /* @__PURE__ */ new Set()), this.listeners.get(e).add(t), this.eventSource || this.connect(), () => {
162
- const r = this.listeners.get(e);
163
- r && (r.delete(t), r.size === 0 && this.listeners.delete(e)), this.listeners.size === 0 && this.disconnect();
164
- };
165
- }
166
- emit(e, t) {
167
- const r = this.listeners.get(e);
168
- r && r.forEach((s) => s(t));
169
- }
170
- disconnect() {
171
- this.reconnectTimer && (clearTimeout(this.reconnectTimer), this.reconnectTimer = null), this.eventSource && (this.eventSource.close(), this.eventSource = null), this.listeners.clear(), this.reconnectAttempts = 0;
172
- }
173
- }
174
- const v = 512, z = 0.65;
175
- function M(o, e = {}) {
176
- const t = e.maxDimension ?? v, r = e.quality ?? z;
177
- return new Promise((s, i) => {
178
- const a = new FileReader();
179
- a.onload = () => {
180
- const d = new Image();
181
- d.onload = () => {
182
- try {
183
- const n = document.createElement("canvas");
184
- let { width: l, height: u } = d;
185
- (l > t || u > t) && (l > u ? (u = Math.round(u * t / l), l = t) : (l = Math.round(l * t / u), u = t)), n.width = l, n.height = u;
186
- const g = n.getContext("2d");
187
- if (!g) {
188
- i(new Error("Canvas context not available"));
189
- return;
190
- }
191
- g.drawImage(d, 0, 0, l, u);
192
- const h = n.toDataURL("image/jpeg", r);
193
- s(h);
194
- } catch (n) {
195
- i(n);
196
- }
197
- }, d.onerror = () => i(new Error("Failed to load image")), d.src = a.result;
198
- }, a.onerror = () => i(new Error("Failed to read file")), a.readAsDataURL(o);
199
- });
200
- }
201
- function $(o) {
202
- return ["image/jpeg", "image/png", "image/webp", "image/avif"].includes(o.type);
203
- }
204
- async function X(o, e, t) {
205
- try {
206
- const r = typeof o == "string" ? o : await M(o, { maxDimension: 384, quality: 0.6 }), s = await fetch(`${e}/api/v1/sizing/age-check`, {
207
- method: "POST",
208
- headers: {
209
- "Content-Type": "application/json",
210
- Authorization: `Bearer ${t}`
211
- },
212
- body: JSON.stringify({ bodyImage: r })
213
- });
214
- if (!s.ok)
215
- return console.warn(`[PS-SDK:AgeCheck] HTTP ${s.status} — failing open`), { isAdult: !0, confidence: "low" };
216
- const i = await s.json();
217
- return {
218
- isAdult: i?.isAdult !== !1,
219
- // anything other than explicit false → allow
220
- confidence: i?.confidence === "high" ? "high" : "low",
221
- reasoning: typeof i?.reasoning == "string" ? i.reasoning : void 0
222
- };
223
- } catch (r) {
224
- return console.warn("[PS-SDK:AgeCheck] error — failing open:", r), { isAdult: !0, confidence: "low" };
225
- }
226
- }
227
- const m = {};
228
- function w(o, e) {
229
- m[o] = { ...m[o] || {}, ...e };
230
- }
231
- function Q(o) {
232
- const e = o?.toLowerCase().split("-")[0] || "en";
233
- return (t) => e === "en" || !m[e] ? t : m[e][t] ?? t;
234
- }
235
- function ee() {
236
- return typeof navigator > "u" ? "en" : (navigator.language || navigator.userLanguage || "en").split("-")[0].toLowerCase();
237
- }
238
- const te = [
239
- "en",
240
- "ja",
241
- "ko",
242
- "zh",
243
- "es",
244
- "fr",
245
- "de",
246
- "it",
247
- "pt",
248
- "nl",
249
- "ru",
250
- "ar",
251
- "tr",
252
- "pl",
253
- "sv",
254
- "da",
255
- "nb",
256
- "fi",
257
- "th",
258
- "vi"
259
- ], oe = {
260
- en: "English",
261
- ja: "日本語",
262
- ko: "한국어",
263
- zh: "中文",
264
- es: "Español",
265
- fr: "Français",
266
- de: "Deutsch",
267
- it: "Italiano",
268
- pt: "Português",
269
- nl: "Nederlands",
270
- ru: "Русский",
271
- ar: "العربية",
272
- tr: "Türkçe",
273
- pl: "Polski",
274
- sv: "Svenska",
275
- da: "Dansk",
276
- nb: "Norsk",
277
- fi: "Suomi",
278
- th: "ไทย",
279
- vi: "Tiếng Việt"
280
- }, ie = [
281
- "Virtual Try-On",
282
- "Find Your Size & See It On You",
283
- "Get the perfect fit, then try it on virtually",
284
- "Get Your Size",
285
- "Instant fit recommendation",
286
- "Try It On",
287
- "See how it looks on you",
288
- "Find My Size",
289
- "Takes less than a minute",
290
- "Upload a full body photo",
291
- "JPEG, PNG or WebP (max 10MB)",
292
- "Your photo",
293
- "Let's find your best fit",
294
- "Centimeters",
295
- "Inches",
296
- "Load saved profile...",
297
- "HEIGHT",
298
- "WEIGHT",
299
- "feet",
300
- "inches",
301
- "cm",
302
- "kg",
303
- "How to measure",
304
- "Hide guide",
305
- "I know my measurements",
306
- "Not sure? Use height & weight instead",
307
- "Please fill in height and weight",
308
- "Please fill in all required fields",
309
- "Next",
310
- "Analyzing your size...",
311
- "RECOMMENDED SIZE",
312
- "NOT RECOMMENDED",
313
- "Edit measurements",
314
- "Size guide",
315
- "Your fit",
316
- "Your measure",
317
- "perfect fit",
318
- "too tight",
319
- "tight",
320
- "a bit tight",
321
- "too loose",
322
- "loose",
323
- "a bit loose",
324
- "See fit on your photo",
325
- "Hide visual fit",
326
- "Analyzing...",
327
- "Try it on",
328
- "SIZE CHART",
329
- "YOUR ESTIMATED MEASUREMENTS",
330
- "Edit",
331
- "Download",
332
- "Size chart",
333
- "Preparing your image...",
334
- "Analyzing body proportions...",
335
- "Matching garment to your photo...",
336
- "Generating virtual try-on...",
337
- "Refining details...",
338
- "Almost there...",
339
- "Complete!",
340
- "This usually takes 15-25 seconds",
341
- "Something went wrong",
342
- "Try Again",
343
- "SDK not configured. Please provide an API key.",
344
- "Please upload a JPEG, PNG, or WebP image.",
345
- "Image must be under 10MB.",
346
- "Try-on generation failed",
347
- "Failed to start try-on",
348
- "No product image found. Please set the product-image attribute.",
349
- "Powered by",
350
- "My Profiles",
351
- "History",
352
- "No saved profiles yet.",
353
- "No history yet.",
354
- "Product",
355
- "Women's",
356
- "Men's",
357
- "Profiles",
358
- "Women's Profile",
359
- "Men's Profile",
360
- "Height",
361
- "Weight",
362
- "Chest",
363
- "Bust",
364
- "Waist",
365
- "Hips",
366
- "Shoulders",
367
- "Sleeve",
368
- "Inseam",
369
- "Neck",
370
- "Foot",
371
- "Shoe EU",
372
- "Shoe US",
373
- "Shoe UK",
374
- "Saved",
375
- "Delete Profile",
376
- "Shoe size (US)",
377
- "Shoe size (UK)",
378
- "Shoe size (EU)",
379
- "Generating...",
380
- "Foot length",
381
- "Size",
382
- "Try on size",
383
- "lbs",
384
- "in",
385
- "e.g.",
386
- "Drop your photo here or click to upload",
387
- "This usually takes 15-20 seconds",
388
- "Try-on result",
389
- "Try Another",
390
- "Back",
391
- "You",
392
- "Garment",
393
- "Your Height",
394
- "Your Weight",
395
- "Drag or scroll to set your height",
396
- "Drag or scroll to set your weight",
397
- "Enter height and weight first",
398
- // ── Field labels (FaceSizeView, HeadSizeView, FootSizeView, accessory) ──
399
- "Lens Width",
400
- "Bridge",
401
- "Arm Length",
402
- "Head Circumference",
403
- "Face Width",
404
- "Temple",
405
- "Around widest point",
406
- "Foot Length",
407
- "Chest",
408
- "Waist",
409
- "Hips",
410
- "Shoulder",
411
- "Sleeve",
412
- "Neck",
413
- "Inseam",
414
- "Thigh",
415
- "Hip",
416
- // ── Units ──
417
- "Centimeters",
418
- "Inches",
419
- "Millimetre",
420
- "Centimetre",
421
- "Millimeters",
422
- // ── Fit descriptors ──
423
- "Tight",
424
- "Loose",
425
- "Short",
426
- "Long",
427
- "Perfect",
428
- "Perfect fit",
429
- "✓ Fit",
430
- // Lowercase variants used inline by fitLabelFn / lengthFitLabelFn
431
- "tight",
432
- "loose",
433
- "short",
434
- "long",
435
- "perfect fit",
436
- "too tight",
437
- "a bit tight",
438
- "too loose",
439
- "a bit loose",
440
- "too short",
441
- "a bit short",
442
- "too long",
443
- "a bit long",
444
- // ── Misc ──
445
- "Product",
446
- "preview",
447
- "Length",
448
- "Length Adjustment",
449
- "Regular",
450
- "Big",
451
- "Big & Tall"
452
- ], G = {
453
- "Virtual Try-On": "バーチャル試着",
454
- "Find Your Size & See It On You": "あなたのサイズを見つけて試着",
455
- "Get the perfect fit, then try it on virtually": "最適なフィットを見つけて、バーチャルで試着しましょう",
456
- "Get Your Size": "サイズを確認",
457
- "Instant fit recommendation": "瞬時にフィット提案",
458
- "Try It On": "試着する",
459
- "See how it looks on you": "自分に似合うか確認",
460
- "Find My Size": "自分のサイズを見つける",
461
- "Takes less than a minute": "1分もかかりません",
462
- "Upload a full body photo": "全身写真をアップロード",
463
- "JPEG, PNG or WebP (max 10MB)": "JPEG、PNG、WebP(最大10MB)",
464
- "Your photo": "あなたの写真",
465
- "Let's find your best fit": "最適なフィットを見つけましょう",
466
- Centimeters: "センチメートル",
467
- Inches: "インチ",
468
- "Load saved profile...": "保存済みプロファイルを読み込む...",
469
- HEIGHT: "身長",
470
- WEIGHT: "体重",
471
- feet: "フィート",
472
- inches: "インチ",
473
- cm: "cm",
474
- kg: "kg",
475
- lbs: "ポンド",
476
- in: "インチ",
477
- "How to measure": "測り方",
478
- "Hide guide": "ガイドを隠す",
479
- "I know my measurements": "自分の寸法を知っています",
480
- "Not sure? Use height & weight instead": "分からない場合は身長と体重で",
481
- "Please fill in height and weight": "身長と体重を入力してください",
482
- "Please fill in all required fields": "すべての必須項目を入力してください",
483
- Next: "次へ",
484
- "Analyzing your size...": "サイズを分析中...",
485
- "RECOMMENDED SIZE": "推奨サイズ",
486
- "NOT RECOMMENDED": "非推奨",
487
- "Edit measurements": "寸法を編集",
488
- "Size guide": "サイズガイド",
489
- "Your fit": "あなたのフィット",
490
- "Your measure": "あなたの寸法",
491
- "perfect fit": "ぴったり",
492
- "too tight": "きつすぎる",
493
- tight: "きつい",
494
- "a bit tight": "少しきつい",
495
- "too loose": "ゆるすぎる",
496
- loose: "ゆるい",
497
- "a bit loose": "少しゆるい",
498
- "See fit on your photo": "写真でフィットを確認",
499
- "Hide visual fit": "フィット表示を隠す",
500
- "Analyzing...": "分析中...",
501
- "Try it on": "試着する",
502
- "SIZE CHART": "サイズ表",
503
- "YOUR ESTIMATED MEASUREMENTS": "推定寸法",
504
- Edit: "編集",
505
- Download: "ダウンロード",
506
- "Size chart": "サイズ表",
507
- "Preparing your image...": "画像を準備中...",
508
- "Analyzing body proportions...": "体型を分析中...",
509
- "Matching garment to your photo...": "衣類を写真に合わせています...",
510
- "Generating virtual try-on...": "バーチャル試着を生成中...",
511
- "Refining details...": "細部を調整中...",
512
- "Almost there...": "もう少しです...",
513
- "Complete!": "完了!",
514
- "This usually takes 15-25 seconds": "通常15〜25秒かかります",
515
- "Something went wrong": "エラーが発生しました",
516
- "Try Again": "もう一度試す",
517
- "SDK not configured. Please provide an API key.": "SDKが設定されていません。APIキーを入力してください。",
518
- "Please upload a JPEG, PNG, or WebP image.": "JPEG、PNG、WebP画像をアップロードしてください。",
519
- "Image must be under 10MB.": "画像は10MB以下にしてください。",
520
- "Try-on generation failed": "試着の生成に失敗しました",
521
- "Failed to start try-on": "試着の開始に失敗しました",
522
- "No product image found. Please set the product-image attribute.": "商品画像が見つかりません。product-image属性を設定してください。",
523
- "Powered by": "Powered by",
524
- "My Profiles": "マイプロファイル",
525
- History: "履歴",
526
- "No saved profiles yet.": "保存済みプロファイルはありません。",
527
- "No history yet.": "履歴はまだありません。",
528
- Product: "商品",
529
- "Women's": "レディース",
530
- "Men's": "メンズ",
531
- Profiles: "プロファイル",
532
- "Women's Profile": "レディースプロファイル",
533
- "Men's Profile": "メンズプロファイル",
534
- Height: "身長",
535
- Weight: "体重",
536
- Chest: "胸囲",
537
- Bust: "バスト",
538
- Waist: "ウエスト",
539
- Hips: "ヒップ",
540
- Shoulders: "肩幅",
541
- Sleeve: "袖丈",
542
- Inseam: "股下",
543
- Neck: "首周り",
544
- Foot: "足",
545
- "Shoe EU": "靴 EU",
546
- "Shoe US": "靴 US",
547
- "Shoe UK": "靴 UK",
548
- Saved: "保存済み",
549
- "Delete Profile": "プロファイルを削除",
550
- "Shoe size (US)": "靴のサイズ(US)",
551
- "Shoe size (UK)": "靴のサイズ(UK)",
552
- "Shoe size (EU)": "靴のサイズ(EU)",
553
- "Generating...": "生成中...",
554
- "Foot length": "足の長さ",
555
- Size: "サイズ",
556
- "Try on size": "サイズを試着",
557
- "e.g.": "例",
558
- "Drop your photo here or click to upload": "ここに写真をドロップまたはクリックしてアップロード",
559
- "This usually takes 15-20 seconds": "通常15〜20秒かかります",
560
- "Try-on result": "試着結果",
561
- "Try Another": "別のものを試す",
562
- Back: "戻る",
563
- You: "あなた",
564
- Garment: "衣類",
565
- "Your Height": "身長",
566
- "Your Weight": "体重",
567
- "Drag or scroll to set your height": "ドラッグまたはスクロールで身長を設定",
568
- "Drag or scroll to set your weight": "ドラッグまたはスクロールで体重を設定",
569
- "Enter height and weight first": "先に身長と体重を入力してください",
570
- // ── Field labels ──
571
- "Lens Width": "レンズ幅",
572
- Bridge: "ブリッジ",
573
- "Arm Length": "テンプル長",
574
- "Head Circumference": "頭囲",
575
- "Face Width": "顔幅",
576
- Temple: "テンプル",
577
- "Around widest point": "最も広い部分の周囲",
578
- "Foot Length": "足長",
579
- Shoulder: "肩幅",
580
- Thigh: "太もも",
581
- Hip: "ヒップ",
582
- // ── Units ──
583
- Millimetre: "ミリメートル",
584
- Centimetre: "センチメートル",
585
- Millimeters: "ミリメートル",
586
- // ── Fit descriptors ──
587
- Tight: "きつい",
588
- Loose: "ゆるい",
589
- Short: "短い",
590
- Long: "長い",
591
- Perfect: "ぴったり",
592
- "Perfect fit": "ぴったりフィット",
593
- "✓ Fit": "✓ フィット",
594
- "too short": "短すぎる",
595
- "too long": "長すぎる",
596
- "a bit short": "少し短い",
597
- "a bit long": "少し長い",
598
- // ── Length pills ──
599
- Length: "丈",
600
- "Length Adjustment": "丈の調整",
601
- Regular: "レギュラー",
602
- Big: "ビッグ",
603
- "Big & Tall": "ビッグ & トール",
604
- // ── Misc ──
605
- preview: "プレビュー"
606
- }, N = {
607
- "Virtual Try-On": "가상 피팅",
608
- "Find Your Size & See It On You": "사이즈를 찾고 입어보세요",
609
- "Get the perfect fit, then try it on virtually": "완벽한 핏을 찾고 가상으로 입어보세요",
610
- "Get Your Size": "사이즈 확인",
611
- "Instant fit recommendation": "즉시 핏 추천",
612
- "Try It On": "입어보기",
613
- "See how it looks on you": "어떻게 보이는지 확인",
614
- "Find My Size": "내 사이즈 찾기",
615
- "Takes less than a minute": "1분도 걸리지 않아요",
616
- "Upload a full body photo": "전신 사진 업로드",
617
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG 또는 WebP (최대 10MB)",
618
- "Your photo": "내 사진",
619
- "Let's find your best fit": "최적의 핏을 찾아보세요",
620
- Centimeters: "센티미터",
621
- Inches: "인치",
622
- "Load saved profile...": "저장된 프로필 불러오기...",
623
- HEIGHT: "키",
624
- WEIGHT: "체중",
625
- feet: "피트",
626
- inches: "인치",
627
- cm: "cm",
628
- kg: "kg",
629
- lbs: "파운드",
630
- in: "인치",
631
- "How to measure": "측정 방법",
632
- "Hide guide": "가이드 숨기기",
633
- "I know my measurements": "치수를 알고 있어요",
634
- "Not sure? Use height & weight instead": "모르겠다면 키와 체중으로",
635
- "Please fill in height and weight": "키와 체중을 입력해주세요",
636
- "Please fill in all required fields": "모든 필수 항목을 입력해주세요",
637
- Next: "다음",
638
- "Analyzing your size...": "사이즈 분석 중...",
639
- "RECOMMENDED SIZE": "추천 사이즈",
640
- "NOT RECOMMENDED": "비추천",
641
- "Edit measurements": "치수 수정",
642
- "Size guide": "사이즈 가이드",
643
- "Your fit": "나의 핏",
644
- "Your measure": "내 치수",
645
- "perfect fit": "완벽한 핏",
646
- "too tight": "너무 타이트",
647
- tight: "타이트",
648
- "a bit tight": "약간 타이트",
649
- "too loose": "너무 루즈",
650
- loose: "루즈",
651
- "a bit loose": "약간 루즈",
652
- "See fit on your photo": "사진에서 핏 확인",
653
- "Hide visual fit": "핏 표시 숨기기",
654
- "Analyzing...": "분석 중...",
655
- "Try it on": "입어보기",
656
- "SIZE CHART": "사이즈 차트",
657
- "YOUR ESTIMATED MEASUREMENTS": "추정 치수",
658
- Edit: "수정",
659
- Download: "다운로드",
660
- "Size chart": "사이즈 차트",
661
- "Preparing your image...": "이미지 준비 중...",
662
- "Analyzing body proportions...": "체형 분석 중...",
663
- "Matching garment to your photo...": "의류를 사진에 맞추는 중...",
664
- "Generating virtual try-on...": "가상 피팅 생성 중...",
665
- "Refining details...": "세부 조정 중...",
666
- "Almost there...": "거의 완료...",
667
- "Complete!": "완료!",
668
- "This usually takes 15-25 seconds": "보통 15~25초 소요됩니다",
669
- "Something went wrong": "오류가 발생했습니다",
670
- "Try Again": "다시 시도",
671
- "SDK not configured. Please provide an API key.": "SDK가 설정되지 않았습니다. API 키를 입력해주세요.",
672
- "Please upload a JPEG, PNG, or WebP image.": "JPEG, PNG 또는 WebP 이미지를 업로드해주세요.",
673
- "Image must be under 10MB.": "이미지는 10MB 이하여야 합니다.",
674
- "Try-on generation failed": "피팅 생성 실패",
675
- "Failed to start try-on": "피팅 시작 실패",
676
- "No product image found. Please set the product-image attribute.": "상품 이미지를 찾을 수 없습니다. product-image 속성을 설정해주세요.",
677
- "Powered by": "Powered by",
678
- "My Profiles": "내 프로필",
679
- History: "기록",
680
- "No saved profiles yet.": "저장된 프로필이 없습니다.",
681
- "No history yet.": "기록이 없습니다.",
682
- Product: "상품",
683
- "Women's": "여성",
684
- "Men's": "남성",
685
- Profiles: "프로필",
686
- "Women's Profile": "여성 프로필",
687
- "Men's Profile": "남성 프로필",
688
- Height: "키",
689
- Weight: "체중",
690
- Chest: "가슴둘레",
691
- Bust: "버스트",
692
- Waist: "허리",
693
- Hips: "엉덩이",
694
- Shoulders: "어깨",
695
- Sleeve: "소매",
696
- Inseam: "안쪽 솔기",
697
- Neck: "목둘레",
698
- Foot: "발",
699
- "Shoe EU": "신발 EU",
700
- "Shoe US": "신발 US",
701
- "Shoe UK": "신발 UK",
702
- Saved: "저장됨",
703
- "Delete Profile": "프로필 삭제",
704
- "Shoe size (US)": "신발 사이즈 (US)",
705
- "Shoe size (UK)": "신발 사이즈 (UK)",
706
- "Shoe size (EU)": "신발 사이즈 (EU)",
707
- "Generating...": "생성 중...",
708
- "Foot length": "발 길이",
709
- Size: "사이즈",
710
- "Try on size": "사이즈 입어보기",
711
- "e.g.": "예)",
712
- "Drop your photo here or click to upload": "사진을 여기에 놓거나 클릭하여 업로드",
713
- "This usually takes 15-20 seconds": "보통 15~20초 소요됩니다",
714
- "Try-on result": "피팅 결과",
715
- "Try Another": "다시 시도",
716
- Back: "뒤로",
717
- You: "내 치수",
718
- Garment: "의류",
719
- "Your Height": "키",
720
- "Your Weight": "체중",
721
- "Drag or scroll to set your height": "드래그 또는 스크롤하여 키를 설정하세요",
722
- "Drag or scroll to set your weight": "드래그 또는 스크롤하여 체중을 설정하세요",
723
- "Enter height and weight first": "먼저 키와 체중을 입력하세요",
724
- // ── Field labels ──
725
- "Lens Width": "렌즈 너비",
726
- Bridge: "브릿지",
727
- "Arm Length": "다리 길이",
728
- "Head Circumference": "머리 둘레",
729
- "Face Width": "얼굴 너비",
730
- Temple: "다리",
731
- "Around widest point": "가장 넓은 부분 주위",
732
- "Foot Length": "발 길이",
733
- Shoulder: "어깨",
734
- Thigh: "허벅지",
735
- Hip: "엉덩이",
736
- // ── Units ──
737
- Millimetre: "밀리미터",
738
- Centimetre: "센티미터",
739
- Millimeters: "밀리미터",
740
- // ── Fit descriptors ──
741
- Tight: "꽉 끼는",
742
- Loose: "헐렁한",
743
- Short: "짧은",
744
- Long: "긴",
745
- Perfect: "완벽",
746
- "Perfect fit": "완벽한 핏",
747
- "✓ Fit": "✓ 적합",
748
- "too short": "너무 짧음",
749
- "too long": "너무 김",
750
- "a bit short": "약간 짧음",
751
- "a bit long": "약간 김",
752
- // ── Length pills ──
753
- Length: "길이",
754
- "Length Adjustment": "길이 조절",
755
- Regular: "보통",
756
- Big: "빅",
757
- "Big & Tall": "빅 & 톨",
758
- // ── Misc ──
759
- preview: "미리보기"
760
- }, I = {
761
- "Virtual Try-On": "虚拟试穿",
762
- "Find Your Size & See It On You": "找到你的尺码并试穿",
763
- "Get the perfect fit, then try it on virtually": "找到最佳合身度,然后虚拟试穿",
764
- "Get Your Size": "获取尺码",
765
- "Instant fit recommendation": "即时合身推荐",
766
- "Try It On": "试穿",
767
- "See how it looks on you": "看看穿在你身上的效果",
768
- "Find My Size": "找到我的尺码",
769
- "Takes less than a minute": "不到一分钟",
770
- "Upload a full body photo": "上传全身照",
771
- "JPEG, PNG or WebP (max 10MB)": "JPEG、PNG 或 WebP(最大10MB)",
772
- "Your photo": "你的照片",
773
- "Let's find your best fit": "找到最适合你的尺码",
774
- Centimeters: "厘米",
775
- Inches: "英寸",
776
- "Load saved profile...": "加载已保存的档案...",
777
- HEIGHT: "身高",
778
- WEIGHT: "体重",
779
- feet: "英尺",
780
- inches: "英寸",
781
- cm: "厘米",
782
- kg: "公斤",
783
- lbs: "磅",
784
- in: "英寸",
785
- "How to measure": "如何测量",
786
- "Hide guide": "隐藏指南",
787
- "I know my measurements": "我知道我的尺寸",
788
- "Not sure? Use height & weight instead": "不确定?使用身高和体重",
789
- "Please fill in height and weight": "请填写身高和体重",
790
- "Please fill in all required fields": "请填写所有必填项",
791
- Next: "下一步",
792
- "Analyzing your size...": "正在分析你的尺码...",
793
- "RECOMMENDED SIZE": "推荐尺码",
794
- "NOT RECOMMENDED": "不推荐",
795
- "Edit measurements": "编辑尺寸",
796
- "Size guide": "尺码指南",
797
- "Your fit": "你的合身度",
798
- "Your measure": "你的尺寸",
799
- "perfect fit": "完美合身",
800
- "too tight": "太紧",
801
- tight: "偏紧",
802
- "a bit tight": "略紧",
803
- "too loose": "太松",
804
- loose: "偏松",
805
- "a bit loose": "略松",
806
- "See fit on your photo": "在照片上查看合身度",
807
- "Hide visual fit": "隐藏合身显示",
808
- "Analyzing...": "分析中...",
809
- "Try it on": "试穿",
810
- "SIZE CHART": "尺码表",
811
- "YOUR ESTIMATED MEASUREMENTS": "你的预估尺寸",
812
- Edit: "编辑",
813
- Download: "下载",
814
- "Size chart": "尺码表",
815
- "Preparing your image...": "正在准备图片...",
816
- "Analyzing body proportions...": "正在分析体型...",
817
- "Matching garment to your photo...": "正在将服装匹配到照片...",
818
- "Generating virtual try-on...": "正在生成虚拟试穿...",
819
- "Refining details...": "正在优化细节...",
820
- "Almost there...": "即将完成...",
821
- "Complete!": "完成!",
822
- "This usually takes 15-25 seconds": "通常需要15-25秒",
823
- "Something went wrong": "出错了",
824
- "Try Again": "重试",
825
- "SDK not configured. Please provide an API key.": "SDK未配置,请提供API密钥。",
826
- "Please upload a JPEG, PNG, or WebP image.": "请上传JPEG、PNG或WebP图片。",
827
- "Image must be under 10MB.": "图片必须小于10MB。",
828
- "Try-on generation failed": "试穿生成失败",
829
- "Failed to start try-on": "无法开始试穿",
830
- "No product image found. Please set the product-image attribute.": "未找到商品图片,请设置product-image属性。",
831
- "Powered by": "技术支持",
832
- "My Profiles": "我的档案",
833
- History: "历史记录",
834
- "No saved profiles yet.": "还没有保存的档案。",
835
- "No history yet.": "还没有历史记录。",
836
- Product: "商品",
837
- "Women's": "女装",
838
- "Men's": "男装",
839
- Profiles: "档案",
840
- "Women's Profile": "女性档案",
841
- "Men's Profile": "男性档案",
842
- Height: "身高",
843
- Weight: "体重",
844
- Chest: "胸围",
845
- Bust: "胸围",
846
- Waist: "腰围",
847
- Hips: "臀围",
848
- Shoulders: "肩宽",
849
- Sleeve: "袖长",
850
- Inseam: "内缝",
851
- Neck: "颈围",
852
- Foot: "脚",
853
- "Shoe EU": "鞋码 EU",
854
- "Shoe US": "鞋码 US",
855
- "Shoe UK": "鞋码 UK",
856
- Saved: "已保存",
857
- "Delete Profile": "删除档案",
858
- "Shoe size (US)": "鞋码(US)",
859
- "Shoe size (UK)": "鞋码(UK)",
860
- "Shoe size (EU)": "鞋码(EU)",
861
- "Generating...": "生成中...",
862
- "Foot length": "脚长",
863
- Size: "尺码",
864
- "Try on size": "试穿尺码",
865
- "e.g.": "例如",
866
- "Drop your photo here or click to upload": "将照片拖放到此处或点击上传",
867
- "This usually takes 15-20 seconds": "通常需要15-20秒",
868
- "Try-on result": "试穿结果",
869
- "Try Another": "再试一次",
870
- Back: "返回",
871
- You: "你的",
872
- Garment: "服装",
873
- "Your Height": "你的身高",
874
- "Your Weight": "你的体重",
875
- "Drag or scroll to set your height": "拖动或滚动设置身高",
876
- "Drag or scroll to set your weight": "拖动或滚动设置体重",
877
- "Enter height and weight first": "请先输入身高和体重",
878
- // ── Field labels ──
879
- "Lens Width": "镜片宽度",
880
- Bridge: "鼻梁",
881
- "Arm Length": "镜腿长度",
882
- "Head Circumference": "头围",
883
- "Face Width": "脸宽",
884
- Temple: "镜腿",
885
- "Around widest point": "围绕最宽处",
886
- "Foot Length": "脚长",
887
- Shoulder: "肩宽",
888
- Thigh: "大腿",
889
- Hip: "臀部",
890
- // ── Units ──
891
- Millimetre: "毫米",
892
- Centimetre: "厘米",
893
- Millimeters: "毫米",
894
- // ── Fit descriptors ──
895
- Tight: "紧",
896
- Loose: "松",
897
- Short: "短",
898
- Long: "长",
899
- Perfect: "完美",
900
- "Perfect fit": "完美合身",
901
- "✓ Fit": "✓ 合身",
902
- "too short": "太短",
903
- "too long": "太长",
904
- "a bit short": "稍短",
905
- "a bit long": "稍长",
906
- // ── Length pills ──
907
- Length: "长度",
908
- "Length Adjustment": "长度调整",
909
- Regular: "标准",
910
- Big: "大",
911
- "Big & Tall": "大号加长",
912
- // ── Misc ──
913
- preview: "预览"
914
- }, D = {
915
- "Virtual Try-On": "Probador Virtual",
916
- "Find Your Size & See It On You": "Encuentra tu talla y pruébatelo",
917
- "Get the perfect fit, then try it on virtually": "Encuentra el ajuste perfecto y pruébatelo virtualmente",
918
- "Get Your Size": "Tu talla",
919
- "Instant fit recommendation": "Recomendación de ajuste instantánea",
920
- "Try It On": "Pruébatelo",
921
- "See how it looks on you": "Mira cómo te queda",
922
- "Find My Size": "Encontrar mi talla",
923
- "Takes less than a minute": "Tarda menos de un minuto",
924
- "Upload a full body photo": "Sube una foto de cuerpo entero",
925
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG o WebP (máx. 10MB)",
926
- "Your photo": "Tu foto",
927
- "Let's find your best fit": "Encontremos tu mejor ajuste",
928
- Centimeters: "Centímetros",
929
- Inches: "Pulgadas",
930
- "Load saved profile...": "Cargar perfil guardado...",
931
- HEIGHT: "ALTURA",
932
- WEIGHT: "PESO",
933
- feet: "pies",
934
- inches: "pulgadas",
935
- cm: "cm",
936
- kg: "kg",
937
- lbs: "libras",
938
- in: "pulg",
939
- "How to measure": "Cómo medir",
940
- "Hide guide": "Ocultar guía",
941
- "I know my measurements": "Conozco mis medidas",
942
- "Not sure? Use height & weight instead": "¿No estás seguro? Usa altura y peso",
943
- "Please fill in height and weight": "Por favor, introduce altura y peso",
944
- "Please fill in all required fields": "Por favor, completa todos los campos obligatorios",
945
- Next: "Siguiente",
946
- "Analyzing your size...": "Analizando tu talla...",
947
- "RECOMMENDED SIZE": "TALLA RECOMENDADA",
948
- "NOT RECOMMENDED": "NO RECOMENDADA",
949
- "Edit measurements": "Editar medidas",
950
- "Size guide": "Guía de tallas",
951
- "Your fit": "Tu ajuste",
952
- "Your measure": "Tu medida",
953
- "perfect fit": "ajuste perfecto",
954
- "too tight": "demasiado ajustado",
955
- tight: "ajustado",
956
- "a bit tight": "un poco ajustado",
957
- "too loose": "demasiado holgado",
958
- loose: "holgado",
959
- "a bit loose": "un poco holgado",
960
- "See fit on your photo": "Ver ajuste en tu foto",
961
- "Hide visual fit": "Ocultar ajuste visual",
962
- "Analyzing...": "Analizando...",
963
- "Try it on": "Pruébatelo",
964
- "SIZE CHART": "TABLA DE TALLAS",
965
- "YOUR ESTIMATED MEASUREMENTS": "TUS MEDIDAS ESTIMADAS",
966
- Edit: "Editar",
967
- Download: "Descargar",
968
- "Size chart": "Tabla de tallas",
969
- "Preparing your image...": "Preparando tu imagen...",
970
- "Analyzing body proportions...": "Analizando proporciones corporales...",
971
- "Matching garment to your photo...": "Ajustando la prenda a tu foto...",
972
- "Generating virtual try-on...": "Generando probador virtual...",
973
- "Refining details...": "Refinando detalles...",
974
- "Almost there...": "Casi listo...",
975
- "Complete!": "¡Completado!",
976
- "This usually takes 15-25 seconds": "Normalmente tarda 15-25 segundos",
977
- "Something went wrong": "Algo salió mal",
978
- "Try Again": "Intentar de nuevo",
979
- "SDK not configured. Please provide an API key.": "SDK no configurado. Por favor, proporciona una clave API.",
980
- "Please upload a JPEG, PNG, or WebP image.": "Por favor, sube una imagen JPEG, PNG o WebP.",
981
- "Image must be under 10MB.": "La imagen debe ser menor de 10MB.",
982
- "Try-on generation failed": "Error al generar la prueba",
983
- "Failed to start try-on": "Error al iniciar la prueba",
984
- "No product image found. Please set the product-image attribute.": "No se encontró imagen del producto. Configura el atributo product-image.",
985
- "Powered by": "Desarrollado por",
986
- "My Profiles": "Mis Perfiles",
987
- History: "Historial",
988
- "No saved profiles yet.": "No hay perfiles guardados.",
989
- "No history yet.": "No hay historial aún.",
990
- Product: "Producto",
991
- "Women's": "Mujer",
992
- "Men's": "Hombre",
993
- Profiles: "Perfiles",
994
- "Women's Profile": "Perfil de Mujer",
995
- "Men's Profile": "Perfil de Hombre",
996
- Height: "Altura",
997
- Weight: "Peso",
998
- Chest: "Pecho",
999
- Bust: "Busto",
1000
- Waist: "Cintura",
1001
- Hips: "Caderas",
1002
- Shoulders: "Hombros",
1003
- Sleeve: "Manga",
1004
- Inseam: "Entrepierna",
1005
- Neck: "Cuello",
1006
- Foot: "Pie",
1007
- "Shoe EU": "Zapato EU",
1008
- "Shoe US": "Zapato US",
1009
- "Shoe UK": "Zapato UK",
1010
- Saved: "Guardado",
1011
- "Delete Profile": "Eliminar Perfil",
1012
- "Shoe size (US)": "Talla de zapato (US)",
1013
- "Shoe size (UK)": "Talla de zapato (UK)",
1014
- "Shoe size (EU)": "Talla de zapato (EU)",
1015
- "Generating...": "Generando...",
1016
- "Foot length": "Longitud del pie",
1017
- Size: "Talla",
1018
- "Try on size": "Probar talla",
1019
- "e.g.": "ej.",
1020
- "Drop your photo here or click to upload": "Arrastra tu foto aquí o haz clic para subir",
1021
- "This usually takes 15-20 seconds": "Normalmente tarda 15-20 segundos",
1022
- "Try-on result": "Resultado de la prueba",
1023
- "Try Another": "Probar otra",
1024
- Back: "Atrás",
1025
- You: "Tú",
1026
- Garment: "Prenda",
1027
- "Your Height": "Tu Altura",
1028
- "Your Weight": "Tu Peso",
1029
- "Drag or scroll to set your height": "Arrastra o desplaza para establecer tu altura",
1030
- "Drag or scroll to set your weight": "Arrastra o desplaza para establecer tu peso",
1031
- "Enter height and weight first": "Introduce primero altura y peso",
1032
- // ── Field labels ──
1033
- "Lens Width": "Ancho de lente",
1034
- Bridge: "Puente",
1035
- "Arm Length": "Largo del brazo",
1036
- "Head Circumference": "Contorno de cabeza",
1037
- "Face Width": "Ancho de cara",
1038
- Temple: "Patilla",
1039
- "Around widest point": "Alrededor del punto más ancho",
1040
- "Foot Length": "Longitud del pie",
1041
- Shoulder: "Hombro",
1042
- Thigh: "Muslo",
1043
- Hip: "Cadera",
1044
- // ── Units ──
1045
- Millimetre: "Milímetro",
1046
- Centimetre: "Centímetro",
1047
- Millimeters: "Milímetros",
1048
- // ── Fit descriptors ──
1049
- Tight: "Ajustado",
1050
- Loose: "Holgado",
1051
- Short: "Corto",
1052
- Long: "Largo",
1053
- Perfect: "Perfecto",
1054
- "Perfect fit": "Ajuste perfecto",
1055
- "✓ Fit": "✓ Ajuste",
1056
- "too short": "demasiado corto",
1057
- "too long": "demasiado largo",
1058
- "a bit short": "un poco corto",
1059
- "a bit long": "un poco largo",
1060
- // ── Length pills ──
1061
- Length: "Largo",
1062
- "Length Adjustment": "Ajuste de largo",
1063
- Regular: "Regular",
1064
- Big: "Grande",
1065
- "Big & Tall": "Grande y alto",
1066
- // ── Misc ──
1067
- preview: "vista previa"
1068
- }, U = {
1069
- "Virtual Try-On": "Essayage Virtuel",
1070
- "Find Your Size & See It On You": "Trouvez votre taille et essayez-le",
1071
- "Get the perfect fit, then try it on virtually": "Trouvez la coupe parfaite, puis essayez-le virtuellement",
1072
- "Get Your Size": "Votre taille",
1073
- "Instant fit recommendation": "Recommandation de coupe instantanée",
1074
- "Try It On": "Essayer",
1075
- "See how it looks on you": "Voyez comment ça vous va",
1076
- "Find My Size": "Trouver ma taille",
1077
- "Takes less than a minute": "Prend moins d'une minute",
1078
- "Upload a full body photo": "Téléchargez une photo en pied",
1079
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG ou WebP (max 10 Mo)",
1080
- "Your photo": "Votre photo",
1081
- "Let's find your best fit": "Trouvons votre meilleure coupe",
1082
- Centimeters: "Centimètres",
1083
- Inches: "Pouces",
1084
- "Load saved profile...": "Charger un profil enregistré...",
1085
- HEIGHT: "TAILLE",
1086
- WEIGHT: "POIDS",
1087
- feet: "pieds",
1088
- inches: "pouces",
1089
- cm: "cm",
1090
- kg: "kg",
1091
- lbs: "livres",
1092
- in: "po",
1093
- "How to measure": "Comment mesurer",
1094
- "Hide guide": "Masquer le guide",
1095
- "I know my measurements": "Je connais mes mesures",
1096
- "Not sure? Use height & weight instead": "Pas sûr ? Utilisez taille et poids",
1097
- "Please fill in height and weight": "Veuillez renseigner la taille et le poids",
1098
- "Please fill in all required fields": "Veuillez remplir tous les champs obligatoires",
1099
- Next: "Suivant",
1100
- "Analyzing your size...": "Analyse de votre taille...",
1101
- "RECOMMENDED SIZE": "TAILLE RECOMMANDÉE",
1102
- "NOT RECOMMENDED": "NON RECOMMANDÉE",
1103
- "Edit measurements": "Modifier les mesures",
1104
- "Size guide": "Guide des tailles",
1105
- "Your fit": "Votre coupe",
1106
- "Your measure": "Votre mesure",
1107
- "perfect fit": "coupe parfaite",
1108
- "too tight": "trop serré",
1109
- tight: "serré",
1110
- "a bit tight": "un peu serré",
1111
- "too loose": "trop ample",
1112
- loose: "ample",
1113
- "a bit loose": "un peu ample",
1114
- "See fit on your photo": "Voir la coupe sur votre photo",
1115
- "Hide visual fit": "Masquer la coupe visuelle",
1116
- "Analyzing...": "Analyse...",
1117
- "Try it on": "Essayer",
1118
- "SIZE CHART": "TABLEAU DES TAILLES",
1119
- "YOUR ESTIMATED MEASUREMENTS": "VOS MESURES ESTIMÉES",
1120
- Edit: "Modifier",
1121
- Download: "Télécharger",
1122
- "Size chart": "Tableau des tailles",
1123
- "Preparing your image...": "Préparation de votre image...",
1124
- "Analyzing body proportions...": "Analyse des proportions corporelles...",
1125
- "Matching garment to your photo...": "Ajustement du vêtement à votre photo...",
1126
- "Generating virtual try-on...": "Génération de l'essayage virtuel...",
1127
- "Refining details...": "Affinement des détails...",
1128
- "Almost there...": "Presque terminé...",
1129
- "Complete!": "Terminé !",
1130
- "This usually takes 15-25 seconds": "Cela prend généralement 15 à 25 secondes",
1131
- "Something went wrong": "Une erreur est survenue",
1132
- "Try Again": "Réessayer",
1133
- "SDK not configured. Please provide an API key.": "SDK non configuré. Veuillez fournir une clé API.",
1134
- "Please upload a JPEG, PNG, or WebP image.": "Veuillez télécharger une image JPEG, PNG ou WebP.",
1135
- "Image must be under 10MB.": "L'image doit faire moins de 10 Mo.",
1136
- "Try-on generation failed": "Échec de la génération de l'essayage",
1137
- "Failed to start try-on": "Impossible de démarrer l'essayage",
1138
- "No product image found. Please set the product-image attribute.": "Aucune image produit trouvée. Veuillez définir l'attribut product-image.",
1139
- "Powered by": "Propulsé par",
1140
- "My Profiles": "Mes Profils",
1141
- History: "Historique",
1142
- "No saved profiles yet.": "Aucun profil enregistré.",
1143
- "No history yet.": "Pas encore d'historique.",
1144
- Product: "Produit",
1145
- "Women's": "Femme",
1146
- "Men's": "Homme",
1147
- Profiles: "Profils",
1148
- "Women's Profile": "Profil Femme",
1149
- "Men's Profile": "Profil Homme",
1150
- Height: "Taille",
1151
- Weight: "Poids",
1152
- Chest: "Poitrine",
1153
- Bust: "Buste",
1154
- Waist: "Tour de taille",
1155
- Hips: "Hanches",
1156
- Shoulders: "Épaules",
1157
- Sleeve: "Manche",
1158
- Inseam: "Entrejambe",
1159
- Neck: "Cou",
1160
- Foot: "Pied",
1161
- "Shoe EU": "Chaussure EU",
1162
- "Shoe US": "Chaussure US",
1163
- "Shoe UK": "Chaussure UK",
1164
- Saved: "Enregistré",
1165
- "Delete Profile": "Supprimer le Profil",
1166
- "Shoe size (US)": "Pointure (US)",
1167
- "Shoe size (UK)": "Pointure (UK)",
1168
- "Shoe size (EU)": "Pointure (EU)",
1169
- "Generating...": "Génération...",
1170
- "Foot length": "Longueur du pied",
1171
- Size: "Taille",
1172
- "Try on size": "Essayer la taille",
1173
- "e.g.": "ex.",
1174
- "Drop your photo here or click to upload": "Déposez votre photo ici ou cliquez pour télécharger",
1175
- "This usually takes 15-20 seconds": "Cela prend généralement 15 à 20 secondes",
1176
- "Try-on result": "Résultat de l'essayage",
1177
- "Try Another": "Essayer une autre",
1178
- Back: "Retour",
1179
- You: "Vous",
1180
- Garment: "Vêtement",
1181
- "Your Height": "Votre Taille",
1182
- "Your Weight": "Votre Poids",
1183
- "Drag or scroll to set your height": "Glissez ou faites défiler pour définir votre taille",
1184
- "Drag or scroll to set your weight": "Glissez ou faites défiler pour définir votre poids",
1185
- "Enter height and weight first": "Saisissez d'abord la taille et le poids",
1186
- // ── Field labels ──
1187
- "Lens Width": "Largeur du verre",
1188
- Bridge: "Pont",
1189
- "Arm Length": "Longueur de branche",
1190
- "Head Circumference": "Tour de tête",
1191
- "Face Width": "Largeur du visage",
1192
- Temple: "Branche",
1193
- "Around widest point": "Autour du point le plus large",
1194
- "Foot Length": "Longueur du pied",
1195
- Shoulder: "Épaule",
1196
- Thigh: "Cuisse",
1197
- Hip: "Hanche",
1198
- // ── Units ──
1199
- Millimetre: "Millimètre",
1200
- Centimetre: "Centimètre",
1201
- Millimeters: "Millimètres",
1202
- // ── Fit descriptors ──
1203
- Tight: "Serré",
1204
- Loose: "Lâche",
1205
- Short: "Court",
1206
- Long: "Long",
1207
- Perfect: "Parfait",
1208
- "Perfect fit": "Ajustement parfait",
1209
- "✓ Fit": "✓ Ajusté",
1210
- "too short": "trop court",
1211
- "too long": "trop long",
1212
- "a bit short": "un peu court",
1213
- "a bit long": "un peu long",
1214
- // ── Length pills ──
1215
- Length: "Longueur",
1216
- "Length Adjustment": "Ajustement de longueur",
1217
- Regular: "Régulier",
1218
- Big: "Grand",
1219
- "Big & Tall": "Grand & Long",
1220
- // ── Misc ──
1221
- preview: "aperçu"
1222
- }, L = {
1223
- "Virtual Try-On": "Virtuelle Anprobe",
1224
- "Find Your Size & See It On You": "Finden Sie Ihre Größe und probieren Sie es an",
1225
- "Get the perfect fit, then try it on virtually": "Finden Sie die perfekte Passform und probieren Sie es virtuell an",
1226
- "Get Your Size": "Ihre Größe",
1227
- "Instant fit recommendation": "Sofortige Passformempfehlung",
1228
- "Try It On": "Anprobieren",
1229
- "See how it looks on you": "Sehen Sie, wie es Ihnen steht",
1230
- "Find My Size": "Meine Größe finden",
1231
- "Takes less than a minute": "Dauert weniger als eine Minute",
1232
- "Upload a full body photo": "Laden Sie ein Ganzkörperfoto hoch",
1233
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG oder WebP (max. 10 MB)",
1234
- "Your photo": "Ihr Foto",
1235
- "Let's find your best fit": "Finden wir Ihre beste Passform",
1236
- Centimeters: "Zentimeter",
1237
- Inches: "Zoll",
1238
- "Load saved profile...": "Gespeichertes Profil laden...",
1239
- HEIGHT: "GRÖSSE",
1240
- WEIGHT: "GEWICHT",
1241
- feet: "Fuß",
1242
- inches: "Zoll",
1243
- cm: "cm",
1244
- kg: "kg",
1245
- lbs: "Pfund",
1246
- in: "Zoll",
1247
- "How to measure": "So messen Sie",
1248
- "Hide guide": "Anleitung ausblenden",
1249
- "I know my measurements": "Ich kenne meine Maße",
1250
- "Not sure? Use height & weight instead": "Unsicher? Verwenden Sie Größe und Gewicht",
1251
- "Please fill in height and weight": "Bitte Größe und Gewicht eingeben",
1252
- "Please fill in all required fields": "Bitte alle Pflichtfelder ausfüllen",
1253
- Next: "Weiter",
1254
- "Analyzing your size...": "Ihre Größe wird analysiert...",
1255
- "RECOMMENDED SIZE": "EMPFOHLENE GRÖSSE",
1256
- "NOT RECOMMENDED": "NICHT EMPFOHLEN",
1257
- "Edit measurements": "Maße bearbeiten",
1258
- "Size guide": "Größentabelle",
1259
- "Your fit": "Ihre Passform",
1260
- "Your measure": "Ihr Maß",
1261
- "perfect fit": "perfekte Passform",
1262
- "too tight": "zu eng",
1263
- tight: "eng",
1264
- "a bit tight": "etwas eng",
1265
- "too loose": "zu weit",
1266
- loose: "weit",
1267
- "a bit loose": "etwas weit",
1268
- "See fit on your photo": "Passform auf Ihrem Foto sehen",
1269
- "Hide visual fit": "Passformanzeige ausblenden",
1270
- "Analyzing...": "Analyse...",
1271
- "Try it on": "Anprobieren",
1272
- "SIZE CHART": "GRÖSSENTABELLE",
1273
- "YOUR ESTIMATED MEASUREMENTS": "IHRE GESCHÄTZTEN MASSE",
1274
- Edit: "Bearbeiten",
1275
- Download: "Herunterladen",
1276
- "Size chart": "Größentabelle",
1277
- "Preparing your image...": "Ihr Bild wird vorbereitet...",
1278
- "Analyzing body proportions...": "Körperproportionen werden analysiert...",
1279
- "Matching garment to your photo...": "Kleidungsstück wird an Ihr Foto angepasst...",
1280
- "Generating virtual try-on...": "Virtuelle Anprobe wird erstellt...",
1281
- "Refining details...": "Details werden verfeinert...",
1282
- "Almost there...": "Fast fertig...",
1283
- "Complete!": "Fertig!",
1284
- "This usually takes 15-25 seconds": "Dies dauert normalerweise 15–25 Sekunden",
1285
- "Something went wrong": "Etwas ist schiefgelaufen",
1286
- "Try Again": "Erneut versuchen",
1287
- "SDK not configured. Please provide an API key.": "SDK nicht konfiguriert. Bitte geben Sie einen API-Schlüssel an.",
1288
- "Please upload a JPEG, PNG, or WebP image.": "Bitte laden Sie ein JPEG-, PNG- oder WebP-Bild hoch.",
1289
- "Image must be under 10MB.": "Das Bild muss kleiner als 10 MB sein.",
1290
- "Try-on generation failed": "Anprobe-Erstellung fehlgeschlagen",
1291
- "Failed to start try-on": "Anprobe konnte nicht gestartet werden",
1292
- "No product image found. Please set the product-image attribute.": "Kein Produktbild gefunden. Bitte setzen Sie das product-image Attribut.",
1293
- "Powered by": "Unterstützt von",
1294
- "My Profiles": "Meine Profile",
1295
- History: "Verlauf",
1296
- "No saved profiles yet.": "Noch keine gespeicherten Profile.",
1297
- "No history yet.": "Noch kein Verlauf.",
1298
- Product: "Produkt",
1299
- "Women's": "Damen",
1300
- "Men's": "Herren",
1301
- Profiles: "Profile",
1302
- "Women's Profile": "Damenprofil",
1303
- "Men's Profile": "Herrenprofil",
1304
- Height: "Größe",
1305
- Weight: "Gewicht",
1306
- Chest: "Brust",
1307
- Bust: "Oberweite",
1308
- Waist: "Taille",
1309
- Hips: "Hüfte",
1310
- Shoulders: "Schultern",
1311
- Sleeve: "Ärmel",
1312
- Inseam: "Schrittlänge",
1313
- Neck: "Hals",
1314
- Foot: "Fuß",
1315
- "Shoe EU": "Schuh EU",
1316
- "Shoe US": "Schuh US",
1317
- "Shoe UK": "Schuh UK",
1318
- Saved: "Gespeichert",
1319
- "Delete Profile": "Profil löschen",
1320
- "Shoe size (US)": "Schuhgröße (US)",
1321
- "Shoe size (UK)": "Schuhgröße (UK)",
1322
- "Shoe size (EU)": "Schuhgröße (EU)",
1323
- "Generating...": "Wird erstellt...",
1324
- "Foot length": "Fußlänge",
1325
- Size: "Größe",
1326
- "Try on size": "Größe anprobieren",
1327
- "e.g.": "z.B.",
1328
- "Drop your photo here or click to upload": "Foto hier ablegen oder klicken zum Hochladen",
1329
- "This usually takes 15-20 seconds": "Dies dauert normalerweise 15–20 Sekunden",
1330
- "Try-on result": "Anprobe-Ergebnis",
1331
- "Try Another": "Andere probieren",
1332
- Back: "Zurück",
1333
- You: "Du",
1334
- Garment: "Kleidung",
1335
- "Your Height": "Deine Größe",
1336
- "Your Weight": "Dein Gewicht",
1337
- "Drag or scroll to set your height": "Ziehen oder scrollen Sie, um Ihre Größe einzustellen",
1338
- "Drag or scroll to set your weight": "Ziehen oder scrollen Sie, um Ihr Gewicht einzustellen",
1339
- "Enter height and weight first": "Geben Sie zuerst Größe und Gewicht ein",
1340
- // ── Field labels ──
1341
- "Lens Width": "Glasbreite",
1342
- Bridge: "Steg",
1343
- "Arm Length": "Bügellänge",
1344
- "Head Circumference": "Kopfumfang",
1345
- "Face Width": "Gesichtsbreite",
1346
- Temple: "Bügel",
1347
- "Around widest point": "Um die breiteste Stelle",
1348
- "Foot Length": "Fußlänge",
1349
- Shoulder: "Schulter",
1350
- Thigh: "Oberschenkel",
1351
- Hip: "Hüfte",
1352
- // ── Units ──
1353
- Millimetre: "Millimeter",
1354
- Centimetre: "Zentimeter",
1355
- Millimeters: "Millimeter",
1356
- // ── Fit descriptors ──
1357
- Tight: "Eng",
1358
- Loose: "Locker",
1359
- Short: "Kurz",
1360
- Long: "Lang",
1361
- Perfect: "Perfekt",
1362
- "Perfect fit": "Perfekte Passform",
1363
- "✓ Fit": "✓ Passt",
1364
- "too short": "zu kurz",
1365
- "too long": "zu lang",
1366
- "a bit short": "etwas kurz",
1367
- "a bit long": "etwas lang",
1368
- // ── Length pills ──
1369
- Length: "Länge",
1370
- "Length Adjustment": "Längenanpassung",
1371
- Regular: "Regulär",
1372
- Big: "Groß",
1373
- "Big & Tall": "Groß & Lang",
1374
- // ── Misc ──
1375
- preview: "Vorschau"
1376
- }, H = {
1377
- "Virtual Try-On": "Prova Virtuale",
1378
- "Find Your Size & See It On You": "Trova la tua taglia e provalo",
1379
- "Get the perfect fit, then try it on virtually": "Trova la vestibilità perfetta, poi provalo virtualmente",
1380
- "Get Your Size": "La tua taglia",
1381
- "Instant fit recommendation": "Raccomandazione vestibilità istantanea",
1382
- "Try It On": "Provalo",
1383
- "See how it looks on you": "Guarda come ti sta",
1384
- "Find My Size": "Trova la mia taglia",
1385
- "Takes less than a minute": "Richiede meno di un minuto",
1386
- "Upload a full body photo": "Carica una foto a figura intera",
1387
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG o WebP (max 10MB)",
1388
- "Your photo": "La tua foto",
1389
- "Let's find your best fit": "Troviamo la tua vestibilità ideale",
1390
- Centimeters: "Centimetri",
1391
- Inches: "Pollici",
1392
- "Load saved profile...": "Carica profilo salvato...",
1393
- HEIGHT: "ALTEZZA",
1394
- WEIGHT: "PESO",
1395
- feet: "piedi",
1396
- inches: "pollici",
1397
- cm: "cm",
1398
- kg: "kg",
1399
- lbs: "libbre",
1400
- in: "poll",
1401
- "How to measure": "Come misurare",
1402
- "Hide guide": "Nascondi guida",
1403
- "I know my measurements": "Conosco le mie misure",
1404
- "Not sure? Use height & weight instead": "Non sei sicuro? Usa altezza e peso",
1405
- "Please fill in height and weight": "Inserisci altezza e peso",
1406
- "Please fill in all required fields": "Compila tutti i campi obbligatori",
1407
- Next: "Avanti",
1408
- "Analyzing your size...": "Analisi della tua taglia...",
1409
- "RECOMMENDED SIZE": "TAGLIA CONSIGLIATA",
1410
- "NOT RECOMMENDED": "NON CONSIGLIATA",
1411
- "Edit measurements": "Modifica misure",
1412
- "Size guide": "Guida alle taglie",
1413
- "Your fit": "La tua vestibilità",
1414
- "Your measure": "La tua misura",
1415
- "perfect fit": "vestibilità perfetta",
1416
- "too tight": "troppo stretto",
1417
- tight: "stretto",
1418
- "a bit tight": "un po' stretto",
1419
- "too loose": "troppo largo",
1420
- loose: "largo",
1421
- "a bit loose": "un po' largo",
1422
- "See fit on your photo": "Vedi vestibilità sulla tua foto",
1423
- "Hide visual fit": "Nascondi vestibilità visiva",
1424
- "Analyzing...": "Analisi...",
1425
- "Try it on": "Provalo",
1426
- "SIZE CHART": "TABELLA TAGLIE",
1427
- "YOUR ESTIMATED MEASUREMENTS": "LE TUE MISURE STIMATE",
1428
- Edit: "Modifica",
1429
- Download: "Scarica",
1430
- "Size chart": "Tabella taglie",
1431
- "Preparing your image...": "Preparazione dell'immagine...",
1432
- "Analyzing body proportions...": "Analisi delle proporzioni corporee...",
1433
- "Matching garment to your photo...": "Adattamento del capo alla tua foto...",
1434
- "Generating virtual try-on...": "Generazione della prova virtuale...",
1435
- "Refining details...": "Rifinitura dei dettagli...",
1436
- "Almost there...": "Quasi pronto...",
1437
- "Complete!": "Completato!",
1438
- "This usually takes 15-25 seconds": "Di solito richiede 15-25 secondi",
1439
- "Something went wrong": "Qualcosa è andato storto",
1440
- "Try Again": "Riprova",
1441
- "SDK not configured. Please provide an API key.": "SDK non configurato. Fornisci una chiave API.",
1442
- "Please upload a JPEG, PNG, or WebP image.": "Carica un'immagine JPEG, PNG o WebP.",
1443
- "Image must be under 10MB.": "L'immagine deve essere inferiore a 10MB.",
1444
- "Try-on generation failed": "Generazione della prova fallita",
1445
- "Failed to start try-on": "Impossibile avviare la prova",
1446
- "No product image found. Please set the product-image attribute.": "Nessuna immagine prodotto trovata. Imposta l'attributo product-image.",
1447
- "Powered by": "Powered by",
1448
- "My Profiles": "I miei Profili",
1449
- History: "Cronologia",
1450
- "No saved profiles yet.": "Nessun profilo salvato.",
1451
- "No history yet.": "Nessuna cronologia.",
1452
- Product: "Prodotto",
1453
- "Women's": "Donna",
1454
- "Men's": "Uomo",
1455
- Profiles: "Profili",
1456
- "Women's Profile": "Profilo Donna",
1457
- "Men's Profile": "Profilo Uomo",
1458
- Height: "Altezza",
1459
- Weight: "Peso",
1460
- Chest: "Petto",
1461
- Bust: "Busto",
1462
- Waist: "Vita",
1463
- Hips: "Fianchi",
1464
- Shoulders: "Spalle",
1465
- Sleeve: "Manica",
1466
- Inseam: "Cavallo",
1467
- Neck: "Collo",
1468
- Foot: "Piede",
1469
- "Shoe EU": "Scarpa EU",
1470
- "Shoe US": "Scarpa US",
1471
- "Shoe UK": "Scarpa UK",
1472
- Saved: "Salvato",
1473
- "Delete Profile": "Elimina Profilo",
1474
- "Shoe size (US)": "Numero di scarpa (US)",
1475
- "Shoe size (UK)": "Numero di scarpa (UK)",
1476
- "Shoe size (EU)": "Numero di scarpa (EU)",
1477
- "Generating...": "Generazione...",
1478
- "Foot length": "Lunghezza del piede",
1479
- Size: "Taglia",
1480
- "Try on size": "Prova la taglia",
1481
- "e.g.": "es.",
1482
- "Drop your photo here or click to upload": "Trascina la foto qui o clicca per caricare",
1483
- "This usually takes 15-20 seconds": "Di solito richiede 15-20 secondi",
1484
- "Try-on result": "Risultato della prova",
1485
- "Try Another": "Prova un'altra",
1486
- Back: "Indietro",
1487
- You: "Tu",
1488
- Garment: "Capo",
1489
- "Your Height": "La Tua Altezza",
1490
- "Your Weight": "Il Tuo Peso",
1491
- "Drag or scroll to set your height": "Trascina o scorri per impostare la tua altezza",
1492
- "Drag or scroll to set your weight": "Trascina o scorri per impostare il tuo peso",
1493
- "Enter height and weight first": "Inserisci prima altezza e peso",
1494
- // ── Field labels ──
1495
- "Lens Width": "Larghezza lente",
1496
- Bridge: "Ponte",
1497
- "Arm Length": "Lunghezza asta",
1498
- "Head Circumference": "Circonferenza testa",
1499
- "Face Width": "Larghezza viso",
1500
- Temple: "Asta",
1501
- "Around widest point": "Intorno al punto più largo",
1502
- "Foot Length": "Lunghezza del piede",
1503
- Shoulder: "Spalla",
1504
- Thigh: "Coscia",
1505
- Hip: "Fianco",
1506
- // ── Units ──
1507
- Millimetre: "Millimetro",
1508
- Centimetre: "Centimetro",
1509
- Millimeters: "Millimetri",
1510
- // ── Fit descriptors ──
1511
- Tight: "Stretto",
1512
- Loose: "Largo",
1513
- Short: "Corto",
1514
- Long: "Lungo",
1515
- Perfect: "Perfetto",
1516
- "Perfect fit": "Vestibilità perfetta",
1517
- "✓ Fit": "✓ Adatto",
1518
- "too short": "troppo corto",
1519
- "too long": "troppo lungo",
1520
- "a bit short": "un po' corto",
1521
- "a bit long": "un po' lungo",
1522
- // ── Length pills ──
1523
- Length: "Lunghezza",
1524
- "Length Adjustment": "Regolazione lunghezza",
1525
- Regular: "Regolare",
1526
- Big: "Grande",
1527
- "Big & Tall": "Grande & Alto",
1528
- // ── Misc ──
1529
- preview: "anteprima"
1530
- }, C = {
1531
- "Virtual Try-On": "Provador Virtual",
1532
- "Find Your Size & See It On You": "Encontre seu tamanho e experimente",
1533
- "Get the perfect fit, then try it on virtually": "Encontre o caimento perfeito e experimente virtualmente",
1534
- "Get Your Size": "Seu tamanho",
1535
- "Instant fit recommendation": "Recomendação de caimento instantânea",
1536
- "Try It On": "Experimentar",
1537
- "See how it looks on you": "Veja como fica em você",
1538
- "Find My Size": "Encontrar meu tamanho",
1539
- "Takes less than a minute": "Leva menos de um minuto",
1540
- "Upload a full body photo": "Envie uma foto de corpo inteiro",
1541
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG ou WebP (máx. 10MB)",
1542
- "Your photo": "Sua foto",
1543
- "Let's find your best fit": "Vamos encontrar seu melhor caimento",
1544
- Centimeters: "Centímetros",
1545
- Inches: "Polegadas",
1546
- "Load saved profile...": "Carregar perfil salvo...",
1547
- HEIGHT: "ALTURA",
1548
- WEIGHT: "PESO",
1549
- feet: "pés",
1550
- inches: "polegadas",
1551
- cm: "cm",
1552
- kg: "kg",
1553
- lbs: "libras",
1554
- in: "pol",
1555
- "How to measure": "Como medir",
1556
- "Hide guide": "Ocultar guia",
1557
- "I know my measurements": "Sei minhas medidas",
1558
- "Not sure? Use height & weight instead": "Não tem certeza? Use altura e peso",
1559
- "Please fill in height and weight": "Por favor, preencha altura e peso",
1560
- "Please fill in all required fields": "Por favor, preencha todos os campos obrigatórios",
1561
- Next: "Próximo",
1562
- "Analyzing your size...": "Analisando seu tamanho...",
1563
- "RECOMMENDED SIZE": "TAMANHO RECOMENDADO",
1564
- "NOT RECOMMENDED": "NÃO RECOMENDADO",
1565
- "Edit measurements": "Editar medidas",
1566
- "Size guide": "Guia de tamanhos",
1567
- "Your fit": "Seu caimento",
1568
- "Your measure": "Sua medida",
1569
- "perfect fit": "caimento perfeito",
1570
- "too tight": "muito apertado",
1571
- tight: "apertado",
1572
- "a bit tight": "um pouco apertado",
1573
- "too loose": "muito folgado",
1574
- loose: "folgado",
1575
- "a bit loose": "um pouco folgado",
1576
- "See fit on your photo": "Ver caimento na sua foto",
1577
- "Hide visual fit": "Ocultar caimento visual",
1578
- "Analyzing...": "Analisando...",
1579
- "Try it on": "Experimentar",
1580
- "SIZE CHART": "TABELA DE TAMANHOS",
1581
- "YOUR ESTIMATED MEASUREMENTS": "SUAS MEDIDAS ESTIMADAS",
1582
- Edit: "Editar",
1583
- Download: "Baixar",
1584
- "Size chart": "Tabela de tamanhos",
1585
- "Preparing your image...": "Preparando sua imagem...",
1586
- "Analyzing body proportions...": "Analisando proporções corporais...",
1587
- "Matching garment to your photo...": "Ajustando a peça à sua foto...",
1588
- "Generating virtual try-on...": "Gerando provador virtual...",
1589
- "Refining details...": "Refinando detalhes...",
1590
- "Almost there...": "Quase lá...",
1591
- "Complete!": "Concluído!",
1592
- "This usually takes 15-25 seconds": "Isso geralmente leva 15-25 segundos",
1593
- "Something went wrong": "Algo deu errado",
1594
- "Try Again": "Tentar novamente",
1595
- "SDK not configured. Please provide an API key.": "SDK não configurado. Forneça uma chave API.",
1596
- "Please upload a JPEG, PNG, or WebP image.": "Envie uma imagem JPEG, PNG ou WebP.",
1597
- "Image must be under 10MB.": "A imagem deve ter menos de 10MB.",
1598
- "Try-on generation failed": "Falha na geração da prova",
1599
- "Failed to start try-on": "Falha ao iniciar a prova",
1600
- "No product image found. Please set the product-image attribute.": "Imagem do produto não encontrada. Defina o atributo product-image.",
1601
- "Powered by": "Desenvolvido por",
1602
- "My Profiles": "Meus Perfis",
1603
- History: "Histórico",
1604
- "No saved profiles yet.": "Nenhum perfil salvo.",
1605
- "No history yet.": "Sem histórico.",
1606
- Product: "Produto",
1607
- "Women's": "Feminino",
1608
- "Men's": "Masculino",
1609
- Profiles: "Perfis",
1610
- "Women's Profile": "Perfil Feminino",
1611
- "Men's Profile": "Perfil Masculino",
1612
- Height: "Altura",
1613
- Weight: "Peso",
1614
- Chest: "Peito",
1615
- Bust: "Busto",
1616
- Waist: "Cintura",
1617
- Hips: "Quadril",
1618
- Shoulders: "Ombros",
1619
- Sleeve: "Manga",
1620
- Inseam: "Entrepernas",
1621
- Neck: "Pescoço",
1622
- Foot: "Pé",
1623
- "Shoe EU": "Calçado EU",
1624
- "Shoe US": "Calçado US",
1625
- "Shoe UK": "Calçado UK",
1626
- Saved: "Salvo",
1627
- "Delete Profile": "Excluir Perfil",
1628
- "Shoe size (US)": "Tamanho do calçado (US)",
1629
- "Shoe size (UK)": "Tamanho do calçado (UK)",
1630
- "Shoe size (EU)": "Tamanho do calçado (EU)",
1631
- "Generating...": "Gerando...",
1632
- "Foot length": "Comprimento do pé",
1633
- Size: "Tamanho",
1634
- "Try on size": "Experimentar tamanho",
1635
- "e.g.": "ex.",
1636
- "Drop your photo here or click to upload": "Arraste sua foto aqui ou clique para enviar",
1637
- "This usually takes 15-20 seconds": "Isso geralmente leva 15-20 segundos",
1638
- "Try-on result": "Resultado da prova",
1639
- "Try Another": "Tentar outra",
1640
- Back: "Voltar",
1641
- You: "Você",
1642
- Garment: "Peça",
1643
- "Your Height": "Sua Altura",
1644
- "Your Weight": "Seu Peso",
1645
- "Drag or scroll to set your height": "Arraste ou role para definir sua altura",
1646
- "Drag or scroll to set your weight": "Arraste ou role para definir seu peso",
1647
- "Enter height and weight first": "Insira primeiro altura e peso",
1648
- // ── Field labels ──
1649
- "Lens Width": "Largura da lente",
1650
- Bridge: "Ponte",
1651
- "Arm Length": "Comprimento da haste",
1652
- "Head Circumference": "Circunferência da cabeça",
1653
- "Face Width": "Largura do rosto",
1654
- Temple: "Haste",
1655
- "Around widest point": "Em torno do ponto mais largo",
1656
- "Foot Length": "Comprimento do pé",
1657
- Shoulder: "Ombro",
1658
- Thigh: "Coxa",
1659
- Hip: "Quadril",
1660
- // ── Units ──
1661
- Millimetre: "Milímetro",
1662
- Centimetre: "Centímetro",
1663
- Millimeters: "Milímetros",
1664
- // ── Fit descriptors ──
1665
- Tight: "Apertado",
1666
- Loose: "Folgado",
1667
- Short: "Curto",
1668
- Long: "Longo",
1669
- Perfect: "Perfeito",
1670
- "Perfect fit": "Caimento perfeito",
1671
- "✓ Fit": "✓ Caimento",
1672
- "too short": "muito curto",
1673
- "too long": "muito longo",
1674
- "a bit short": "um pouco curto",
1675
- "a bit long": "um pouco longo",
1676
- // ── Length pills ──
1677
- Length: "Comprimento",
1678
- "Length Adjustment": "Ajuste de comprimento",
1679
- Regular: "Regular",
1680
- Big: "Grande",
1681
- "Big & Tall": "Grande & Alto",
1682
- // ── Misc ──
1683
- preview: "pré-visualização"
1684
- }, B = {
1685
- "Virtual Try-On": "Virtueel Passen",
1686
- "Find Your Size & See It On You": "Vind je maat en pas het",
1687
- "Get the perfect fit, then try it on virtually": "Vind de perfecte pasvorm en pas het virtueel",
1688
- "Get Your Size": "Jouw maat",
1689
- "Instant fit recommendation": "Directe pasvormaanbeveling",
1690
- "Try It On": "Pas het",
1691
- "See how it looks on you": "Bekijk hoe het je staat",
1692
- "Find My Size": "Mijn maat vinden",
1693
- "Takes less than a minute": "Duurt minder dan een minuut",
1694
- "Upload a full body photo": "Upload een foto van je hele lichaam",
1695
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG of WebP (max 10MB)",
1696
- "Your photo": "Jouw foto",
1697
- "Let's find your best fit": "Laten we je beste pasvorm vinden",
1698
- Centimeters: "Centimeters",
1699
- Inches: "Inches",
1700
- "Load saved profile...": "Opgeslagen profiel laden...",
1701
- HEIGHT: "LENGTE",
1702
- WEIGHT: "GEWICHT",
1703
- feet: "voet",
1704
- inches: "inch",
1705
- cm: "cm",
1706
- kg: "kg",
1707
- lbs: "pond",
1708
- in: "inch",
1709
- "How to measure": "Hoe te meten",
1710
- "Hide guide": "Gids verbergen",
1711
- "I know my measurements": "Ik ken mijn maten",
1712
- "Not sure? Use height & weight instead": "Niet zeker? Gebruik lengte en gewicht",
1713
- "Please fill in height and weight": "Vul lengte en gewicht in",
1714
- "Please fill in all required fields": "Vul alle verplichte velden in",
1715
- Next: "Volgende",
1716
- "Analyzing your size...": "Je maat wordt geanalyseerd...",
1717
- "RECOMMENDED SIZE": "AANBEVOLEN MAAT",
1718
- "NOT RECOMMENDED": "NIET AANBEVOLEN",
1719
- "Edit measurements": "Maten bewerken",
1720
- "Size guide": "Maatgids",
1721
- "Your fit": "Jouw pasvorm",
1722
- "Your measure": "Jouw maat",
1723
- "perfect fit": "perfecte pasvorm",
1724
- "too tight": "te strak",
1725
- tight: "strak",
1726
- "a bit tight": "een beetje strak",
1727
- "too loose": "te ruim",
1728
- loose: "ruim",
1729
- "a bit loose": "een beetje ruim",
1730
- "See fit on your photo": "Bekijk pasvorm op je foto",
1731
- "Hide visual fit": "Pasvormweergave verbergen",
1732
- "Analyzing...": "Analyseren...",
1733
- "Try it on": "Pas het",
1734
- "SIZE CHART": "MAATTABEL",
1735
- "YOUR ESTIMATED MEASUREMENTS": "JE GESCHATTE MATEN",
1736
- Edit: "Bewerken",
1737
- Download: "Downloaden",
1738
- "Size chart": "Maattabel",
1739
- "Preparing your image...": "Je afbeelding wordt voorbereid...",
1740
- "Analyzing body proportions...": "Lichaamsvormen worden geanalyseerd...",
1741
- "Matching garment to your photo...": "Kledingstuk wordt aan je foto aangepast...",
1742
- "Generating virtual try-on...": "Virtuele pasbeur wordt gegenereerd...",
1743
- "Refining details...": "Details worden verfijnd...",
1744
- "Almost there...": "Bijna klaar...",
1745
- "Complete!": "Voltooid!",
1746
- "This usually takes 15-25 seconds": "Dit duurt meestal 15-25 seconden",
1747
- "Something went wrong": "Er ging iets mis",
1748
- "Try Again": "Opnieuw proberen",
1749
- "SDK not configured. Please provide an API key.": "SDK niet geconfigureerd. Geef een API-sleutel op.",
1750
- "Please upload a JPEG, PNG, or WebP image.": "Upload een JPEG-, PNG- of WebP-afbeelding.",
1751
- "Image must be under 10MB.": "Afbeelding moet kleiner zijn dan 10MB.",
1752
- "Try-on generation failed": "Genereren van pasbeur mislukt",
1753
- "Failed to start try-on": "Kan pasbeur niet starten",
1754
- "No product image found. Please set the product-image attribute.": "Geen productafbeelding gevonden. Stel het product-image attribuut in.",
1755
- "Powered by": "Mogelijk gemaakt door",
1756
- "My Profiles": "Mijn Profielen",
1757
- History: "Geschiedenis",
1758
- "No saved profiles yet.": "Nog geen opgeslagen profielen.",
1759
- "No history yet.": "Nog geen geschiedenis.",
1760
- Product: "Product",
1761
- "Women's": "Dames",
1762
- "Men's": "Heren",
1763
- Profiles: "Profielen",
1764
- "Women's Profile": "Damesprofiel",
1765
- "Men's Profile": "Herenprofiel",
1766
- Height: "Lengte",
1767
- Weight: "Gewicht",
1768
- Chest: "Borst",
1769
- Bust: "Buste",
1770
- Waist: "Taille",
1771
- Hips: "Heupen",
1772
- Shoulders: "Schouders",
1773
- Sleeve: "Mouw",
1774
- Inseam: "Binnenbeenlengte",
1775
- Neck: "Nek",
1776
- Foot: "Voet",
1777
- "Shoe EU": "Schoen EU",
1778
- "Shoe US": "Schoen US",
1779
- "Shoe UK": "Schoen UK",
1780
- Saved: "Opgeslagen",
1781
- "Delete Profile": "Profiel verwijderen",
1782
- "Shoe size (US)": "Schoenmaat (US)",
1783
- "Shoe size (UK)": "Schoenmaat (UK)",
1784
- "Shoe size (EU)": "Schoenmaat (EU)",
1785
- "Generating...": "Genereren...",
1786
- "Foot length": "Voetlengte",
1787
- Size: "Maat",
1788
- "Try on size": "Maat passen",
1789
- "e.g.": "bijv.",
1790
- "Drop your photo here or click to upload": "Sleep je foto hierheen of klik om te uploaden",
1791
- "This usually takes 15-20 seconds": "Dit duurt meestal 15-20 seconden",
1792
- "Try-on result": "Pasresultaat",
1793
- "Try Another": "Probeer een andere",
1794
- Back: "Terug",
1795
- You: "Jij",
1796
- Garment: "Kledingstuk",
1797
- "Your Height": "Je Lengte",
1798
- "Your Weight": "Je Gewicht",
1799
- "Drag or scroll to set your height": "Sleep of scroll om je lengte in te stellen",
1800
- "Drag or scroll to set your weight": "Sleep of scroll om je gewicht in te stellen",
1801
- "Enter height and weight first": "Voer eerst lengte en gewicht in",
1802
- // ── Field labels ──
1803
- "Lens Width": "Glasbreedte",
1804
- Bridge: "Brug",
1805
- "Arm Length": "Pootlengte",
1806
- "Head Circumference": "Hoofdomtrek",
1807
- "Face Width": "Gezichtsbreedte",
1808
- Temple: "Poot",
1809
- "Around widest point": "Rond het breedste punt",
1810
- "Foot Length": "Voetlengte",
1811
- Shoulder: "Schouder",
1812
- Thigh: "Dij",
1813
- Hip: "Heup",
1814
- // ── Units ──
1815
- Millimetre: "Millimeter",
1816
- Centimetre: "Centimeter",
1817
- Millimeters: "Millimeters",
1818
- // ── Fit descriptors ──
1819
- Tight: "Strak",
1820
- Loose: "Los",
1821
- Short: "Kort",
1822
- Long: "Lang",
1823
- Perfect: "Perfect",
1824
- "Perfect fit": "Perfecte pasvorm",
1825
- "✓ Fit": "✓ Past",
1826
- "too short": "te kort",
1827
- "too long": "te lang",
1828
- "a bit short": "iets te kort",
1829
- "a bit long": "iets te lang",
1830
- // ── Length pills ──
1831
- Length: "Lengte",
1832
- "Length Adjustment": "Lengte aanpassing",
1833
- Regular: "Regulier",
1834
- Big: "Groot",
1835
- "Big & Tall": "Groot & Lang",
1836
- // ── Misc ──
1837
- preview: "voorbeeld"
1838
- }, W = {
1839
- "Virtual Try-On": "Виртуальная примерка",
1840
- "Find Your Size & See It On You": "Найдите свой размер и примерьте",
1841
- "Get the perfect fit, then try it on virtually": "Найдите идеальную посадку и примерьте виртуально",
1842
- "Get Your Size": "Ваш размер",
1843
- "Instant fit recommendation": "Мгновенная рекомендация посадки",
1844
- "Try It On": "Примерить",
1845
- "See how it looks on you": "Посмотрите, как это выглядит на вас",
1846
- "Find My Size": "Найти мой размер",
1847
- "Takes less than a minute": "Занимает меньше минуты",
1848
- "Upload a full body photo": "Загрузите фото в полный рост",
1849
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG или WebP (макс. 10 МБ)",
1850
- "Your photo": "Ваше фото",
1851
- "Let's find your best fit": "Найдём вашу лучшую посадку",
1852
- Centimeters: "Сантиметры",
1853
- Inches: "Дюймы",
1854
- "Load saved profile...": "Загрузить сохранённый профиль...",
1855
- HEIGHT: "РОСТ",
1856
- WEIGHT: "ВЕС",
1857
- feet: "футы",
1858
- inches: "дюймы",
1859
- cm: "см",
1860
- kg: "кг",
1861
- lbs: "фунты",
1862
- in: "дюйм",
1863
- "How to measure": "Как измерять",
1864
- "Hide guide": "Скрыть руководство",
1865
- "I know my measurements": "Я знаю свои мерки",
1866
- "Not sure? Use height & weight instead": "Не уверены? Используйте рост и вес",
1867
- "Please fill in height and weight": "Пожалуйста, укажите рост и вес",
1868
- "Please fill in all required fields": "Пожалуйста, заполните все обязательные поля",
1869
- Next: "Далее",
1870
- "Analyzing your size...": "Анализируем ваш размер...",
1871
- "RECOMMENDED SIZE": "РЕКОМЕНДУЕМЫЙ РАЗМЕР",
1872
- "NOT RECOMMENDED": "НЕ РЕКОМЕНДУЕТСЯ",
1873
- "Edit measurements": "Изменить мерки",
1874
- "Size guide": "Таблица размеров",
1875
- "Your fit": "Ваша посадка",
1876
- "Your measure": "Ваша мерка",
1877
- "perfect fit": "идеальная посадка",
1878
- "too tight": "слишком тесно",
1879
- tight: "тесно",
1880
- "a bit tight": "немного тесно",
1881
- "too loose": "слишком свободно",
1882
- loose: "свободно",
1883
- "a bit loose": "немного свободно",
1884
- "See fit on your photo": "Увидеть посадку на вашем фото",
1885
- "Hide visual fit": "Скрыть визуализацию",
1886
- "Analyzing...": "Анализируем...",
1887
- "Try it on": "Примерить",
1888
- "SIZE CHART": "ТАБЛИЦА РАЗМЕРОВ",
1889
- "YOUR ESTIMATED MEASUREMENTS": "ВАШИ ПРИБЛИЗИТЕЛЬНЫЕ МЕРКИ",
1890
- Edit: "Изменить",
1891
- Download: "Скачать",
1892
- "Size chart": "Таблица размеров",
1893
- "Preparing your image...": "Подготовка изображения...",
1894
- "Analyzing body proportions...": "Анализ пропорций тела...",
1895
- "Matching garment to your photo...": "Подгонка одежды к вашему фото...",
1896
- "Generating virtual try-on...": "Создание виртуальной примерки...",
1897
- "Refining details...": "Уточнение деталей...",
1898
- "Almost there...": "Почти готово...",
1899
- "Complete!": "Готово!",
1900
- "This usually takes 15-25 seconds": "Обычно это занимает 15–25 секунд",
1901
- "Something went wrong": "Что-то пошло не так",
1902
- "Try Again": "Попробовать снова",
1903
- "SDK not configured. Please provide an API key.": "SDK не настроен. Пожалуйста, укажите API-ключ.",
1904
- "Please upload a JPEG, PNG, or WebP image.": "Загрузите изображение в формате JPEG, PNG или WebP.",
1905
- "Image must be under 10MB.": "Изображение должно быть менее 10 МБ.",
1906
- "Try-on generation failed": "Не удалось создать примерку",
1907
- "Failed to start try-on": "Не удалось начать примерку",
1908
- "No product image found. Please set the product-image attribute.": "Изображение товара не найдено. Установите атрибут product-image.",
1909
- "Powered by": "Работает на",
1910
- "My Profiles": "Мои профили",
1911
- History: "История",
1912
- "No saved profiles yet.": "Нет сохранённых профилей.",
1913
- "No history yet.": "Нет истории.",
1914
- Product: "Товар",
1915
- "Women's": "Женский",
1916
- "Men's": "Мужской",
1917
- Profiles: "Профили",
1918
- "Women's Profile": "Женский профиль",
1919
- "Men's Profile": "Мужской профиль",
1920
- Height: "Рост",
1921
- Weight: "Вес",
1922
- Chest: "Грудь",
1923
- Bust: "Бюст",
1924
- Waist: "Талия",
1925
- Hips: "Бёдра",
1926
- Shoulders: "Плечи",
1927
- Sleeve: "Рукав",
1928
- Inseam: "Шаговый шов",
1929
- Neck: "Шея",
1930
- Foot: "Стопа",
1931
- "Shoe EU": "Обувь EU",
1932
- "Shoe US": "Обувь US",
1933
- "Shoe UK": "Обувь UK",
1934
- Saved: "Сохранено",
1935
- "Delete Profile": "Удалить профиль",
1936
- "Shoe size (US)": "Размер обуви (US)",
1937
- "Shoe size (UK)": "Размер обуви (UK)",
1938
- "Shoe size (EU)": "Размер обуви (EU)",
1939
- "Generating...": "Создаём...",
1940
- "Foot length": "Длина стопы",
1941
- Size: "Размер",
1942
- "Try on size": "Примерить размер",
1943
- "e.g.": "напр.",
1944
- "Drop your photo here or click to upload": "Перетащите фото сюда или нажмите для загрузки",
1945
- "This usually takes 15-20 seconds": "Обычно это занимает 15–20 секунд",
1946
- "Try-on result": "Результат примерки",
1947
- "Try Another": "Попробовать другое",
1948
- Back: "Назад",
1949
- You: "Вы",
1950
- Garment: "Одежда",
1951
- "Your Height": "Ваш Рост",
1952
- "Your Weight": "Ваш Вес",
1953
- "Drag or scroll to set your height": "Перетащите или прокрутите для установки роста",
1954
- "Drag or scroll to set your weight": "Перетащите или прокрутите для установки веса",
1955
- "Enter height and weight first": "Сначала введите рост и вес",
1956
- // ── Field labels ──
1957
- "Lens Width": "Ширина линзы",
1958
- Bridge: "Переносица",
1959
- "Arm Length": "Длина дужки",
1960
- "Head Circumference": "Окружность головы",
1961
- "Face Width": "Ширина лица",
1962
- Temple: "Дужка",
1963
- "Around widest point": "Вокруг самой широкой точки",
1964
- "Foot Length": "Длина стопы",
1965
- Shoulder: "Плечо",
1966
- Thigh: "Бедро",
1967
- Hip: "Бедра",
1968
- // ── Units ──
1969
- Millimetre: "Миллиметр",
1970
- Centimetre: "Сантиметр",
1971
- Millimeters: "Миллиметры",
1972
- // ── Fit descriptors ──
1973
- Tight: "Тесно",
1974
- Loose: "Свободно",
1975
- Short: "Коротко",
1976
- Long: "Длинно",
1977
- Perfect: "Идеально",
1978
- "Perfect fit": "Идеальная посадка",
1979
- "✓ Fit": "✓ Подходит",
1980
- "too short": "слишком коротко",
1981
- "too long": "слишком длинно",
1982
- "a bit short": "немного коротко",
1983
- "a bit long": "немного длинно",
1984
- // ── Length pills ──
1985
- Length: "Длина",
1986
- "Length Adjustment": "Регулировка длины",
1987
- Regular: "Обычный",
1988
- Big: "Большой",
1989
- "Big & Tall": "Большой и Высокий",
1990
- // ── Misc ──
1991
- preview: "предпросмотр"
1992
- }, R = {
1993
- "Virtual Try-On": "تجربة افتراضية",
1994
- "Find Your Size & See It On You": "اعثر على مقاسك وجرّبه",
1995
- "Get the perfect fit, then try it on virtually": "اعثر على المقاس المثالي ثم جرّبه افتراضياً",
1996
- "Get Your Size": "مقاسك",
1997
- "Instant fit recommendation": "توصية فورية بالمقاس",
1998
- "Try It On": "جرّبه",
1999
- "See how it looks on you": "شاهد كيف يبدو عليك",
2000
- "Find My Size": "اعثر على مقاسي",
2001
- "Takes less than a minute": "يستغرق أقل من دقيقة",
2002
- "Upload a full body photo": "ارفع صورة بالطول الكامل",
2003
- "JPEG, PNG or WebP (max 10MB)": "JPEG أو PNG أو WebP (الحد الأقصى 10 ميجابايت)",
2004
- "Your photo": "صورتك",
2005
- "Let's find your best fit": "لنجد أفضل مقاس لك",
2006
- Centimeters: "سنتيمترات",
2007
- Inches: "بوصات",
2008
- "Load saved profile...": "تحميل ملف محفوظ...",
2009
- HEIGHT: "الطول",
2010
- WEIGHT: "الوزن",
2011
- feet: "قدم",
2012
- inches: "بوصة",
2013
- cm: "سم",
2014
- kg: "كغ",
2015
- lbs: "رطل",
2016
- in: "بوصة",
2017
- "How to measure": "كيفية القياس",
2018
- "Hide guide": "إخفاء الدليل",
2019
- "I know my measurements": "أعرف قياساتي",
2020
- "Not sure? Use height & weight instead": "غير متأكد؟ استخدم الطول والوزن",
2021
- "Please fill in height and weight": "يرجى إدخال الطول والوزن",
2022
- "Please fill in all required fields": "يرجى ملء جميع الحقول المطلوبة",
2023
- Next: "التالي",
2024
- "Analyzing your size...": "جارٍ تحليل مقاسك...",
2025
- "RECOMMENDED SIZE": "المقاس الموصى به",
2026
- "NOT RECOMMENDED": "غير موصى به",
2027
- "Edit measurements": "تعديل القياسات",
2028
- "Size guide": "دليل المقاسات",
2029
- "Your fit": "ملاءمتك",
2030
- "Your measure": "قياسك",
2031
- "perfect fit": "مقاس مثالي",
2032
- "too tight": "ضيق جداً",
2033
- tight: "ضيق",
2034
- "a bit tight": "ضيق قليلاً",
2035
- "too loose": "واسع جداً",
2036
- loose: "واسع",
2037
- "a bit loose": "واسع قليلاً",
2038
- "See fit on your photo": "شاهد الملاءمة على صورتك",
2039
- "Hide visual fit": "إخفاء عرض الملاءمة",
2040
- "Analyzing...": "جارٍ التحليل...",
2041
- "Try it on": "جرّبه",
2042
- "SIZE CHART": "جدول المقاسات",
2043
- "YOUR ESTIMATED MEASUREMENTS": "قياساتك التقديرية",
2044
- Edit: "تعديل",
2045
- Download: "تحميل",
2046
- "Size chart": "جدول المقاسات",
2047
- "Preparing your image...": "جارٍ تحضير صورتك...",
2048
- "Analyzing body proportions...": "جارٍ تحليل نسب الجسم...",
2049
- "Matching garment to your photo...": "جارٍ مطابقة الملابس مع صورتك...",
2050
- "Generating virtual try-on...": "جارٍ إنشاء التجربة الافتراضية...",
2051
- "Refining details...": "جارٍ تحسين التفاصيل...",
2052
- "Almost there...": "أوشكنا على الانتهاء...",
2053
- "Complete!": "تم!",
2054
- "This usually takes 15-25 seconds": "عادة ما يستغرق 15-25 ثانية",
2055
- "Something went wrong": "حدث خطأ ما",
2056
- "Try Again": "حاول مرة أخرى",
2057
- "SDK not configured. Please provide an API key.": "SDK غير مُهيأ. يرجى تقديم مفتاح API.",
2058
- "Please upload a JPEG, PNG, or WebP image.": "يرجى رفع صورة بصيغة JPEG أو PNG أو WebP.",
2059
- "Image must be under 10MB.": "يجب أن تكون الصورة أقل من 10 ميجابايت.",
2060
- "Try-on generation failed": "فشل إنشاء التجربة",
2061
- "Failed to start try-on": "فشل بدء التجربة",
2062
- "No product image found. Please set the product-image attribute.": "لم يتم العثور على صورة المنتج. يرجى تعيين خاصية product-image.",
2063
- "Powered by": "مدعوم من",
2064
- "My Profiles": "ملفاتي الشخصية",
2065
- History: "السجل",
2066
- "No saved profiles yet.": "لا توجد ملفات محفوظة بعد.",
2067
- "No history yet.": "لا يوجد سجل بعد.",
2068
- Product: "المنتج",
2069
- "Women's": "نسائي",
2070
- "Men's": "رجالي",
2071
- Profiles: "الملفات الشخصية",
2072
- "Women's Profile": "ملف نسائي",
2073
- "Men's Profile": "ملف رجالي",
2074
- Height: "الطول",
2075
- Weight: "الوزن",
2076
- Chest: "الصدر",
2077
- Bust: "محيط الصدر",
2078
- Waist: "الخصر",
2079
- Hips: "الأرداف",
2080
- Shoulders: "الأكتاف",
2081
- Sleeve: "الكم",
2082
- Inseam: "طول الساق الداخلي",
2083
- Neck: "الرقبة",
2084
- Foot: "القدم",
2085
- "Shoe EU": "حذاء EU",
2086
- "Shoe US": "حذاء US",
2087
- "Shoe UK": "حذاء UK",
2088
- Saved: "تم الحفظ",
2089
- "Delete Profile": "حذف الملف الشخصي",
2090
- "Shoe size (US)": "مقاس الحذاء (US)",
2091
- "Shoe size (UK)": "مقاس الحذاء (UK)",
2092
- "Shoe size (EU)": "مقاس الحذاء (EU)",
2093
- "Generating...": "جارٍ الإنشاء...",
2094
- "Foot length": "طول القدم",
2095
- Size: "المقاس",
2096
- "Try on size": "تجربة المقاس",
2097
- "e.g.": "مثال",
2098
- "Drop your photo here or click to upload": "اسحب صورتك هنا أو انقر للتحميل",
2099
- "This usually takes 15-20 seconds": "عادة ما يستغرق 15-20 ثانية",
2100
- "Try-on result": "نتيجة التجربة",
2101
- "Try Another": "جرّب صورة أخرى",
2102
- Back: "رجوع",
2103
- You: "أنت",
2104
- Garment: "الملابس",
2105
- "Your Height": "طولك",
2106
- "Your Weight": "وزنك",
2107
- "Drag or scroll to set your height": "اسحب أو مرر لتعيين طولك",
2108
- "Drag or scroll to set your weight": "اسحب أو مرر لتعيين وزنك",
2109
- "Enter height and weight first": "أدخل الطول والوزن أولاً",
2110
- // ── Field labels ──
2111
- "Lens Width": "عرض العدسة",
2112
- Bridge: "الجسر",
2113
- "Arm Length": "طول الذراع",
2114
- "Head Circumference": "محيط الرأس",
2115
- "Face Width": "عرض الوجه",
2116
- Temple: "الذراع",
2117
- "Around widest point": "حول أعرض نقطة",
2118
- "Foot Length": "طول القدم",
2119
- Shoulder: "الكتف",
2120
- Thigh: "الفخذ",
2121
- Hip: "الورك",
2122
- // ── Units ──
2123
- Millimetre: "ملم",
2124
- Centimetre: "سم",
2125
- Millimeters: "ملم",
2126
- // ── Fit descriptors ──
2127
- Tight: "ضيق",
2128
- Loose: "فضفاض",
2129
- Short: "قصير",
2130
- Long: "طويل",
2131
- Perfect: "مثالي",
2132
- "Perfect fit": "مقاس مثالي",
2133
- "✓ Fit": "✓ مناسب",
2134
- "too short": "قصير جداً",
2135
- "too long": "طويل جداً",
2136
- "a bit short": "قصير قليلاً",
2137
- "a bit long": "طويل قليلاً",
2138
- // ── Length pills ──
2139
- Length: "الطول",
2140
- "Length Adjustment": "ضبط الطول",
2141
- Regular: "عادي",
2142
- Big: "كبير",
2143
- "Big & Tall": "كبير وطويل",
2144
- // ── Misc ──
2145
- preview: "معاينة"
2146
- }, F = {
2147
- "Virtual Try-On": "Sanal Deneme",
2148
- "Find Your Size & See It On You": "Bedenini bul ve üzerinde gör",
2149
- "Get the perfect fit, then try it on virtually": "Mükemmel kalıbı bul, sonra sanal olarak dene",
2150
- "Get Your Size": "Bedenin",
2151
- "Instant fit recommendation": "Anında kalıp önerisi",
2152
- "Try It On": "Dene",
2153
- "See how it looks on you": "Üzerinde nasıl göründüğünü gör",
2154
- "Find My Size": "Bedenimi bul",
2155
- "Takes less than a minute": "Bir dakikadan az sürer",
2156
- "Upload a full body photo": "Tam boy fotoğraf yükle",
2157
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG veya WebP (maks. 10MB)",
2158
- "Your photo": "Fotoğrafın",
2159
- "Let's find your best fit": "En iyi kalıbını bulalım",
2160
- Centimeters: "Santimetre",
2161
- Inches: "İnç",
2162
- "Load saved profile...": "Kayıtlı profili yükle...",
2163
- HEIGHT: "BOY",
2164
- WEIGHT: "KİLO",
2165
- feet: "fit",
2166
- inches: "inç",
2167
- cm: "cm",
2168
- kg: "kg",
2169
- lbs: "libre",
2170
- in: "inç",
2171
- "How to measure": "Nasıl ölçülür",
2172
- "Hide guide": "Kılavuzu gizle",
2173
- "I know my measurements": "Ölçülerimi biliyorum",
2174
- "Not sure? Use height & weight instead": "Emin değil misin? Boy ve kilo kullan",
2175
- "Please fill in height and weight": "Lütfen boy ve kiloyu girin",
2176
- "Please fill in all required fields": "Lütfen tüm zorunlu alanları doldurun",
2177
- Next: "İleri",
2178
- "Analyzing your size...": "Bedenin analiz ediliyor...",
2179
- "RECOMMENDED SIZE": "ÖNERİLEN BEDEN",
2180
- "NOT RECOMMENDED": "ÖNERİLMİYOR",
2181
- "Edit measurements": "Ölçüleri düzenle",
2182
- "Size guide": "Beden kılavuzu",
2183
- "Your fit": "Kalıbın",
2184
- "Your measure": "Ölçün",
2185
- "perfect fit": "mükemmel kalıp",
2186
- "too tight": "çok dar",
2187
- tight: "dar",
2188
- "a bit tight": "biraz dar",
2189
- "too loose": "çok bol",
2190
- loose: "bol",
2191
- "a bit loose": "biraz bol",
2192
- "See fit on your photo": "Fotoğrafında kalıbı gör",
2193
- "Hide visual fit": "Görsel kalıbı gizle",
2194
- "Analyzing...": "Analiz ediliyor...",
2195
- "Try it on": "Dene",
2196
- "SIZE CHART": "BEDEN TABLOSU",
2197
- "YOUR ESTIMATED MEASUREMENTS": "TAHMİNİ ÖLÇÜLERİN",
2198
- Edit: "Düzenle",
2199
- Download: "İndir",
2200
- "Size chart": "Beden tablosu",
2201
- "Preparing your image...": "Görüntün hazırlanıyor...",
2202
- "Analyzing body proportions...": "Vücut oranları analiz ediliyor...",
2203
- "Matching garment to your photo...": "Giysi fotoğrafına uyarlanıyor...",
2204
- "Generating virtual try-on...": "Sanal deneme oluşturuluyor...",
2205
- "Refining details...": "Detaylar iyileştiriliyor...",
2206
- "Almost there...": "Neredeyse bitti...",
2207
- "Complete!": "Tamamlandı!",
2208
- "This usually takes 15-25 seconds": "Bu genellikle 15-25 saniye sürer",
2209
- "Something went wrong": "Bir hata oluştu",
2210
- "Try Again": "Tekrar dene",
2211
- "SDK not configured. Please provide an API key.": "SDK yapılandırılmadı. Lütfen bir API anahtarı girin.",
2212
- "Please upload a JPEG, PNG, or WebP image.": "Lütfen JPEG, PNG veya WebP görüntü yükleyin.",
2213
- "Image must be under 10MB.": "Görüntü 10MB'den küçük olmalıdır.",
2214
- "Try-on generation failed": "Deneme oluşturma başarısız",
2215
- "Failed to start try-on": "Deneme başlatılamadı",
2216
- "No product image found. Please set the product-image attribute.": "Ürün görseli bulunamadı. product-image özniteliğini ayarlayın.",
2217
- "Powered by": "Destekleyen",
2218
- "My Profiles": "Profillerim",
2219
- History: "Geçmiş",
2220
- "No saved profiles yet.": "Henüz kayıtlı profil yok.",
2221
- "No history yet.": "Henüz geçmiş yok.",
2222
- Product: "Ürün",
2223
- "Women's": "Kadın",
2224
- "Men's": "Erkek",
2225
- Profiles: "Profiller",
2226
- "Women's Profile": "Kadın Profili",
2227
- "Men's Profile": "Erkek Profili",
2228
- Height: "Boy",
2229
- Weight: "Kilo",
2230
- Chest: "Göğüs",
2231
- Bust: "Göğüs",
2232
- Waist: "Bel",
2233
- Hips: "Kalça",
2234
- Shoulders: "Omuz",
2235
- Sleeve: "Kol",
2236
- Inseam: "İç bacak",
2237
- Neck: "Boyun",
2238
- Foot: "Ayak",
2239
- "Shoe EU": "Ayakkabı EU",
2240
- "Shoe US": "Ayakkabı US",
2241
- "Shoe UK": "Ayakkabı UK",
2242
- Saved: "Kaydedildi",
2243
- "Delete Profile": "Profili Sil",
2244
- "Shoe size (US)": "Ayakkabı numarası (US)",
2245
- "Shoe size (UK)": "Ayakkabı numarası (UK)",
2246
- "Shoe size (EU)": "Ayakkabı numarası (EU)",
2247
- "Generating...": "Oluşturuluyor...",
2248
- "Foot length": "Ayak uzunluğu",
2249
- Size: "Beden",
2250
- "Try on size": "Bedeni dene",
2251
- "e.g.": "örn.",
2252
- "Drop your photo here or click to upload": "Fotoğrafını buraya bırak veya yüklemek için tıkla",
2253
- "This usually takes 15-20 seconds": "Bu genellikle 15-20 saniye sürer",
2254
- "Try-on result": "Deneme sonucu",
2255
- "Try Another": "Başka dene",
2256
- Back: "Geri",
2257
- You: "Sen",
2258
- Garment: "Giysi",
2259
- "Your Height": "Boyun",
2260
- "Your Weight": "Kilon",
2261
- "Drag or scroll to set your height": "Boyunuzu ayarlamak için sürükleyin veya kaydırın",
2262
- "Drag or scroll to set your weight": "Kilonuzu ayarlamak için sürükleyin veya kaydırın",
2263
- "Enter height and weight first": "Önce boy ve kilonuzu girin",
2264
- // ── Field labels ──
2265
- "Lens Width": "Cam genişliği",
2266
- Bridge: "Köprü",
2267
- "Arm Length": "Sap uzunluğu",
2268
- "Head Circumference": "Baş çevresi",
2269
- "Face Width": "Yüz genişliği",
2270
- Temple: "Sap",
2271
- "Around widest point": "En geniş nokta etrafında",
2272
- "Foot Length": "Ayak uzunluğu",
2273
- Shoulder: "Omuz",
2274
- Thigh: "Uyluk",
2275
- Hip: "Kalça",
2276
- // ── Units ──
2277
- Millimetre: "Milimetre",
2278
- Centimetre: "Santimetre",
2279
- Millimeters: "Milimetre",
2280
- // ── Fit descriptors ──
2281
- Tight: "Dar",
2282
- Loose: "Bol",
2283
- Short: "Kısa",
2284
- Long: "Uzun",
2285
- Perfect: "Mükemmel",
2286
- "Perfect fit": "Mükemmel kalıp",
2287
- "✓ Fit": "✓ Uygun",
2288
- "too short": "çok kısa",
2289
- "too long": "çok uzun",
2290
- "a bit short": "biraz kısa",
2291
- "a bit long": "biraz uzun",
2292
- // ── Length pills ──
2293
- Length: "Uzunluk",
2294
- "Length Adjustment": "Uzunluk ayarı",
2295
- Regular: "Normal",
2296
- Big: "Büyük",
2297
- "Big & Tall": "Büyük & Uzun",
2298
- // ── Misc ──
2299
- preview: "önizleme"
2300
- }, O = {
2301
- "Virtual Try-On": "Wirtualna Przymierzalnia",
2302
- "Find Your Size & See It On You": "Znajdź swój rozmiar i przymierz",
2303
- "Get the perfect fit, then try it on virtually": "Znajdź idealny krój i przymierz wirtualnie",
2304
- "Get Your Size": "Twój rozmiar",
2305
- "Instant fit recommendation": "Natychmiastowa rekomendacja kroju",
2306
- "Try It On": "Przymierz",
2307
- "See how it looks on you": "Zobacz, jak na Tobie wygląda",
2308
- "Find My Size": "Znajdź mój rozmiar",
2309
- "Takes less than a minute": "Zajmuje mniej niż minutę",
2310
- "Upload a full body photo": "Prześlij zdjęcie całej sylwetki",
2311
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG lub WebP (maks. 10MB)",
2312
- "Your photo": "Twoje zdjęcie",
2313
- "Let's find your best fit": "Znajdźmy Twój najlepszy krój",
2314
- Centimeters: "Centymetry",
2315
- Inches: "Cale",
2316
- "Load saved profile...": "Załaduj zapisany profil...",
2317
- HEIGHT: "WZROST",
2318
- WEIGHT: "WAGA",
2319
- feet: "stopy",
2320
- inches: "cale",
2321
- cm: "cm",
2322
- kg: "kg",
2323
- lbs: "funty",
2324
- in: "cal",
2325
- "How to measure": "Jak mierzyć",
2326
- "Hide guide": "Ukryj poradnik",
2327
- "I know my measurements": "Znam swoje wymiary",
2328
- "Not sure? Use height & weight instead": "Nie wiesz? Użyj wzrostu i wagi",
2329
- "Please fill in height and weight": "Proszę podać wzrost i wagę",
2330
- "Please fill in all required fields": "Proszę wypełnić wszystkie wymagane pola",
2331
- Next: "Dalej",
2332
- "Analyzing your size...": "Analizowanie Twojego rozmiaru...",
2333
- "RECOMMENDED SIZE": "ZALECANY ROZMIAR",
2334
- "NOT RECOMMENDED": "NIEZALECANY",
2335
- "Edit measurements": "Edytuj wymiary",
2336
- "Size guide": "Tabela rozmiarów",
2337
- "Your fit": "Twój krój",
2338
- "Your measure": "Twój wymiar",
2339
- "perfect fit": "idealny krój",
2340
- "too tight": "za ciasne",
2341
- tight: "ciasne",
2342
- "a bit tight": "trochę ciasne",
2343
- "too loose": "za luźne",
2344
- loose: "luźne",
2345
- "a bit loose": "trochę luźne",
2346
- "See fit on your photo": "Zobacz krój na swoim zdjęciu",
2347
- "Hide visual fit": "Ukryj wizualizację kroju",
2348
- "Analyzing...": "Analizowanie...",
2349
- "Try it on": "Przymierz",
2350
- "SIZE CHART": "TABELA ROZMIARÓW",
2351
- "YOUR ESTIMATED MEASUREMENTS": "TWOJE SZACUNKOWE WYMIARY",
2352
- Edit: "Edytuj",
2353
- Download: "Pobierz",
2354
- "Size chart": "Tabela rozmiarów",
2355
- "Preparing your image...": "Przygotowywanie zdjęcia...",
2356
- "Analyzing body proportions...": "Analizowanie proporcji ciała...",
2357
- "Matching garment to your photo...": "Dopasowywanie ubrania do zdjęcia...",
2358
- "Generating virtual try-on...": "Generowanie wirtualnej przymiarki...",
2359
- "Refining details...": "Dopracowywanie szczegółów...",
2360
- "Almost there...": "Prawie gotowe...",
2361
- "Complete!": "Gotowe!",
2362
- "This usually takes 15-25 seconds": "To zwykle trwa 15–25 sekund",
2363
- "Something went wrong": "Coś poszło nie tak",
2364
- "Try Again": "Spróbuj ponownie",
2365
- "SDK not configured. Please provide an API key.": "SDK nie skonfigurowane. Podaj klucz API.",
2366
- "Please upload a JPEG, PNG, or WebP image.": "Prześlij obraz JPEG, PNG lub WebP.",
2367
- "Image must be under 10MB.": "Obraz musi być mniejszy niż 10MB.",
2368
- "Try-on generation failed": "Generowanie przymiarki nie powiodło się",
2369
- "Failed to start try-on": "Nie udało się rozpocząć przymiarki",
2370
- "No product image found. Please set the product-image attribute.": "Nie znaleziono zdjęcia produktu. Ustaw atrybut product-image.",
2371
- "Powered by": "Obsługiwane przez",
2372
- "My Profiles": "Moje Profile",
2373
- History: "Historia",
2374
- "No saved profiles yet.": "Brak zapisanych profili.",
2375
- "No history yet.": "Brak historii.",
2376
- Product: "Produkt",
2377
- "Women's": "Damskie",
2378
- "Men's": "Męskie",
2379
- Profiles: "Profile",
2380
- "Women's Profile": "Profil Damski",
2381
- "Men's Profile": "Profil Męski",
2382
- Height: "Wzrost",
2383
- Weight: "Waga",
2384
- Chest: "Klatka piersiowa",
2385
- Bust: "Biust",
2386
- Waist: "Talia",
2387
- Hips: "Biodra",
2388
- Shoulders: "Ramiona",
2389
- Sleeve: "Rękaw",
2390
- Inseam: "Długość wewnętrzna",
2391
- Neck: "Szyja",
2392
- Foot: "Stopa",
2393
- "Shoe EU": "But EU",
2394
- "Shoe US": "But US",
2395
- "Shoe UK": "But UK",
2396
- Saved: "Zapisano",
2397
- "Delete Profile": "Usuń Profil",
2398
- "Shoe size (US)": "Rozmiar buta (US)",
2399
- "Shoe size (UK)": "Rozmiar buta (UK)",
2400
- "Shoe size (EU)": "Rozmiar buta (EU)",
2401
- "Generating...": "Generowanie...",
2402
- "Foot length": "Długość stopy",
2403
- Size: "Rozmiar",
2404
- "Try on size": "Przymierz rozmiar",
2405
- "e.g.": "np.",
2406
- "Drop your photo here or click to upload": "Przeciągnij zdjęcie tutaj lub kliknij, aby przesłać",
2407
- "This usually takes 15-20 seconds": "To zwykle trwa 15–20 sekund",
2408
- "Try-on result": "Wynik przymiarki",
2409
- "Try Another": "Spróbuj inną",
2410
- Back: "Wstecz",
2411
- You: "Ty",
2412
- Garment: "Odzież",
2413
- "Your Height": "Twój Wzrost",
2414
- "Your Weight": "Twoja Waga",
2415
- "Drag or scroll to set your height": "Przeciągnij lub przewiń, aby ustawić wzrost",
2416
- "Drag or scroll to set your weight": "Przeciągnij lub przewiń, aby ustawić wagę",
2417
- "Enter height and weight first": "Najpierw wprowadź wzrost i wagę",
2418
- // ── Field labels ──
2419
- "Lens Width": "Szerokość soczewki",
2420
- Bridge: "Mostek",
2421
- "Arm Length": "Długość zauszników",
2422
- "Head Circumference": "Obwód głowy",
2423
- "Face Width": "Szerokość twarzy",
2424
- Temple: "Zausznik",
2425
- "Around widest point": "Wokół najszerszego punktu",
2426
- "Foot Length": "Długość stopy",
2427
- Shoulder: "Bark",
2428
- Thigh: "Udo",
2429
- Hip: "Biodro",
2430
- // ── Units ──
2431
- Millimetre: "Milimetr",
2432
- Centimetre: "Centymetr",
2433
- Millimeters: "Milimetry",
2434
- // ── Fit descriptors ──
2435
- Tight: "Ciasno",
2436
- Loose: "Luźno",
2437
- Short: "Krótko",
2438
- Long: "Długo",
2439
- Perfect: "Idealnie",
2440
- "Perfect fit": "Idealne dopasowanie",
2441
- "✓ Fit": "✓ Pasuje",
2442
- "too short": "za krótko",
2443
- "too long": "za długo",
2444
- "a bit short": "trochę krótko",
2445
- "a bit long": "trochę długo",
2446
- // ── Length pills ──
2447
- Length: "Długość",
2448
- "Length Adjustment": "Regulacja długości",
2449
- Regular: "Standardowy",
2450
- Big: "Duży",
2451
- "Big & Tall": "Duży i Wysoki",
2452
- // ── Misc ──
2453
- preview: "podgląd"
2454
- }, Y = {
2455
- "Virtual Try-On": "Virtuell Provning",
2456
- "Find Your Size & See It On You": "Hitta din storlek och prova",
2457
- "Get the perfect fit, then try it on virtually": "Hitta den perfekta passformen och prova virtuellt",
2458
- "Get Your Size": "Din storlek",
2459
- "Instant fit recommendation": "Omedelbar passformsrekommendation",
2460
- "Try It On": "Prova",
2461
- "See how it looks on you": "Se hur det ser ut på dig",
2462
- "Find My Size": "Hitta min storlek",
2463
- "Takes less than a minute": "Tar mindre än en minut",
2464
- "Upload a full body photo": "Ladda upp ett helkroppsfoto",
2465
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (max 10MB)",
2466
- "Your photo": "Ditt foto",
2467
- "Let's find your best fit": "Låt oss hitta din bästa passform",
2468
- Centimeters: "Centimeter",
2469
- Inches: "Tum",
2470
- "Load saved profile...": "Ladda sparad profil...",
2471
- HEIGHT: "LÄNGD",
2472
- WEIGHT: "VIKT",
2473
- feet: "fot",
2474
- inches: "tum",
2475
- cm: "cm",
2476
- kg: "kg",
2477
- lbs: "pund",
2478
- in: "tum",
2479
- "How to measure": "Hur man mäter",
2480
- "Hide guide": "Dölj guide",
2481
- "I know my measurements": "Jag vet mina mått",
2482
- "Not sure? Use height & weight instead": "Osäker? Använd längd och vikt",
2483
- "Please fill in height and weight": "Vänligen fyll i längd och vikt",
2484
- "Please fill in all required fields": "Vänligen fyll i alla obligatoriska fält",
2485
- Next: "Nästa",
2486
- "Analyzing your size...": "Analyserar din storlek...",
2487
- "RECOMMENDED SIZE": "REKOMMENDERAD STORLEK",
2488
- "NOT RECOMMENDED": "EJ REKOMMENDERAD",
2489
- "Edit measurements": "Redigera mått",
2490
- "Size guide": "Storleksguide",
2491
- "Your fit": "Din passform",
2492
- "Your measure": "Ditt mått",
2493
- "perfect fit": "perfekt passform",
2494
- "too tight": "för tight",
2495
- tight: "tight",
2496
- "a bit tight": "lite tight",
2497
- "too loose": "för lös",
2498
- loose: "lös",
2499
- "a bit loose": "lite lös",
2500
- "See fit on your photo": "Se passform på ditt foto",
2501
- "Hide visual fit": "Dölj visuell passform",
2502
- "Analyzing...": "Analyserar...",
2503
- "Try it on": "Prova",
2504
- "SIZE CHART": "STORLEKSTABELL",
2505
- "YOUR ESTIMATED MEASUREMENTS": "DINA UPPSKATTADE MÅTT",
2506
- Edit: "Redigera",
2507
- Download: "Ladda ner",
2508
- "Size chart": "Storlekstabell",
2509
- "Preparing your image...": "Förbereder din bild...",
2510
- "Analyzing body proportions...": "Analyserar kroppsproportioner...",
2511
- "Matching garment to your photo...": "Anpassar plagg till ditt foto...",
2512
- "Generating virtual try-on...": "Skapar virtuell provning...",
2513
- "Refining details...": "Förfinar detaljer...",
2514
- "Almost there...": "Nästan klart...",
2515
- "Complete!": "Klart!",
2516
- "This usually takes 15-25 seconds": "Det tar vanligtvis 15–25 sekunder",
2517
- "Something went wrong": "Något gick fel",
2518
- "Try Again": "Försök igen",
2519
- "SDK not configured. Please provide an API key.": "SDK ej konfigurerat. Ange en API-nyckel.",
2520
- "Please upload a JPEG, PNG, or WebP image.": "Ladda upp en JPEG-, PNG- eller WebP-bild.",
2521
- "Image must be under 10MB.": "Bilden måste vara under 10MB.",
2522
- "Try-on generation failed": "Provningsgenerering misslyckades",
2523
- "Failed to start try-on": "Kunde inte starta provning",
2524
- "No product image found. Please set the product-image attribute.": "Ingen produktbild hittades. Ange product-image attributet.",
2525
- "Powered by": "Drivs av",
2526
- "My Profiles": "Mina Profiler",
2527
- History: "Historik",
2528
- "No saved profiles yet.": "Inga sparade profiler än.",
2529
- "No history yet.": "Ingen historik än.",
2530
- Product: "Produkt",
2531
- "Women's": "Dam",
2532
- "Men's": "Herr",
2533
- Profiles: "Profiler",
2534
- "Women's Profile": "Damprofil",
2535
- "Men's Profile": "Herrprofil",
2536
- Height: "Längd",
2537
- Weight: "Vikt",
2538
- Chest: "Bröst",
2539
- Bust: "Byst",
2540
- Waist: "Midja",
2541
- Hips: "Höfter",
2542
- Shoulders: "Axlar",
2543
- Sleeve: "Ärm",
2544
- Inseam: "Innerbensläng",
2545
- Neck: "Hals",
2546
- Foot: "Fot",
2547
- "Shoe EU": "Sko EU",
2548
- "Shoe US": "Sko US",
2549
- "Shoe UK": "Sko UK",
2550
- Saved: "Sparad",
2551
- "Delete Profile": "Radera Profil",
2552
- "Shoe size (US)": "Skostorlek (US)",
2553
- "Shoe size (UK)": "Skostorlek (UK)",
2554
- "Shoe size (EU)": "Skostorlek (EU)",
2555
- "Generating...": "Skapar...",
2556
- "Foot length": "Fotlängd",
2557
- Size: "Storlek",
2558
- "Try on size": "Prova storlek",
2559
- "e.g.": "t.ex.",
2560
- "Drop your photo here or click to upload": "Släpp ditt foto här eller klicka för att ladda upp",
2561
- "This usually takes 15-20 seconds": "Det tar vanligtvis 15–20 sekunder",
2562
- "Try-on result": "Provningsresultat",
2563
- "Try Another": "Prova en annan",
2564
- Back: "Tillbaka",
2565
- You: "Du",
2566
- Garment: "Plagg",
2567
- "Your Height": "Din Längd",
2568
- "Your Weight": "Din Vikt",
2569
- "Drag or scroll to set your height": "Dra eller scrolla för att ställa in din längd",
2570
- "Drag or scroll to set your weight": "Dra eller scrolla för att ställa in din vikt",
2571
- "Enter height and weight first": "Ange längd och vikt först",
2572
- // ── Field labels ──
2573
- "Lens Width": "Glasögonbredd",
2574
- Bridge: "Brygga",
2575
- "Arm Length": "Skalmlängd",
2576
- "Head Circumference": "Huvudomkrets",
2577
- "Face Width": "Ansiktsbredd",
2578
- Temple: "Skalm",
2579
- "Around widest point": "Runt bredaste punkten",
2580
- "Foot Length": "Fotlängd",
2581
- Shoulder: "Axel",
2582
- Thigh: "Lår",
2583
- Hip: "Höft",
2584
- // ── Units ──
2585
- Millimetre: "Millimeter",
2586
- Centimetre: "Centimeter",
2587
- Millimeters: "Millimeter",
2588
- // ── Fit descriptors ──
2589
- Tight: "Trångt",
2590
- Loose: "Löst",
2591
- Short: "Kort",
2592
- Long: "Lång",
2593
- Perfect: "Perfekt",
2594
- "Perfect fit": "Perfekt passform",
2595
- "✓ Fit": "✓ Passar",
2596
- "too short": "för kort",
2597
- "too long": "för lång",
2598
- "a bit short": "lite kort",
2599
- "a bit long": "lite lång",
2600
- // ── Length pills ──
2601
- Length: "Längd",
2602
- "Length Adjustment": "Längdjustering",
2603
- Regular: "Normal",
2604
- Big: "Stor",
2605
- "Big & Tall": "Stor & Lång",
2606
- // ── Misc ──
2607
- preview: "förhandsvisning"
2608
- }, K = {
2609
- "Virtual Try-On": "Virtuel Prøvning",
2610
- "Find Your Size & See It On You": "Find din størrelse og prøv det",
2611
- "Get the perfect fit, then try it on virtually": "Find den perfekte pasform og prøv det virtuelt",
2612
- "Get Your Size": "Din størrelse",
2613
- "Instant fit recommendation": "Øjeblikkelig pasformsanbefaling",
2614
- "Try It On": "Prøv det",
2615
- "See how it looks on you": "Se hvordan det ser ud på dig",
2616
- "Find My Size": "Find min størrelse",
2617
- "Takes less than a minute": "Tager mindre end et minut",
2618
- "Upload a full body photo": "Upload et helfoto",
2619
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (maks 10MB)",
2620
- "Your photo": "Dit foto",
2621
- "Let's find your best fit": "Lad os finde din bedste pasform",
2622
- Centimeters: "Centimeter",
2623
- Inches: "Tommer",
2624
- "Load saved profile...": "Indlæs gemt profil...",
2625
- HEIGHT: "HØJDE",
2626
- WEIGHT: "VÆGT",
2627
- feet: "fod",
2628
- inches: "tommer",
2629
- cm: "cm",
2630
- kg: "kg",
2631
- lbs: "pund",
2632
- in: "tommer",
2633
- "How to measure": "Sådan måler du",
2634
- "Hide guide": "Skjul guide",
2635
- "I know my measurements": "Jeg kender mine mål",
2636
- "Not sure? Use height & weight instead": "Usikker? Brug højde og vægt",
2637
- "Please fill in height and weight": "Udfyld venligst højde og vægt",
2638
- "Please fill in all required fields": "Udfyld venligst alle påkrævede felter",
2639
- Next: "Næste",
2640
- "Analyzing your size...": "Analyserer din størrelse...",
2641
- "RECOMMENDED SIZE": "ANBEFALET STØRRELSE",
2642
- "NOT RECOMMENDED": "IKKE ANBEFALET",
2643
- "Edit measurements": "Rediger mål",
2644
- "Size guide": "Størrelsesguide",
2645
- "Your fit": "Din pasform",
2646
- "Your measure": "Dit mål",
2647
- "perfect fit": "perfekt pasform",
2648
- "too tight": "for stram",
2649
- tight: "stram",
2650
- "a bit tight": "lidt stram",
2651
- "too loose": "for løs",
2652
- loose: "løs",
2653
- "a bit loose": "lidt løs",
2654
- "See fit on your photo": "Se pasform på dit foto",
2655
- "Hide visual fit": "Skjul visuel pasform",
2656
- "Analyzing...": "Analyserer...",
2657
- "Try it on": "Prøv det",
2658
- "SIZE CHART": "STØRRELSESSKEMA",
2659
- "YOUR ESTIMATED MEASUREMENTS": "DINE ANSLÅEDE MÅL",
2660
- Edit: "Rediger",
2661
- Download: "Download",
2662
- "Size chart": "Størrelsesskema",
2663
- "Preparing your image...": "Forbereder dit billede...",
2664
- "Analyzing body proportions...": "Analyserer kropsforhold...",
2665
- "Matching garment to your photo...": "Tilpasser tøj til dit foto...",
2666
- "Generating virtual try-on...": "Genererer virtuel prøvning...",
2667
- "Refining details...": "Forfiner detaljer...",
2668
- "Almost there...": "Næsten færdig...",
2669
- "Complete!": "Færdig!",
2670
- "This usually takes 15-25 seconds": "Dette tager normalt 15-25 sekunder",
2671
- "Something went wrong": "Noget gik galt",
2672
- "Try Again": "Prøv igen",
2673
- "SDK not configured. Please provide an API key.": "SDK ikke konfigureret. Angiv venligst en API-nøgle.",
2674
- "Please upload a JPEG, PNG, or WebP image.": "Upload venligst et JPEG-, PNG- eller WebP-billede.",
2675
- "Image must be under 10MB.": "Billedet skal være under 10MB.",
2676
- "Try-on generation failed": "Prøvningsgenerering mislykkedes",
2677
- "Failed to start try-on": "Kunne ikke starte prøvning",
2678
- "No product image found. Please set the product-image attribute.": "Intet produktbillede fundet. Indstil product-image attributten.",
2679
- "Powered by": "Drevet af",
2680
- "My Profiles": "Mine Profiler",
2681
- History: "Historik",
2682
- "No saved profiles yet.": "Ingen gemte profiler endnu.",
2683
- "No history yet.": "Ingen historik endnu.",
2684
- Product: "Produkt",
2685
- "Women's": "Dame",
2686
- "Men's": "Herre",
2687
- Profiles: "Profiler",
2688
- "Women's Profile": "Dameprofil",
2689
- "Men's Profile": "Herreprofil",
2690
- Height: "Højde",
2691
- Weight: "Vægt",
2692
- Chest: "Bryst",
2693
- Bust: "Buste",
2694
- Waist: "Talje",
2695
- Hips: "Hofter",
2696
- Shoulders: "Skuldre",
2697
- Sleeve: "Ærme",
2698
- Inseam: "Indvendig benlængde",
2699
- Neck: "Hals",
2700
- Foot: "Fod",
2701
- "Shoe EU": "Sko EU",
2702
- "Shoe US": "Sko US",
2703
- "Shoe UK": "Sko UK",
2704
- Saved: "Gemt",
2705
- "Delete Profile": "Slet Profil",
2706
- "Shoe size (US)": "Skostørrelse (US)",
2707
- "Shoe size (UK)": "Skostørrelse (UK)",
2708
- "Shoe size (EU)": "Skostørrelse (EU)",
2709
- "Generating...": "Genererer...",
2710
- "Foot length": "Fodlængde",
2711
- Size: "Størrelse",
2712
- "Try on size": "Prøv størrelse",
2713
- "e.g.": "f.eks.",
2714
- "Drop your photo here or click to upload": "Slip dit foto her eller klik for at uploade",
2715
- "This usually takes 15-20 seconds": "Dette tager normalt 15-20 sekunder",
2716
- "Try-on result": "Prøvningsresultat",
2717
- "Try Another": "Prøv en anden",
2718
- Back: "Tilbage",
2719
- You: "Dig",
2720
- Garment: "Beklædning",
2721
- "Your Height": "Din Højde",
2722
- "Your Weight": "Din Vægt",
2723
- "Drag or scroll to set your height": "Træk eller scroll for at indstille din højde",
2724
- "Drag or scroll to set your weight": "Træk eller scroll for at indstille din vægt",
2725
- "Enter height and weight first": "Indtast først højde og vægt",
2726
- // ── Field labels ──
2727
- "Lens Width": "Glasbredde",
2728
- Bridge: "Bro",
2729
- "Arm Length": "Stanglængde",
2730
- "Head Circumference": "Hovedomkreds",
2731
- "Face Width": "Ansigtsbredde",
2732
- Temple: "Stang",
2733
- "Around widest point": "Omkring det bredeste punkt",
2734
- "Foot Length": "Fodlængde",
2735
- Shoulder: "Skulder",
2736
- Thigh: "Lår",
2737
- Hip: "Hofte",
2738
- // ── Units ──
2739
- Millimetre: "Millimeter",
2740
- Centimetre: "Centimeter",
2741
- Millimeters: "Millimeter",
2742
- // ── Fit descriptors ──
2743
- Tight: "Stramt",
2744
- Loose: "Løst",
2745
- Short: "Kort",
2746
- Long: "Lang",
2747
- Perfect: "Perfekt",
2748
- "Perfect fit": "Perfekt pasform",
2749
- "✓ Fit": "✓ Passer",
2750
- "too short": "for kort",
2751
- "too long": "for lang",
2752
- "a bit short": "lidt kort",
2753
- "a bit long": "lidt lang",
2754
- // ── Length pills ──
2755
- Length: "Længde",
2756
- "Length Adjustment": "Længdejustering",
2757
- Regular: "Almindelig",
2758
- Big: "Stor",
2759
- "Big & Tall": "Stor & Lang",
2760
- // ── Misc ──
2761
- preview: "forhåndsvisning"
2762
- }, j = {
2763
- "Virtual Try-On": "Virtuell Prøving",
2764
- "Find Your Size & See It On You": "Finn størrelsen din og prøv det",
2765
- "Get the perfect fit, then try it on virtually": "Finn den perfekte passformen og prøv det virtuelt",
2766
- "Get Your Size": "Din størrelse",
2767
- "Instant fit recommendation": "Umiddelbar passformanbefaling",
2768
- "Try It On": "Prøv det",
2769
- "See how it looks on you": "Se hvordan det ser ut på deg",
2770
- "Find My Size": "Finn min størrelse",
2771
- "Takes less than a minute": "Tar mindre enn et minutt",
2772
- "Upload a full body photo": "Last opp et helkroppsbilde",
2773
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG eller WebP (maks 10MB)",
2774
- "Your photo": "Ditt bilde",
2775
- "Let's find your best fit": "La oss finne din beste passform",
2776
- Centimeters: "Centimeter",
2777
- Inches: "Tommer",
2778
- "Load saved profile...": "Last inn lagret profil...",
2779
- HEIGHT: "HØYDE",
2780
- WEIGHT: "VEKT",
2781
- feet: "fot",
2782
- inches: "tommer",
2783
- cm: "cm",
2784
- kg: "kg",
2785
- lbs: "pund",
2786
- in: "tommer",
2787
- "How to measure": "Slik måler du",
2788
- "Hide guide": "Skjul veiledning",
2789
- "I know my measurements": "Jeg kjenner målene mine",
2790
- "Not sure? Use height & weight instead": "Usikker? Bruk høyde og vekt",
2791
- "Please fill in height and weight": "Vennligst fyll inn høyde og vekt",
2792
- "Please fill in all required fields": "Vennligst fyll ut alle obligatoriske felt",
2793
- Next: "Neste",
2794
- "Analyzing your size...": "Analyserer størrelsen din...",
2795
- "RECOMMENDED SIZE": "ANBEFALT STØRRELSE",
2796
- "NOT RECOMMENDED": "IKKE ANBEFALT",
2797
- "Edit measurements": "Rediger mål",
2798
- "Size guide": "Størrelsesguide",
2799
- "Your fit": "Din passform",
2800
- "Your measure": "Ditt mål",
2801
- "perfect fit": "perfekt passform",
2802
- "too tight": "for trang",
2803
- tight: "trang",
2804
- "a bit tight": "litt trang",
2805
- "too loose": "for løs",
2806
- loose: "løs",
2807
- "a bit loose": "litt løs",
2808
- "See fit on your photo": "Se passform på bildet ditt",
2809
- "Hide visual fit": "Skjul visuell passform",
2810
- "Analyzing...": "Analyserer...",
2811
- "Try it on": "Prøv det",
2812
- "SIZE CHART": "STØRRELSESTABELL",
2813
- "YOUR ESTIMATED MEASUREMENTS": "DINE ESTIMERTE MÅL",
2814
- Edit: "Rediger",
2815
- Download: "Last ned",
2816
- "Size chart": "Størrelsestabell",
2817
- "Preparing your image...": "Forbereder bildet ditt...",
2818
- "Analyzing body proportions...": "Analyserer kroppsproportioner...",
2819
- "Matching garment to your photo...": "Tilpasser plagg til bildet ditt...",
2820
- "Generating virtual try-on...": "Genererer virtuell prøving...",
2821
- "Refining details...": "Forfiner detaljer...",
2822
- "Almost there...": "Nesten ferdig...",
2823
- "Complete!": "Ferdig!",
2824
- "This usually takes 15-25 seconds": "Dette tar vanligvis 15–25 sekunder",
2825
- "Something went wrong": "Noe gikk galt",
2826
- "Try Again": "Prøv igjen",
2827
- "SDK not configured. Please provide an API key.": "SDK ikke konfigurert. Vennligst oppgi en API-nøkkel.",
2828
- "Please upload a JPEG, PNG, or WebP image.": "Last opp et JPEG-, PNG- eller WebP-bilde.",
2829
- "Image must be under 10MB.": "Bildet må være under 10MB.",
2830
- "Try-on generation failed": "Prøvingsgenerering mislyktes",
2831
- "Failed to start try-on": "Kunne ikke starte prøving",
2832
- "No product image found. Please set the product-image attribute.": "Ingen produktbilde funnet. Sett product-image attributtet.",
2833
- "Powered by": "Drevet av",
2834
- "My Profiles": "Mine Profiler",
2835
- History: "Historikk",
2836
- "No saved profiles yet.": "Ingen lagrede profiler ennå.",
2837
- "No history yet.": "Ingen historikk ennå.",
2838
- Product: "Produkt",
2839
- "Women's": "Dame",
2840
- "Men's": "Herre",
2841
- Profiles: "Profiler",
2842
- "Women's Profile": "Dameprofil",
2843
- "Men's Profile": "Herreprofil",
2844
- Height: "Høyde",
2845
- Weight: "Vekt",
2846
- Chest: "Bryst",
2847
- Bust: "Byste",
2848
- Waist: "Midje",
2849
- Hips: "Hofter",
2850
- Shoulders: "Skuldre",
2851
- Sleeve: "Erme",
2852
- Inseam: "Innvendig benlengde",
2853
- Neck: "Nakke",
2854
- Foot: "Fot",
2855
- "Shoe EU": "Sko EU",
2856
- "Shoe US": "Sko US",
2857
- "Shoe UK": "Sko UK",
2858
- Saved: "Lagret",
2859
- "Delete Profile": "Slett Profil",
2860
- "Shoe size (US)": "Skostørrelse (US)",
2861
- "Shoe size (UK)": "Skostørrelse (UK)",
2862
- "Shoe size (EU)": "Skostørrelse (EU)",
2863
- "Generating...": "Genererer...",
2864
- "Foot length": "Fotlengde",
2865
- Size: "Størrelse",
2866
- "Try on size": "Prøv størrelse",
2867
- "e.g.": "f.eks.",
2868
- "Drop your photo here or click to upload": "Slipp bildet ditt her eller klikk for å laste opp",
2869
- "This usually takes 15-20 seconds": "Dette tar vanligvis 15–20 sekunder",
2870
- "Try-on result": "Prøvingsresultat",
2871
- "Try Another": "Prøv en annen",
2872
- Back: "Tilbake",
2873
- You: "Deg",
2874
- Garment: "Plagg",
2875
- "Your Height": "Din Høyde",
2876
- "Your Weight": "Din Vekt",
2877
- "Drag or scroll to set your height": "Dra eller scroll for å angi høyden din",
2878
- "Drag or scroll to set your weight": "Dra eller scroll for å angi vekten din",
2879
- "Enter height and weight first": "Skriv inn høyde og vekt først",
2880
- // ── Field labels ──
2881
- "Lens Width": "Glassbredde",
2882
- Bridge: "Bro",
2883
- "Arm Length": "Stanglengde",
2884
- "Head Circumference": "Hodeomkrets",
2885
- "Face Width": "Ansiktsbredde",
2886
- Temple: "Stang",
2887
- "Around widest point": "Rundt bredeste punkt",
2888
- "Foot Length": "Fotlengde",
2889
- Shoulder: "Skulder",
2890
- Thigh: "Lår",
2891
- Hip: "Hofte",
2892
- // ── Units ──
2893
- Millimetre: "Millimeter",
2894
- Centimetre: "Centimeter",
2895
- Millimeters: "Millimeter",
2896
- // ── Fit descriptors ──
2897
- Tight: "Stramt",
2898
- Loose: "Løst",
2899
- Short: "Kort",
2900
- Long: "Lang",
2901
- Perfect: "Perfekt",
2902
- "Perfect fit": "Perfekt passform",
2903
- "✓ Fit": "✓ Passer",
2904
- "too short": "for kort",
2905
- "too long": "for lang",
2906
- "a bit short": "litt kort",
2907
- "a bit long": "litt lang",
2908
- // ── Length pills ──
2909
- Length: "Lengde",
2910
- "Length Adjustment": "Lengdejustering",
2911
- Regular: "Vanlig",
2912
- Big: "Stor",
2913
- "Big & Tall": "Stor & Lang",
2914
- // ── Misc ──
2915
- preview: "forhåndsvisning"
2916
- }, V = {
2917
- "Virtual Try-On": "Virtuaalinen Sovitus",
2918
- "Find Your Size & See It On You": "Löydä kokosi ja sovita",
2919
- "Get the perfect fit, then try it on virtually": "Löydä täydellinen istuvuus ja sovita virtuaalisesti",
2920
- "Get Your Size": "Sinun kokosi",
2921
- "Instant fit recommendation": "Välitön istuvuussuositus",
2922
- "Try It On": "Sovita",
2923
- "See how it looks on you": "Katso miltä se näyttää päälläsi",
2924
- "Find My Size": "Etsi kokoni",
2925
- "Takes less than a minute": "Vie alle minuutin",
2926
- "Upload a full body photo": "Lataa kokovartalokuva",
2927
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG tai WebP (enintään 10 Mt)",
2928
- "Your photo": "Valokuvasi",
2929
- "Let's find your best fit": "Etsitään paras istuvuus",
2930
- Centimeters: "Senttimetrit",
2931
- Inches: "Tuumat",
2932
- "Load saved profile...": "Lataa tallennettu profiili...",
2933
- HEIGHT: "PITUUS",
2934
- WEIGHT: "PAINO",
2935
- feet: "jalkaa",
2936
- inches: "tuumaa",
2937
- cm: "cm",
2938
- kg: "kg",
2939
- lbs: "paunaa",
2940
- in: "tuumaa",
2941
- "How to measure": "Mittausohjeet",
2942
- "Hide guide": "Piilota opas",
2943
- "I know my measurements": "Tiedän mittani",
2944
- "Not sure? Use height & weight instead": "Epävarma? Käytä pituutta ja painoa",
2945
- "Please fill in height and weight": "Täytä pituus ja paino",
2946
- "Please fill in all required fields": "Täytä kaikki pakolliset kentät",
2947
- Next: "Seuraava",
2948
- "Analyzing your size...": "Analysoidaan kokoasi...",
2949
- "RECOMMENDED SIZE": "SUOSITELTU KOKO",
2950
- "NOT RECOMMENDED": "EI SUOSITELTU",
2951
- "Edit measurements": "Muokkaa mittoja",
2952
- "Size guide": "Kokotaulukko",
2953
- "Your fit": "Istuvuutesi",
2954
- "Your measure": "Mittasi",
2955
- "perfect fit": "täydellinen istuvuus",
2956
- "too tight": "liian tiukka",
2957
- tight: "tiukka",
2958
- "a bit tight": "hieman tiukka",
2959
- "too loose": "liian löysä",
2960
- loose: "löysä",
2961
- "a bit loose": "hieman löysä",
2962
- "See fit on your photo": "Näe istuvuus kuvassasi",
2963
- "Hide visual fit": "Piilota visuaalinen istuvuus",
2964
- "Analyzing...": "Analysoidaan...",
2965
- "Try it on": "Sovita",
2966
- "SIZE CHART": "KOKOTAULUKKO",
2967
- "YOUR ESTIMATED MEASUREMENTS": "ARVIOIDUT MITTASI",
2968
- Edit: "Muokkaa",
2969
- Download: "Lataa",
2970
- "Size chart": "Kokotaulukko",
2971
- "Preparing your image...": "Valmistellaan kuvaasi...",
2972
- "Analyzing body proportions...": "Analysoidaan vartalon mittasuhteita...",
2973
- "Matching garment to your photo...": "Sovitetaan vaatetta kuvaasi...",
2974
- "Generating virtual try-on...": "Luodaan virtuaalista sovitusta...",
2975
- "Refining details...": "Hienosäädetään yksityiskohtia...",
2976
- "Almost there...": "Melkein valmis...",
2977
- "Complete!": "Valmis!",
2978
- "This usually takes 15-25 seconds": "Tämä kestää yleensä 15–25 sekuntia",
2979
- "Something went wrong": "Jokin meni pieleen",
2980
- "Try Again": "Yritä uudelleen",
2981
- "SDK not configured. Please provide an API key.": "SDK:ta ei ole määritetty. Anna API-avain.",
2982
- "Please upload a JPEG, PNG, or WebP image.": "Lataa JPEG-, PNG- tai WebP-kuva.",
2983
- "Image must be under 10MB.": "Kuvan on oltava alle 10 Mt.",
2984
- "Try-on generation failed": "Sovituksen luonti epäonnistui",
2985
- "Failed to start try-on": "Sovitusta ei voitu aloittaa",
2986
- "No product image found. Please set the product-image attribute.": "Tuotekuvaa ei löytynyt. Aseta product-image-attribuutti.",
2987
- "Powered by": "Powered by",
2988
- "My Profiles": "Omat Profiilit",
2989
- History: "Historia",
2990
- "No saved profiles yet.": "Ei tallennettuja profiileja.",
2991
- "No history yet.": "Ei historiaa vielä.",
2992
- Product: "Tuote",
2993
- "Women's": "Naisten",
2994
- "Men's": "Miesten",
2995
- Profiles: "Profiilit",
2996
- "Women's Profile": "Naisten Profiili",
2997
- "Men's Profile": "Miesten Profiili",
2998
- Height: "Pituus",
2999
- Weight: "Paino",
3000
- Chest: "Rinta",
3001
- Bust: "Rinnanympärys",
3002
- Waist: "Vyötärö",
3003
- Hips: "Lantio",
3004
- Shoulders: "Hartiat",
3005
- Sleeve: "Hiha",
3006
- Inseam: "Sisäsauma",
3007
- Neck: "Kaula",
3008
- Foot: "Jalka",
3009
- "Shoe EU": "Kenkä EU",
3010
- "Shoe US": "Kenkä US",
3011
- "Shoe UK": "Kenkä UK",
3012
- Saved: "Tallennettu",
3013
- "Delete Profile": "Poista Profiili",
3014
- "Shoe size (US)": "Kengän koko (US)",
3015
- "Shoe size (UK)": "Kengän koko (UK)",
3016
- "Shoe size (EU)": "Kengän koko (EU)",
3017
- "Generating...": "Luodaan...",
3018
- "Foot length": "Jalan pituus",
3019
- Size: "Koko",
3020
- "Try on size": "Kokeile kokoa",
3021
- "e.g.": "esim.",
3022
- "Drop your photo here or click to upload": "Pudota kuvasi tähän tai napsauta ladataksesi",
3023
- "This usually takes 15-20 seconds": "Tämä kestää yleensä 15–20 sekuntia",
3024
- "Try-on result": "Sovitustulos",
3025
- "Try Another": "Kokeile toista",
3026
- Back: "Takaisin",
3027
- You: "Sinä",
3028
- Garment: "Vaate",
3029
- "Your Height": "Pituutesi",
3030
- "Your Weight": "Painosi",
3031
- "Drag or scroll to set your height": "Vedä tai vieritä asettaaksesi pituutesi",
3032
- "Drag or scroll to set your weight": "Vedä tai vieritä asettaaksesi painosi",
3033
- "Enter height and weight first": "Syötä ensin pituus ja paino",
3034
- // ── Field labels ──
3035
- "Lens Width": "Linssin leveys",
3036
- Bridge: "Silta",
3037
- "Arm Length": "Sangan pituus",
3038
- "Head Circumference": "Pään ympärys",
3039
- "Face Width": "Kasvojen leveys",
3040
- Temple: "Sanka",
3041
- "Around widest point": "Leveimmän kohdan ympäri",
3042
- "Foot Length": "Jalan pituus",
3043
- Shoulder: "Olkapää",
3044
- Thigh: "Reisi",
3045
- Hip: "Lantio",
3046
- // ── Units ──
3047
- Millimetre: "Millimetri",
3048
- Centimetre: "Senttimetri",
3049
- Millimeters: "Millimetriä",
3050
- // ── Fit descriptors ──
3051
- Tight: "Tiukka",
3052
- Loose: "Löysä",
3053
- Short: "Lyhyt",
3054
- Long: "Pitkä",
3055
- Perfect: "Täydellinen",
3056
- "Perfect fit": "Täydellinen istuvuus",
3057
- "✓ Fit": "✓ Sopii",
3058
- "too short": "liian lyhyt",
3059
- "too long": "liian pitkä",
3060
- "a bit short": "hieman lyhyt",
3061
- "a bit long": "hieman pitkä",
3062
- // ── Length pills ──
3063
- Length: "Pituus",
3064
- "Length Adjustment": "Pituuden säätö",
3065
- Regular: "Tavallinen",
3066
- Big: "Iso",
3067
- "Big & Tall": "Iso ja Pitkä",
3068
- // ── Misc ──
3069
- preview: "esikatselu"
3070
- }, J = {
3071
- "Virtual Try-On": "ลองเสื้อผ้าเสมือนจริง",
3072
- "Find Your Size & See It On You": "ค้นหาไซส์ของคุณและลองสวมใส่",
3073
- "Get the perfect fit, then try it on virtually": "ค้นหาขนาดที่พอดีแล้วลองสวมใส่เสมือนจริง",
3074
- "Get Your Size": "ไซส์ของคุณ",
3075
- "Instant fit recommendation": "แนะนำขนาดทันที",
3076
- "Try It On": "ลองใส่",
3077
- "See how it looks on you": "ดูว่าใส่แล้วเป็นอย่างไร",
3078
- "Find My Size": "ค้นหาไซส์ของฉัน",
3079
- "Takes less than a minute": "ใช้เวลาไม่ถึงนาที",
3080
- "Upload a full body photo": "อัปโหลดรูปถ่ายเต็มตัว",
3081
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG หรือ WebP (สูงสุด 10MB)",
3082
- "Your photo": "รูปถ่ายของคุณ",
3083
- "Let's find your best fit": "มาหาขนาดที่พอดีที่สุดกัน",
3084
- Centimeters: "เซนติเมตร",
3085
- Inches: "นิ้ว",
3086
- "Load saved profile...": "โหลดโปรไฟล์ที่บันทึกไว้...",
3087
- HEIGHT: "ส่วนสูง",
3088
- WEIGHT: "น้ำหนัก",
3089
- feet: "ฟุต",
3090
- inches: "นิ้ว",
3091
- cm: "ซม.",
3092
- kg: "กก.",
3093
- lbs: "ปอนด์",
3094
- in: "นิ้ว",
3095
- "How to measure": "วิธีการวัด",
3096
- "Hide guide": "ซ่อนคำแนะนำ",
3097
- "I know my measurements": "ฉันรู้สัดส่วนของตัวเอง",
3098
- "Not sure? Use height & weight instead": "ไม่แน่ใจ? ใช้ส่วนสูงและน้ำหนักแทน",
3099
- "Please fill in height and weight": "กรุณากรอกส่วนสูงและน้ำหนัก",
3100
- "Please fill in all required fields": "กรุณากรอกข้อมูลที่จำเป็นทั้งหมด",
3101
- Next: "ถัดไป",
3102
- "Analyzing your size...": "กำลังวิเคราะห์ไซส์ของคุณ...",
3103
- "RECOMMENDED SIZE": "ไซส์ที่แนะนำ",
3104
- "NOT RECOMMENDED": "ไม่แนะนำ",
3105
- "Edit measurements": "แก้ไขสัดส่วน",
3106
- "Size guide": "คู่มือไซส์",
3107
- "Your fit": "ความพอดีของคุณ",
3108
- "Your measure": "สัดส่วนของคุณ",
3109
- "perfect fit": "พอดีสมบูรณ์แบบ",
3110
- "too tight": "คับเกินไป",
3111
- tight: "คับ",
3112
- "a bit tight": "คับเล็กน้อย",
3113
- "too loose": "หลวมเกินไป",
3114
- loose: "หลวม",
3115
- "a bit loose": "หลวมเล็กน้อย",
3116
- "See fit on your photo": "ดูความพอดีบนรูปถ่ายของคุณ",
3117
- "Hide visual fit": "ซ่อนการแสดงผลความพอดี",
3118
- "Analyzing...": "กำลังวิเคราะห์...",
3119
- "Try it on": "ลองใส่",
3120
- "SIZE CHART": "ตารางไซส์",
3121
- "YOUR ESTIMATED MEASUREMENTS": "สัดส่วนโดยประมาณของคุณ",
3122
- Edit: "แก้ไข",
3123
- Download: "ดาวน์โหลด",
3124
- "Size chart": "ตารางไซส์",
3125
- "Preparing your image...": "กำลังเตรียมรูปภาพ...",
3126
- "Analyzing body proportions...": "กำลังวิเคราะห์สัดส่วนร่างกาย...",
3127
- "Matching garment to your photo...": "กำลังจับคู่เสื้อผ้ากับรูปถ่าย...",
3128
- "Generating virtual try-on...": "กำลังสร้างการลองเสื้อผ้าเสมือนจริง...",
3129
- "Refining details...": "กำลังปรับแต่งรายละเอียด...",
3130
- "Almost there...": "เกือบเสร็จแล้ว...",
3131
- "Complete!": "เสร็จสิ้น!",
3132
- "This usually takes 15-25 seconds": "ปกติจะใช้เวลา 15-25 วินาที",
3133
- "Something went wrong": "เกิดข้อผิดพลาด",
3134
- "Try Again": "ลองอีกครั้ง",
3135
- "SDK not configured. Please provide an API key.": "SDK ยังไม่ได้ตั้งค่า กรุณาระบุ API key",
3136
- "Please upload a JPEG, PNG, or WebP image.": "กรุณาอัปโหลดรูปภาพ JPEG, PNG หรือ WebP",
3137
- "Image must be under 10MB.": "รูปภาพต้องมีขนาดไม่เกิน 10MB",
3138
- "Try-on generation failed": "การสร้างการลองเสื้อผ้าล้มเหลว",
3139
- "Failed to start try-on": "ไม่สามารถเริ่มการลองเสื้อผ้าได้",
3140
- "No product image found. Please set the product-image attribute.": "ไม่พบรูปสินค้า กรุณาตั้งค่า attribute product-image",
3141
- "Powered by": "ขับเคลื่อนโดย",
3142
- "My Profiles": "โปรไฟล์ของฉัน",
3143
- History: "ประวัติ",
3144
- "No saved profiles yet.": "ยังไม่มีโปรไฟล์ที่บันทึกไว้",
3145
- "No history yet.": "ยังไม่มีประวัติ",
3146
- Product: "สินค้า",
3147
- "Women's": "ผู้หญิง",
3148
- "Men's": "ผู้ชาย",
3149
- Profiles: "โปรไฟล์",
3150
- "Women's Profile": "โปรไฟล์ผู้หญิง",
3151
- "Men's Profile": "โปรไฟล์ผู้ชาย",
3152
- Height: "ส่วนสูง",
3153
- Weight: "น้ำหนัก",
3154
- Chest: "รอบอก",
3155
- Bust: "รอบอก",
3156
- Waist: "รอบเอว",
3157
- Hips: "รอบสะโพก",
3158
- Shoulders: "ไหล่",
3159
- Sleeve: "แขนเสื้อ",
3160
- Inseam: "ตะเข็บด้านใน",
3161
- Neck: "คอ",
3162
- Foot: "เท้า",
3163
- "Shoe EU": "รองเท้า EU",
3164
- "Shoe US": "รองเท้า US",
3165
- "Shoe UK": "รองเท้า UK",
3166
- Saved: "บันทึกแล้ว",
3167
- "Delete Profile": "ลบโปรไฟล์",
3168
- "Shoe size (US)": "ขนาดรองเท้า (US)",
3169
- "Shoe size (UK)": "ขนาดรองเท้า (UK)",
3170
- "Shoe size (EU)": "ขนาดรองเท้า (EU)",
3171
- "Generating...": "กำลังสร้าง...",
3172
- "Foot length": "ความยาวเท้า",
3173
- Size: "ไซส์",
3174
- "Try on size": "ลองไซส์",
3175
- "e.g.": "เช่น",
3176
- "Drop your photo here or click to upload": "วางรูปที่นี่หรือคลิกเพื่ออัปโหลด",
3177
- "This usually takes 15-20 seconds": "ปกติจะใช้เวลา 15-20 วินาที",
3178
- "Try-on result": "ผลการลองเสื้อผ้า",
3179
- "Try Another": "ลองอีกครั้ง",
3180
- Back: "กลับ",
3181
- You: "คุณ",
3182
- Garment: "เสื้อผ้า",
3183
- "Your Height": "ส่วนสูงของคุณ",
3184
- "Your Weight": "น้ำหนักของคุณ",
3185
- "Drag or scroll to set your height": "ลากหรือเลื่อนเพื่อตั้งค่าส่วนสูง",
3186
- "Drag or scroll to set your weight": "ลากหรือเลื่อนเพื่อตั้งค่าน้ำหนัก",
3187
- "Enter height and weight first": "กรอกส่วนสูงและน้ำหนักก่อน",
3188
- // ── Field labels ──
3189
- "Lens Width": "ความกว้างเลนส์",
3190
- Bridge: "สะพานจมูก",
3191
- "Arm Length": "ความยาวขาแว่น",
3192
- "Head Circumference": "เส้นรอบศีรษะ",
3193
- "Face Width": "ความกว้างใบหน้า",
3194
- Temple: "ขาแว่น",
3195
- "Around widest point": "รอบจุดที่กว้างที่สุด",
3196
- "Foot Length": "ความยาวเท้า",
3197
- Shoulder: "ไหล่",
3198
- Thigh: "ต้นขา",
3199
- Hip: "สะโพก",
3200
- // ── Units ──
3201
- Millimetre: "มิลลิเมตร",
3202
- Centimetre: "เซนติเมตร",
3203
- Millimeters: "มิลลิเมตร",
3204
- // ── Fit descriptors ──
3205
- Tight: "คับ",
3206
- Loose: "หลวม",
3207
- Short: "สั้น",
3208
- Long: "ยาว",
3209
- Perfect: "พอดี",
3210
- "Perfect fit": "พอดีตัว",
3211
- "✓ Fit": "✓ พอดี",
3212
- "too short": "สั้นเกินไป",
3213
- "too long": "ยาวเกินไป",
3214
- "a bit short": "สั้นไปเล็กน้อย",
3215
- "a bit long": "ยาวไปเล็กน้อย",
3216
- // ── Length pills ──
3217
- Length: "ความยาว",
3218
- "Length Adjustment": "ปรับความยาว",
3219
- Regular: "ปกติ",
3220
- Big: "ใหญ่",
3221
- "Big & Tall": "ใหญ่และสูง",
3222
- // ── Misc ──
3223
- preview: "ตัวอย่าง"
3224
- }, Z = {
3225
- "Virtual Try-On": "Thử Đồ Ảo",
3226
- "Find Your Size & See It On You": "Tìm cỡ của bạn và thử mặc",
3227
- "Get the perfect fit, then try it on virtually": "Tìm size phù hợp nhất rồi thử mặc ảo",
3228
- "Get Your Size": "Cỡ của bạn",
3229
- "Instant fit recommendation": "Gợi ý size ngay lập tức",
3230
- "Try It On": "Thử mặc",
3231
- "See how it looks on you": "Xem trông như thế nào trên bạn",
3232
- "Find My Size": "Tìm cỡ của tôi",
3233
- "Takes less than a minute": "Chưa đến một phút",
3234
- "Upload a full body photo": "Tải lên ảnh toàn thân",
3235
- "JPEG, PNG or WebP (max 10MB)": "JPEG, PNG hoặc WebP (tối đa 10MB)",
3236
- "Your photo": "Ảnh của bạn",
3237
- "Let's find your best fit": "Hãy tìm size phù hợp nhất",
3238
- Centimeters: "Xentimét",
3239
- Inches: "Inch",
3240
- "Load saved profile...": "Tải hồ sơ đã lưu...",
3241
- HEIGHT: "CHIỀU CAO",
3242
- WEIGHT: "CÂN NẶNG",
3243
- feet: "feet",
3244
- inches: "inch",
3245
- cm: "cm",
3246
- kg: "kg",
3247
- lbs: "pound",
3248
- in: "inch",
3249
- "How to measure": "Cách đo",
3250
- "Hide guide": "Ẩn hướng dẫn",
3251
- "I know my measurements": "Tôi biết số đo của mình",
3252
- "Not sure? Use height & weight instead": "Không chắc? Dùng chiều cao và cân nặng",
3253
- "Please fill in height and weight": "Vui lòng nhập chiều cao và cân nặng",
3254
- "Please fill in all required fields": "Vui lòng điền đầy đủ các trường bắt buộc",
3255
- Next: "Tiếp theo",
3256
- "Analyzing your size...": "Đang phân tích cỡ của bạn...",
3257
- "RECOMMENDED SIZE": "CỠ ĐƯỢC ĐỀ XUẤT",
3258
- "NOT RECOMMENDED": "KHÔNG ĐƯỢC ĐỀ XUẤT",
3259
- "Edit measurements": "Sửa số đo",
3260
- "Size guide": "Hướng dẫn cỡ",
3261
- "Your fit": "Độ vừa vặn",
3262
- "Your measure": "Số đo của bạn",
3263
- "perfect fit": "vừa vặn hoàn hảo",
3264
- "too tight": "quá chật",
3265
- tight: "chật",
3266
- "a bit tight": "hơi chật",
3267
- "too loose": "quá rộng",
3268
- loose: "rộng",
3269
- "a bit loose": "hơi rộng",
3270
- "See fit on your photo": "Xem độ vừa trên ảnh",
3271
- "Hide visual fit": "Ẩn hiển thị độ vừa",
3272
- "Analyzing...": "Đang phân tích...",
3273
- "Try it on": "Thử mặc",
3274
- "SIZE CHART": "BẢNG CỠ",
3275
- "YOUR ESTIMATED MEASUREMENTS": "SỐ ĐO ƯỚC TÍNH CỦA BẠN",
3276
- Edit: "Sửa",
3277
- Download: "Tải xuống",
3278
- "Size chart": "Bảng cỡ",
3279
- "Preparing your image...": "Đang chuẩn bị ảnh...",
3280
- "Analyzing body proportions...": "Đang phân tích tỉ lệ cơ thể...",
3281
- "Matching garment to your photo...": "Đang ghép trang phục vào ảnh...",
3282
- "Generating virtual try-on...": "Đang tạo thử đồ ảo...",
3283
- "Refining details...": "Đang tinh chỉnh chi tiết...",
3284
- "Almost there...": "Sắp xong...",
3285
- "Complete!": "Hoàn thành!",
3286
- "This usually takes 15-25 seconds": "Thường mất 15-25 giây",
3287
- "Something went wrong": "Đã xảy ra lỗi",
3288
- "Try Again": "Thử lại",
3289
- "SDK not configured. Please provide an API key.": "SDK chưa được cấu hình. Vui lòng cung cấp API key.",
3290
- "Please upload a JPEG, PNG, or WebP image.": "Vui lòng tải lên ảnh JPEG, PNG hoặc WebP.",
3291
- "Image must be under 10MB.": "Ảnh phải nhỏ hơn 10MB.",
3292
- "Try-on generation failed": "Tạo thử đồ thất bại",
3293
- "Failed to start try-on": "Không thể bắt đầu thử đồ",
3294
- "No product image found. Please set the product-image attribute.": "Không tìm thấy ảnh sản phẩm. Vui lòng đặt thuộc tính product-image.",
3295
- "Powered by": "Được hỗ trợ bởi",
3296
- "My Profiles": "Hồ sơ của tôi",
3297
- History: "Lịch sử",
3298
- "No saved profiles yet.": "Chưa có hồ sơ nào được lưu.",
3299
- "No history yet.": "Chưa có lịch sử.",
3300
- Product: "Sản phẩm",
3301
- "Women's": "Nữ",
3302
- "Men's": "Nam",
3303
- Profiles: "Hồ sơ",
3304
- "Women's Profile": "Hồ sơ Nữ",
3305
- "Men's Profile": "Hồ sơ Nam",
3306
- Height: "Chiều cao",
3307
- Weight: "Cân nặng",
3308
- Chest: "Ngực",
3309
- Bust: "Vòng ngực",
3310
- Waist: "Eo",
3311
- Hips: "Hông",
3312
- Shoulders: "Vai",
3313
- Sleeve: "Tay áo",
3314
- Inseam: "Đường may trong",
3315
- Neck: "Cổ",
3316
- Foot: "Bàn chân",
3317
- "Shoe EU": "Giày EU",
3318
- "Shoe US": "Giày US",
3319
- "Shoe UK": "Giày UK",
3320
- Saved: "Đã lưu",
3321
- "Delete Profile": "Xóa hồ sơ",
3322
- "Shoe size (US)": "Cỡ giày (US)",
3323
- "Shoe size (UK)": "Cỡ giày (UK)",
3324
- "Shoe size (EU)": "Cỡ giày (EU)",
3325
- "Generating...": "Đang tạo...",
3326
- "Foot length": "Chiều dài bàn chân",
3327
- Size: "Cỡ",
3328
- "Try on size": "Thử cỡ",
3329
- "e.g.": "VD:",
3330
- "Drop your photo here or click to upload": "Kéo thả ảnh vào đây hoặc nhấn để tải lên",
3331
- "This usually takes 15-20 seconds": "Thường mất 15-20 giây",
3332
- "Try-on result": "Kết quả thử đồ",
3333
- "Try Another": "Thử cái khác",
3334
- Back: "Quay lại",
3335
- You: "Bạn",
3336
- Garment: "Trang phục",
3337
- "Your Height": "Chiều Cao",
3338
- "Your Weight": "Cân Nặng",
3339
- "Drag or scroll to set your height": "Kéo hoặc cuộn để đặt chiều cao",
3340
- "Drag or scroll to set your weight": "Kéo hoặc cuộn để đặt cân nặng",
3341
- "Enter height and weight first": "Nhập chiều cao và cân nặng trước",
3342
- // ── Field labels ──
3343
- "Lens Width": "Chiều rộng tròng kính",
3344
- Bridge: "Cầu kính",
3345
- "Arm Length": "Chiều dài gọng",
3346
- "Head Circumference": "Chu vi đầu",
3347
- "Face Width": "Chiều rộng khuôn mặt",
3348
- Temple: "Gọng kính",
3349
- "Around widest point": "Quanh điểm rộng nhất",
3350
- "Foot Length": "Chiều dài bàn chân",
3351
- Shoulder: "Vai",
3352
- Thigh: "Đùi",
3353
- Hip: "Hông",
3354
- // ── Units ──
3355
- Millimetre: "Milimét",
3356
- Centimetre: "Centimét",
3357
- Millimeters: "Milimét",
3358
- // ── Fit descriptors ──
3359
- Tight: "Chật",
3360
- Loose: "Rộng",
3361
- Short: "Ngắn",
3362
- Long: "Dài",
3363
- Perfect: "Hoàn hảo",
3364
- "Perfect fit": "Vừa vặn hoàn hảo",
3365
- "✓ Fit": "✓ Vừa",
3366
- "too short": "quá ngắn",
3367
- "too long": "quá dài",
3368
- "a bit short": "hơi ngắn",
3369
- "a bit long": "hơi dài",
3370
- // ── Length pills ──
3371
- Length: "Chiều dài",
3372
- "Length Adjustment": "Điều chỉnh chiều dài",
3373
- Regular: "Thường",
3374
- Big: "Lớn",
3375
- "Big & Tall": "Lớn & Cao",
3376
- // ── Misc ──
3377
- preview: "xem trước"
3378
- }, x = {
3379
- ja: G,
3380
- ko: N,
3381
- zh: I,
3382
- es: D,
3383
- fr: U,
3384
- de: L,
3385
- it: H,
3386
- pt: C,
3387
- nl: B,
3388
- ru: W,
3389
- ar: R,
3390
- tr: F,
3391
- pl: O,
3392
- sv: Y,
3393
- da: K,
3394
- nb: j,
3395
- fi: V,
3396
- th: J,
3397
- vi: Z
3398
- };
3399
- for (const [o, e] of Object.entries(x))
3400
- w(o, e);
3401
- export {
3402
- q as A,
3403
- oe as L,
3404
- c as P,
3405
- _ as S,
3406
- ie as T,
3407
- M as a,
3408
- te as b,
3409
- Q as c,
3410
- X as d,
3411
- ee as e,
3412
- $ as i,
3413
- w as r
3414
- };
3415
- //# sourceMappingURL=index-Bp9ObJ3t.js.map