@primestyleai/tryon 5.10.123 → 5.10.125
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.
- package/dist/{index-YDYXhM8c.js → index-Bp9ObJ3t.js} +857 -100
- package/dist/index-Bp9ObJ3t.js.map +1 -0
- package/dist/primestyle-tryon.js +2 -2
- package/dist/react/index.js +3403 -3367
- package/dist/react/index.js.map +1 -1
- package/dist/storefront/primestyle-tryon.js +851 -108
- package/package.json +1 -1
- package/dist/index-YDYXhM8c.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
const
|
|
2
|
+
const f = "ps_session";
|
|
3
3
|
const P = "ps_mem_";
|
|
4
|
-
let
|
|
4
|
+
let y = null;
|
|
5
5
|
function S() {
|
|
6
6
|
try {
|
|
7
7
|
return typeof window < "u" && typeof window.localStorage < "u";
|
|
@@ -18,9 +18,9 @@ function E() {
|
|
|
18
18
|
return e;
|
|
19
19
|
}
|
|
20
20
|
function k() {
|
|
21
|
-
if (!S()) return
|
|
21
|
+
if (!S()) return y;
|
|
22
22
|
try {
|
|
23
|
-
const o = window.localStorage.getItem(
|
|
23
|
+
const o = window.localStorage.getItem(f);
|
|
24
24
|
if (!o) return null;
|
|
25
25
|
const e = JSON.parse(o);
|
|
26
26
|
return typeof e.id != "string" || typeof e.issuedAt != "number" ? null : {
|
|
@@ -32,29 +32,29 @@ function k() {
|
|
|
32
32
|
return null;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
function
|
|
36
|
-
if (
|
|
35
|
+
function p(o) {
|
|
36
|
+
if (y = o, !!S())
|
|
37
37
|
try {
|
|
38
|
-
window.localStorage.setItem(
|
|
38
|
+
window.localStorage.setItem(f, JSON.stringify(o));
|
|
39
39
|
} catch {
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
function T() {
|
|
43
43
|
const o = Date.now(), e = k();
|
|
44
44
|
if (e && o - e.lastSeenAt < 2592e6)
|
|
45
|
-
return o - e.lastSeenAt > 5 * 60 * 1e3 &&
|
|
45
|
+
return o - e.lastSeenAt > 5 * 60 * 1e3 && p({ ...e, lastSeenAt: o }), e.id;
|
|
46
46
|
const t = { id: E(), issuedAt: o, lastSeenAt: o };
|
|
47
|
-
return
|
|
47
|
+
return p(t), t.id;
|
|
48
48
|
}
|
|
49
49
|
function b() {
|
|
50
50
|
if (typeof navigator > "u") return null;
|
|
51
51
|
const o = (navigator.userAgent || "").toLowerCase();
|
|
52
52
|
return /ipad|tablet|(android(?!.*mobile))/.test(o) ? "tablet" : /mobile|android|iphone|ipod|blackberry|iemobile|opera mini/.test(o) ? "mobile" : "desktop";
|
|
53
53
|
}
|
|
54
|
-
const
|
|
54
|
+
const A = "http://localhost:4000";
|
|
55
55
|
class q {
|
|
56
56
|
constructor(e, t) {
|
|
57
|
-
this.apiKey = e, this.baseUrl = (t ||
|
|
57
|
+
this.apiKey = e, this.baseUrl = (t || A).replace(/\/+$/, "");
|
|
58
58
|
}
|
|
59
59
|
get headers() {
|
|
60
60
|
return {
|
|
@@ -63,7 +63,7 @@ class q {
|
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
65
|
async submitTryOn(e, t, r, s, i) {
|
|
66
|
-
const
|
|
66
|
+
const a = {
|
|
67
67
|
garmentImage: t,
|
|
68
68
|
// Attribution fields — backend logs these into the TryOnEvent collection
|
|
69
69
|
// so non-technical operators can answer "which products are being tried on
|
|
@@ -71,41 +71,41 @@ class q {
|
|
|
71
71
|
sessionId: T(),
|
|
72
72
|
deviceHint: b()
|
|
73
73
|
};
|
|
74
|
-
if (i?.modelImageId && (
|
|
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
75
|
modelImageBytes: e.length,
|
|
76
76
|
garmentImageBytes: t.length,
|
|
77
77
|
category: s || "apparel",
|
|
78
|
-
fitInfo: r?.map((
|
|
79
|
-
area:
|
|
80
|
-
fit:
|
|
81
|
-
userValue:
|
|
82
|
-
garmentRange:
|
|
78
|
+
fitInfo: r?.map((n) => ({
|
|
79
|
+
area: n.area,
|
|
80
|
+
fit: n.fit,
|
|
81
|
+
userValue: n.userValue,
|
|
82
|
+
garmentRange: n.garmentRange
|
|
83
83
|
})) || null,
|
|
84
84
|
silhouetteContext: i?.silhouetteContext || null
|
|
85
85
|
}), r && r.length > 0) {
|
|
86
86
|
console.log("[ps-sdk:api] Body vs Garment (what Gemini will see):");
|
|
87
|
-
for (const
|
|
88
|
-
const l = (
|
|
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
89
|
let u = "";
|
|
90
|
-
if (l.length &&
|
|
91
|
-
const
|
|
92
|
-
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
93
|
}
|
|
94
|
-
console.log(`[ps-sdk:api] ${
|
|
94
|
+
console.log(`[ps-sdk:api] ${n.area.padEnd(10)} body=${n.userValue ?? "?"} garment=${n.garmentRange ?? "?"} → ${u}`);
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
const d = await fetch(`${this.baseUrl}/api/v1/tryon`, {
|
|
98
98
|
method: "POST",
|
|
99
99
|
headers: this.headers,
|
|
100
|
-
body: JSON.stringify(
|
|
100
|
+
body: JSON.stringify(a)
|
|
101
101
|
});
|
|
102
102
|
if (!d.ok) {
|
|
103
|
-
const
|
|
104
|
-
throw d.status === 402 ? new
|
|
105
|
-
|
|
103
|
+
const n = await d.json().catch(() => ({}));
|
|
104
|
+
throw d.status === 402 ? new c(
|
|
105
|
+
n.message || "Insufficient try-ons",
|
|
106
106
|
"INSUFFICIENT_BALANCE"
|
|
107
|
-
) : new
|
|
108
|
-
|
|
107
|
+
) : new c(
|
|
108
|
+
n.message || "Failed to submit try-on",
|
|
109
109
|
"API_ERROR"
|
|
110
110
|
);
|
|
111
111
|
}
|
|
@@ -117,7 +117,7 @@ class q {
|
|
|
117
117
|
});
|
|
118
118
|
if (!t.ok) {
|
|
119
119
|
const r = await t.json().catch(() => ({}));
|
|
120
|
-
throw new
|
|
120
|
+
throw new c(
|
|
121
121
|
r.message || "Failed to get status",
|
|
122
122
|
"API_ERROR"
|
|
123
123
|
);
|
|
@@ -128,7 +128,7 @@ class q {
|
|
|
128
128
|
return `${this.baseUrl}/api/v1/tryon/stream?key=${encodeURIComponent(this.apiKey)}`;
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
|
-
class
|
|
131
|
+
class c extends Error {
|
|
132
132
|
constructor(e, t) {
|
|
133
133
|
super(e), this.name = "PrimeStyleError", this.code = t;
|
|
134
134
|
}
|
|
@@ -171,31 +171,31 @@ class _ {
|
|
|
171
171
|
this.reconnectTimer && (clearTimeout(this.reconnectTimer), this.reconnectTimer = null), this.eventSource && (this.eventSource.close(), this.eventSource = null), this.listeners.clear(), this.reconnectAttempts = 0;
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
|
-
const
|
|
174
|
+
const v = 512, z = 0.65;
|
|
175
175
|
function M(o, e = {}) {
|
|
176
|
-
const t = e.maxDimension ??
|
|
176
|
+
const t = e.maxDimension ?? v, r = e.quality ?? z;
|
|
177
177
|
return new Promise((s, i) => {
|
|
178
|
-
const
|
|
179
|
-
|
|
178
|
+
const a = new FileReader();
|
|
179
|
+
a.onload = () => {
|
|
180
180
|
const d = new Image();
|
|
181
181
|
d.onload = () => {
|
|
182
182
|
try {
|
|
183
|
-
const
|
|
183
|
+
const n = document.createElement("canvas");
|
|
184
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)),
|
|
186
|
-
const
|
|
187
|
-
if (!
|
|
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
188
|
i(new Error("Canvas context not available"));
|
|
189
189
|
return;
|
|
190
190
|
}
|
|
191
|
-
|
|
192
|
-
const
|
|
193
|
-
s(
|
|
194
|
-
} catch (
|
|
195
|
-
i(
|
|
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
196
|
}
|
|
197
|
-
}, d.onerror = () => i(new Error("Failed to load image")), d.src =
|
|
198
|
-
},
|
|
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
199
|
});
|
|
200
200
|
}
|
|
201
201
|
function $(o) {
|
|
@@ -225,7 +225,7 @@ async function X(o, e, t) {
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
const m = {};
|
|
228
|
-
function
|
|
228
|
+
function w(o, e) {
|
|
229
229
|
m[o] = { ...m[o] || {}, ...e };
|
|
230
230
|
}
|
|
231
231
|
function Q(o) {
|
|
@@ -394,8 +394,62 @@ const te = [
|
|
|
394
394
|
"Your Weight",
|
|
395
395
|
"Drag or scroll to set your height",
|
|
396
396
|
"Drag or scroll to set your weight",
|
|
397
|
-
"Enter height and weight first"
|
|
398
|
-
|
|
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 = {
|
|
399
453
|
"Virtual Try-On": "バーチャル試着",
|
|
400
454
|
"Find Your Size & See It On You": "あなたのサイズを見つけて試着",
|
|
401
455
|
"Get the perfect fit, then try it on virtually": "最適なフィットを見つけて、バーチャルで試着しましょう",
|
|
@@ -511,8 +565,45 @@ const te = [
|
|
|
511
565
|
"Your Height": "身長",
|
|
512
566
|
"Your Weight": "体重",
|
|
513
567
|
"Drag or scroll to set your height": "ドラッグまたはスクロールで身長を設定",
|
|
514
|
-
"Drag or scroll to set your weight": "ドラッグまたはスクロールで体重を設定"
|
|
515
|
-
|
|
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 = {
|
|
516
607
|
"Virtual Try-On": "가상 피팅",
|
|
517
608
|
"Find Your Size & See It On You": "사이즈를 찾고 입어보세요",
|
|
518
609
|
"Get the perfect fit, then try it on virtually": "완벽한 핏을 찾고 가상으로 입어보세요",
|
|
@@ -628,8 +719,45 @@ const te = [
|
|
|
628
719
|
"Your Height": "키",
|
|
629
720
|
"Your Weight": "체중",
|
|
630
721
|
"Drag or scroll to set your height": "드래그 또는 스크롤하여 키를 설정하세요",
|
|
631
|
-
"Drag or scroll to set your weight": "드래그 또는 스크롤하여 체중을 설정하세요"
|
|
632
|
-
|
|
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 = {
|
|
633
761
|
"Virtual Try-On": "虚拟试穿",
|
|
634
762
|
"Find Your Size & See It On You": "找到你的尺码并试穿",
|
|
635
763
|
"Get the perfect fit, then try it on virtually": "找到最佳合身度,然后虚拟试穿",
|
|
@@ -745,8 +873,45 @@ const te = [
|
|
|
745
873
|
"Your Height": "你的身高",
|
|
746
874
|
"Your Weight": "你的体重",
|
|
747
875
|
"Drag or scroll to set your height": "拖动或滚动设置身高",
|
|
748
|
-
"Drag or scroll to set your weight": "拖动或滚动设置体重"
|
|
749
|
-
|
|
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 = {
|
|
750
915
|
"Virtual Try-On": "Probador Virtual",
|
|
751
916
|
"Find Your Size & See It On You": "Encuentra tu talla y pruébatelo",
|
|
752
917
|
"Get the perfect fit, then try it on virtually": "Encuentra el ajuste perfecto y pruébatelo virtualmente",
|
|
@@ -862,8 +1027,45 @@ const te = [
|
|
|
862
1027
|
"Your Height": "Tu Altura",
|
|
863
1028
|
"Your Weight": "Tu Peso",
|
|
864
1029
|
"Drag or scroll to set your height": "Arrastra o desplaza para establecer tu altura",
|
|
865
|
-
"Drag or scroll to set your weight": "Arrastra o desplaza para establecer tu peso"
|
|
866
|
-
|
|
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 = {
|
|
867
1069
|
"Virtual Try-On": "Essayage Virtuel",
|
|
868
1070
|
"Find Your Size & See It On You": "Trouvez votre taille et essayez-le",
|
|
869
1071
|
"Get the perfect fit, then try it on virtually": "Trouvez la coupe parfaite, puis essayez-le virtuellement",
|
|
@@ -979,8 +1181,45 @@ const te = [
|
|
|
979
1181
|
"Your Height": "Votre Taille",
|
|
980
1182
|
"Your Weight": "Votre Poids",
|
|
981
1183
|
"Drag or scroll to set your height": "Glissez ou faites défiler pour définir votre taille",
|
|
982
|
-
"Drag or scroll to set your weight": "Glissez ou faites défiler pour définir votre poids"
|
|
983
|
-
|
|
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 = {
|
|
984
1223
|
"Virtual Try-On": "Virtuelle Anprobe",
|
|
985
1224
|
"Find Your Size & See It On You": "Finden Sie Ihre Größe und probieren Sie es an",
|
|
986
1225
|
"Get the perfect fit, then try it on virtually": "Finden Sie die perfekte Passform und probieren Sie es virtuell an",
|
|
@@ -1096,8 +1335,45 @@ const te = [
|
|
|
1096
1335
|
"Your Height": "Deine Größe",
|
|
1097
1336
|
"Your Weight": "Dein Gewicht",
|
|
1098
1337
|
"Drag or scroll to set your height": "Ziehen oder scrollen Sie, um Ihre Größe einzustellen",
|
|
1099
|
-
"Drag or scroll to set your weight": "Ziehen oder scrollen Sie, um Ihr Gewicht einzustellen"
|
|
1100
|
-
|
|
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 = {
|
|
1101
1377
|
"Virtual Try-On": "Prova Virtuale",
|
|
1102
1378
|
"Find Your Size & See It On You": "Trova la tua taglia e provalo",
|
|
1103
1379
|
"Get the perfect fit, then try it on virtually": "Trova la vestibilità perfetta, poi provalo virtualmente",
|
|
@@ -1213,8 +1489,45 @@ const te = [
|
|
|
1213
1489
|
"Your Height": "La Tua Altezza",
|
|
1214
1490
|
"Your Weight": "Il Tuo Peso",
|
|
1215
1491
|
"Drag or scroll to set your height": "Trascina o scorri per impostare la tua altezza",
|
|
1216
|
-
"Drag or scroll to set your weight": "Trascina o scorri per impostare il tuo peso"
|
|
1217
|
-
|
|
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 = {
|
|
1218
1531
|
"Virtual Try-On": "Provador Virtual",
|
|
1219
1532
|
"Find Your Size & See It On You": "Encontre seu tamanho e experimente",
|
|
1220
1533
|
"Get the perfect fit, then try it on virtually": "Encontre o caimento perfeito e experimente virtualmente",
|
|
@@ -1330,8 +1643,45 @@ const te = [
|
|
|
1330
1643
|
"Your Height": "Sua Altura",
|
|
1331
1644
|
"Your Weight": "Seu Peso",
|
|
1332
1645
|
"Drag or scroll to set your height": "Arraste ou role para definir sua altura",
|
|
1333
|
-
"Drag or scroll to set your weight": "Arraste ou role para definir seu peso"
|
|
1334
|
-
|
|
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 = {
|
|
1335
1685
|
"Virtual Try-On": "Virtueel Passen",
|
|
1336
1686
|
"Find Your Size & See It On You": "Vind je maat en pas het",
|
|
1337
1687
|
"Get the perfect fit, then try it on virtually": "Vind de perfecte pasvorm en pas het virtueel",
|
|
@@ -1447,7 +1797,44 @@ const te = [
|
|
|
1447
1797
|
"Your Height": "Je Lengte",
|
|
1448
1798
|
"Your Weight": "Je Gewicht",
|
|
1449
1799
|
"Drag or scroll to set your height": "Sleep of scroll om je lengte in te stellen",
|
|
1450
|
-
"Drag or scroll to set your weight": "Sleep of scroll om je gewicht 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"
|
|
1451
1838
|
}, W = {
|
|
1452
1839
|
"Virtual Try-On": "Виртуальная примерка",
|
|
1453
1840
|
"Find Your Size & See It On You": "Найдите свой размер и примерьте",
|
|
@@ -1564,8 +1951,45 @@ const te = [
|
|
|
1564
1951
|
"Your Height": "Ваш Рост",
|
|
1565
1952
|
"Your Weight": "Ваш Вес",
|
|
1566
1953
|
"Drag or scroll to set your height": "Перетащите или прокрутите для установки роста",
|
|
1567
|
-
"Drag or scroll to set your weight": "Перетащите или прокрутите для установки веса"
|
|
1568
|
-
|
|
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 = {
|
|
1569
1993
|
"Virtual Try-On": "تجربة افتراضية",
|
|
1570
1994
|
"Find Your Size & See It On You": "اعثر على مقاسك وجرّبه",
|
|
1571
1995
|
"Get the perfect fit, then try it on virtually": "اعثر على المقاس المثالي ثم جرّبه افتراضياً",
|
|
@@ -1681,8 +2105,45 @@ const te = [
|
|
|
1681
2105
|
"Your Height": "طولك",
|
|
1682
2106
|
"Your Weight": "وزنك",
|
|
1683
2107
|
"Drag or scroll to set your height": "اسحب أو مرر لتعيين طولك",
|
|
1684
|
-
"Drag or scroll to set your weight": "اسحب أو مرر لتعيين وزنك"
|
|
1685
|
-
|
|
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 = {
|
|
1686
2147
|
"Virtual Try-On": "Sanal Deneme",
|
|
1687
2148
|
"Find Your Size & See It On You": "Bedenini bul ve üzerinde gör",
|
|
1688
2149
|
"Get the perfect fit, then try it on virtually": "Mükemmel kalıbı bul, sonra sanal olarak dene",
|
|
@@ -1798,8 +2259,45 @@ const te = [
|
|
|
1798
2259
|
"Your Height": "Boyun",
|
|
1799
2260
|
"Your Weight": "Kilon",
|
|
1800
2261
|
"Drag or scroll to set your height": "Boyunuzu ayarlamak için sürükleyin veya kaydırın",
|
|
1801
|
-
"Drag or scroll to set your weight": "Kilonuzu ayarlamak için sürükleyin veya kaydırın"
|
|
1802
|
-
|
|
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 = {
|
|
1803
2301
|
"Virtual Try-On": "Wirtualna Przymierzalnia",
|
|
1804
2302
|
"Find Your Size & See It On You": "Znajdź swój rozmiar i przymierz",
|
|
1805
2303
|
"Get the perfect fit, then try it on virtually": "Znajdź idealny krój i przymierz wirtualnie",
|
|
@@ -1915,8 +2413,45 @@ const te = [
|
|
|
1915
2413
|
"Your Height": "Twój Wzrost",
|
|
1916
2414
|
"Your Weight": "Twoja Waga",
|
|
1917
2415
|
"Drag or scroll to set your height": "Przeciągnij lub przewiń, aby ustawić wzrost",
|
|
1918
|
-
"Drag or scroll to set your weight": "Przeciągnij lub przewiń, aby ustawić wagę"
|
|
1919
|
-
|
|
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 = {
|
|
1920
2455
|
"Virtual Try-On": "Virtuell Provning",
|
|
1921
2456
|
"Find Your Size & See It On You": "Hitta din storlek och prova",
|
|
1922
2457
|
"Get the perfect fit, then try it on virtually": "Hitta den perfekta passformen och prova virtuellt",
|
|
@@ -2032,8 +2567,45 @@ const te = [
|
|
|
2032
2567
|
"Your Height": "Din Längd",
|
|
2033
2568
|
"Your Weight": "Din Vikt",
|
|
2034
2569
|
"Drag or scroll to set your height": "Dra eller scrolla för att ställa in din längd",
|
|
2035
|
-
"Drag or scroll to set your weight": "Dra eller scrolla för att ställa in din vikt"
|
|
2036
|
-
|
|
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 = {
|
|
2037
2609
|
"Virtual Try-On": "Virtuel Prøvning",
|
|
2038
2610
|
"Find Your Size & See It On You": "Find din størrelse og prøv det",
|
|
2039
2611
|
"Get the perfect fit, then try it on virtually": "Find den perfekte pasform og prøv det virtuelt",
|
|
@@ -2149,7 +2721,44 @@ const te = [
|
|
|
2149
2721
|
"Your Height": "Din Højde",
|
|
2150
2722
|
"Your Weight": "Din Vægt",
|
|
2151
2723
|
"Drag or scroll to set your height": "Træk eller scroll for at indstille din højde",
|
|
2152
|
-
"Drag or scroll to set your weight": "Træk eller scroll for at indstille din vægt"
|
|
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"
|
|
2153
2762
|
}, j = {
|
|
2154
2763
|
"Virtual Try-On": "Virtuell Prøving",
|
|
2155
2764
|
"Find Your Size & See It On You": "Finn størrelsen din og prøv det",
|
|
@@ -2266,7 +2875,44 @@ const te = [
|
|
|
2266
2875
|
"Your Height": "Din Høyde",
|
|
2267
2876
|
"Your Weight": "Din Vekt",
|
|
2268
2877
|
"Drag or scroll to set your height": "Dra eller scroll for å angi høyden din",
|
|
2269
|
-
"Drag or scroll to set your weight": "Dra eller scroll for å angi vekten 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"
|
|
2270
2916
|
}, V = {
|
|
2271
2917
|
"Virtual Try-On": "Virtuaalinen Sovitus",
|
|
2272
2918
|
"Find Your Size & See It On You": "Löydä kokosi ja sovita",
|
|
@@ -2383,7 +3029,44 @@ const te = [
|
|
|
2383
3029
|
"Your Height": "Pituutesi",
|
|
2384
3030
|
"Your Weight": "Painosi",
|
|
2385
3031
|
"Drag or scroll to set your height": "Vedä tai vieritä asettaaksesi pituutesi",
|
|
2386
|
-
"Drag or scroll to set your weight": "Vedä tai vieritä asettaaksesi painosi"
|
|
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"
|
|
2387
3070
|
}, J = {
|
|
2388
3071
|
"Virtual Try-On": "ลองเสื้อผ้าเสมือนจริง",
|
|
2389
3072
|
"Find Your Size & See It On You": "ค้นหาไซส์ของคุณและลองสวมใส่",
|
|
@@ -2500,7 +3183,44 @@ const te = [
|
|
|
2500
3183
|
"Your Height": "ส่วนสูงของคุณ",
|
|
2501
3184
|
"Your Weight": "น้ำหนักของคุณ",
|
|
2502
3185
|
"Drag or scroll to set your height": "ลากหรือเลื่อนเพื่อตั้งค่าส่วนสูง",
|
|
2503
|
-
"Drag or scroll to set your weight": "ลากหรือเลื่อนเพื่อตั้งค่าน้ำหนัก"
|
|
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: "ตัวอย่าง"
|
|
2504
3224
|
}, Z = {
|
|
2505
3225
|
"Virtual Try-On": "Thử Đồ Ảo",
|
|
2506
3226
|
"Find Your Size & See It On You": "Tìm cỡ của bạn và thử mặc",
|
|
@@ -2617,34 +3337,71 @@ const te = [
|
|
|
2617
3337
|
"Your Height": "Chiều Cao",
|
|
2618
3338
|
"Your Weight": "Cân Nặng",
|
|
2619
3339
|
"Drag or scroll to set your height": "Kéo hoặc cuộn để đặt chiều cao",
|
|
2620
|
-
"Drag or scroll to set your weight": "Kéo hoặc cuộn để đặt cân nặng"
|
|
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"
|
|
2621
3378
|
}, x = {
|
|
2622
|
-
ja:
|
|
2623
|
-
ko:
|
|
2624
|
-
zh:
|
|
2625
|
-
es:
|
|
2626
|
-
fr:
|
|
2627
|
-
de:
|
|
2628
|
-
it:
|
|
2629
|
-
pt:
|
|
2630
|
-
nl:
|
|
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,
|
|
2631
3388
|
ru: W,
|
|
2632
|
-
ar:
|
|
2633
|
-
tr:
|
|
2634
|
-
pl:
|
|
2635
|
-
sv:
|
|
2636
|
-
da:
|
|
3389
|
+
ar: R,
|
|
3390
|
+
tr: F,
|
|
3391
|
+
pl: O,
|
|
3392
|
+
sv: Y,
|
|
3393
|
+
da: K,
|
|
2637
3394
|
nb: j,
|
|
2638
3395
|
fi: V,
|
|
2639
3396
|
th: J,
|
|
2640
3397
|
vi: Z
|
|
2641
3398
|
};
|
|
2642
3399
|
for (const [o, e] of Object.entries(x))
|
|
2643
|
-
|
|
3400
|
+
w(o, e);
|
|
2644
3401
|
export {
|
|
2645
3402
|
q as A,
|
|
2646
3403
|
oe as L,
|
|
2647
|
-
|
|
3404
|
+
c as P,
|
|
2648
3405
|
_ as S,
|
|
2649
3406
|
ie as T,
|
|
2650
3407
|
M as a,
|
|
@@ -2653,6 +3410,6 @@ export {
|
|
|
2653
3410
|
X as d,
|
|
2654
3411
|
ee as e,
|
|
2655
3412
|
$ as i,
|
|
2656
|
-
|
|
3413
|
+
w as r
|
|
2657
3414
|
};
|
|
2658
|
-
//# sourceMappingURL=index-
|
|
3415
|
+
//# sourceMappingURL=index-Bp9ObJ3t.js.map
|